/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", 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: #204E2D; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0B3D91; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0A6EBD; /* 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. */
  --white: #ffffff; /* Explicit white — used by sol-card, timeline active icons, etc. */
}

/* 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: var(--accent-color); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* Center Alignment - All pages from home to contact (desktop and mobile) */
.section-title,
.section-title h2,
.section-title p,
.section-header,
.section-header h2,
.section-header p,
.container .section-title,
.container .section-title h2,
.container .section-title p {
  text-align: center !important;
}

/* Hero sections */
.page-hero-inner,
.page-hero-tag,
.page-hero-title,
.page-hero-lead,
.page-hero-accent {
  text-align: center !important;
}

/* All headings centered */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  text-align: center !important;
}

/* All paragraphs */
p, .lead {
  text-align: center !important;
}

/* All card content */
.card,
.card-body,
.value-card,
.service-item,
.service-body,
.project-card,
.project-card-new,
.founder-card,
.founder-info,
.stats-card,
.industry-card,
.job-card,
.why-card,
.process-card {
  text-align: center !important;
}

/* All list content */
ul, ol {
  text-align: center !important;
  padding-left: 0;
  list-style-position: inside;
}

/* Column alignment */
.col-12, .col-sm-12, .col-md-6, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12 {
  text-align: center !important;
}

/* Row alignment */
.row {
  text-align: center !important;
}

/* Images centered */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons centered */
.btn, .btn-primary, .btn-secondary, .btn-outline-primary {
  display: inline-block;
  margin: 0 auto;
}

/* Badges and tags centered */
.badge, .footer-tag {
  display: inline-block;
  text-align: center;
}

/* Case Studies badges - center text */
.case-studies-section .badge,
.case-studies-section .d-flex.flex-wrap.gap-2 {
  text-align: center !important;
  justify-content: center;
}

/* Why Artemis Section badges - center text */
.why-artemis-section .badge,
.why-artemis-section .d-flex.flex-wrap.gap-2,
.why-artemis-section [style*="d-flex flex-wrap gap-2"] {
  text-align: center !important;
  justify-content: center;
}

.why-artemis-section .card-body .d-flex.flex-wrap.gap-2 span,
.why-artemis-section .card-body span[style*="border-radius: 20px"] {
  text-align: center !important;
  display: inline-block;
}

/* Overview Section - center badges */
.overview-section .badge,
.overview-section .d-flex.flex-wrap.gap-2 {
  text-align: center !important;
  justify-content: center;
}

/* Protocols Section - center all content */
.protocols-section .col-lg-4,
.protocols-section .col-md-6,
.protocols-section .col-lg-4 > div,
.protocols-section .bi,
.protocols-section [style*="display: flex"] {
  text-align: center !important;
}

.protocols-section .row g-4 {
  text-align: center;
}

.protocols-section [style*="display: flex; align-items: center"] {
  justify-content: center !important;
}

.protocols-section [style*="display: flex; align-items: center; gap"] {
  flex-direction: column;
}

/* Case Studies Section badges - center text */
.case-studies-section .badge,
.case-studies-section .d-flex.flex-wrap.gap-2 {
  text-align: center !important;
  justify-content: center;
}

/* Table content */
table {
  text-align: center !important;
}
table th, table td {
  text-align: center !important;
}

/* Form elements */
.form-group,
.form-control {
  text-align: center !important;
}

/* Footer content */
.footer-brand-col,
.footer-links-col,
.footer-info-list,
.footer-link-list,
.footer-social {
  text-align: center !important;
}

/* Navbar */
.navmenu {
  text-align: center !important;
}

/* Breadcrumb */
.breadcrumb {
  justify-content: center !important;
}

/* Details labels - What we do, Typical Duration, Deliverable/Outcome */
.details-label {
  text-align: center !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  --nav-color: #0B2E6F;
  --nav-hover-color: #5A9620;
  color: #0B2E6F;
  background-color: var(--background-color);
  padding: 14px 0;
  transition: all 0.4s ease;
  z-index: 997;
  border-bottom: 3px solid #5A9620;
  box-shadow: 0 2px 16px rgba(11,46,111,0.10);
}

body.index-page .header {
  --background-color: #ffffff;
  --nav-color: #0B2E6F;
  color: #0B2E6F;
}

body.index-page.scrolled .header {
  --background-color: #ffffff;
  --nav-color: #0B2E6F;
  color: #0B2E6F;
  box-shadow: 0 2px 24px rgba(11,46,111,0.13);
  border-bottom: 3px solid #5A9620;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 46px;
  margin-right: 0;
}

.header .logo h1 {
  display: none;
  font-size: 26px;
  margin: 0;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}
/* 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);
    color: var(--contrast-color);
  }

  .navmenu li:hover>a,
  .navmenu .active a,
  .navmenu .active:focus a {
    color: var(--contrast-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;
  }

  .btn-quote {
    background-color: #5A9620;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #5A9620;
    white-space: nowrap;
  }

  .btn-quote:hover {
    background-color: #4a7d1a;
    border-color: #4a7d1a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(90,150,32,0.4);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-left: 8px;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.3s;
    flex-shrink: 0;
  }

  .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;
  }

  /* Request a Quote inside mobile menu */
  .mobile-quote-item {
    margin: 8px 15px 5px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    padding-top: 4px;
  }

  .mobile-quote-link {
    background: linear-gradient(135deg, #5A9620, #4a7d1a) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px 0;
    box-shadow: 0 3px 12px rgba(90, 150, 32, 0.3);
  }

  .mobile-quote-link:hover {
    background: linear-gradient(135deg, #4a7d1a, #3d6815) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(90, 150, 32, 0.4);
  }

  /* Mobile nav toggle at right edge */
  .mobile-nav-toggle {
    order: 1;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

/* ============================================================
   NEW FOOTER — Creative redesign (single image logo, no text dup)
   ============================================================ */

/* Override dark-background base */
.footer.dark-background {
  --background-color: #0B1629;
  background: #0B1629 !important;
  border-top: 4px solid #5A9620;
  padding: 0;
}

/* Main content area */
.footer-main {
  padding: 56px 0 40px;
}

/* Brand column */
.footer-brand {
  text-decoration: none;
  display: inline-block;
}

.footer-logo {
  max-height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  margin: 12px 0 0;
  max-width: 310px;
  font-style: normal;
  padding: 0;
}

/* Contact info list */
.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  font-style: normal;
  line-height: 1.5;
}

.footer-info-list li i {
  color: #5A9620;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-info-list li a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-info-list li a:hover {
  color: #5A9620;
}

.footer-info-list .cin-item {
  margin-top: 4px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
}

/* Social icons */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(90,150,32,0.12);
  border: 1px solid rgba(90,150,32,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #5A9620;
  border-color: #5A9620;
  color: #fff;
  transform: translateY(-2px);
}

/* Brand column left alignment */
.footer-brand-col,
.footer-brand-col .footer-brand,
.footer-brand-col .footer-desc,
.footer-brand-col .footer-info-list,
.footer-brand-col .footer-info-list li,
.footer-brand-col .footer-social {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.footer-brand-col .footer-info-list li {
  justify-content: flex-start !important;
}

/* Link columns */
.footer-links-col {
  padding-top: 0;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5A9620;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(90,150,32,0.25);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  padding: 3px 0;
}

.footer-link-list li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
  display: block;
  font-style: normal;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-link-list li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Industry tag pills */
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.footer-tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.footer-tag:hover {
  background: rgba(90,150,32,0.2);
  border-color: rgba(90,150,32,0.5);
  color: #fff;
  transform: translateY(-1px);
}

/* CTA button */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #5A9620, #4a7d1a);
  color: #fff;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(90,150,32,0.3);
}

.footer-cta-btn:hover {
  background: linear-gradient(135deg, #4a7d1a, #3d6815);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(90,150,32,0.4);
}

/* Bottom bar */
.footer-bar {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.28);
}

.footer-bar p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  margin: 0;
  font-style: normal;
}

.footer-bar p strong {
  color: rgba(255,255,255,0.58);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-legal span {
  color: rgba(255,255,255,0.2);
  margin: 0 8px;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-main {
    padding: 44px 0 28px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bar .container {
    text-align: center;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-tags {
    gap: 6px;
  }

  .footer-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 575px) {
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Legacy support */
.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: 30px 0;
  scroll-margin-top: 140px;
  overflow: clip;
}

/* Section divider lines for visual separation */
section + section,
.section + .section {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

/* Alternating section backgrounds */
.about.section,
.features.section,
.why-choose-us.section {
  background-color: #f8fafc;
}

.solutions,
.services.section,
.testimonials.section,
.contact.section {
  background-color: #ffffff;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 12px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Page Header Section
--------------------------------------------------------------*/
.page-header {
  background-image: linear-gradient(180deg, rgba(6,45,146,0.6), rgba(41,155,72,0.45)), url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 350px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 20px;
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.page-header .breadcrumb-item {
  color: var(--contrast-color);
  font-size: 14px;
}

.page-header .breadcrumb-item.active {
  color: var(--contrast-color);
}

.page-header .breadcrumb-item a {
  color: var(--contrast-color);
  text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: #011a3c;
  padding: 0;
}

#hero-carousel {
  width: 100%;
  height: 100vh;
}

#hero-carousel .carousel-inner {
  width: 100%;
  height: 100vh;
}

#hero-carousel .carousel-item {
  width: 100% !important;
  height: 100vh !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

#hero-carousel .carousel-item.active {
  z-index: 10;
}

/* Slides 2,3,4 have bright images - need text shadow for readability */
#hero-carousel .carousel-item:nth-child(2) .carousel-container h2,
#hero-carousel .carousel-item:nth-child(2) .carousel-container p,
#hero-carousel .carousel-item:nth-child(3) .carousel-container h2,
#hero-carousel .carousel-item:nth-child(3) .carousel-container p,
#hero-carousel .carousel-item:nth-child(4) .carousel-container h2,
#hero-carousel .carousel-item:nth-child(4) .carousel-container p {
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero .carousel-item.active {
  position: relative;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--contrast-color);
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--contrast-color);
}

#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
  width: 10%;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 0;
  position: absolute;
  padding: 0;
  border: none;
  background: transparent;
}

#hero-carousel .carousel-control-prev {
  left: 0;
}

#hero-carousel .carousel-control-next {
  right: 0;
}

#hero-carousel .carousel-control-next-icon,
#hero-carousel .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  opacity: 1;
  visibility: visible;
  display: block;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@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: 26px;
    margin-bottom: 8px;
  }

  .hero .carousel-container h2:first-of-type {
    margin-bottom: 4px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
  opacity: 0.5;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
  opacity: 0.3;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
  opacity: 1;
}

@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: 28px 28px 28px 28px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.services .service-item .icon {
  position: static;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, currentColor, transparent 90%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.services .service-item .icon i {
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item .service-body {
  flex: 1;
  min-width: 0;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 0 0 10px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-item .learn-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services .service-item:hover .learn-more {
  gap: 10px;
}

.services .service-item:hover .learn-more i {
  transform: translateX(4px);
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.14);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }

  .services .service-item:hover .icon {
    transform: scale(1.08);
  }
}

@media (max-width: 767px) {
  .services .service-item {
    padding: 22px;
    gap: 16px;
  }

  .services .service-item .icon {
    width: 52px;
    height: 52px;
  }

  .services .service-item .icon i {
    font-size: 28px;
  }

  .services .service-item h3 {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .testimonial-item.testimonial-text-only {
  text-align: center;
  max-width: 800px;
  margin: 30px auto;
}

.testimonials .testimonial-item.testimonial-text-only h3 {
  text-align: center;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.testimonials .testimonial-item.testimonial-text-only p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin: 20px auto;
}

.testimonials .testimonial-attribution {
  font-style: normal;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-top: 20px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  background: linear-gradient(135deg, rgba(10, 110, 189, 0.05) 0%, rgba(124, 157, 51, 0.05) 100%);
  padding: 60px 0;
}

.why-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--heading-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-left-color: var(--accent-color);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.why-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-content h3 {
  color: var(--accent-color);
}

.why-card-content p {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .why-card {
    padding: 25px;
    margin-bottom: 10px;
  }

  .why-card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .why-card-content h3 {
    font-size: 16px;
  }

  .why-card-content p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# 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: #555;
}

.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%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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: #555;
}

.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: #555;
}

.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;
}

/*--------------------------------------------------------------
# About Page Custom Styles
--------------------------------------------------------------*/

/* Hero About Section */
/* About hero — uses shared .page-hero system */
.hero-about {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-about h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-about .text-primary {
  color: rgba(255, 255, 255, 0.78) !important;
}

.hero-about .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-about .btn-primary {
  background: white;
  color: var(--accent-color);
  border: 2px solid white;
  font-weight: 600;
  padding: 12px 40px;
  transition: all 0.3s ease;
}

.hero-about .btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.min-vh-75 {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Story Section */
.story-section {
  padding: 80px 0;
}

.story-image-wrapper {
  perspective: 1000px;
}

.story-image-placeholder {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0B3D91 100%);
  border-radius: 15px;
  padding: 60px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-image-placeholder:hover {
  transform: rotateY(5deg) rotateX(-5deg);
}

.story-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.placeholder-content i {
  font-size: 80px;
  margin-bottom: 20px;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.placeholder-content p {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.story-content {
  padding-left: 40px;
}

.section-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.story-content h2 {
  color: var(--heading-color);
  margin-bottom: 30px;
}

.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 20px;
}

.story-content .btn {
  margin-top: 10px;
}

/* Leadership Section */
.leadership-section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
}

.founder-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-image {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0B3D91 100%);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: movePattern 15s linear infinite;
}

.image-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-info {
  padding: 30px;
}

.founder-info h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
}

.founder-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.founder-bio {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  position: relative;
}

.stats-card-equal {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stats-card-equal .stat-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
}

@media (max-width: 767px) {
  .stats-card-equal .stat-box {
    min-height: auto;
    padding: 20px 12px;
  }
  
  .stats-card-equal .stat-number {
    font-size: 28px !important;
  }
  
  .stats-card-equal .stat-label {
    font-size: 11px !important;
    line-height: 1.3;
  }
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #C8DFF0;
  margin-top: 6px;
}

.protocol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,62,110,0.15) !important;
  border-color: #0A6EBD !important;
}

.protocol-card:hover .bi {
  transform: scale(1.1);
}

.protocol-card .bi {
  transition: transform 0.3s ease;
}

.why-artemis-item {
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 -8px;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.why-artemis-item:hover {
  background: rgba(0, 62, 110, 0.03);
}

.why-artemis-item:hover .why-icon {
  transform: scale(1.1);
}

.why-icon {
  transition: transform 0.3s ease;
}

.gradient-btn {
  background: linear-gradient(135deg, #003E6E, #0A6EBD) !important;
  transition: all 0.3s ease !important;
}

.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 62, 110, 0.3) !important;
}

.stat-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  animation: slideUp 0.6s ease-out backwards;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.stat-number.counter {
  animation: none;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.value-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #0B3D91 100%);
  transform: scaleX(1);
  transform-origin: left;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
  display: inline-block;
}

.value-card:hover .value-icon {
  color: #78B731;
}

.value-card h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-card p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.software-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 62, 110, 0.12);
}

.software-card-header {
  background: linear-gradient(135deg, #0D1F30 0%, #1a3a5c 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.software-card-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.software-card-badge {
  background: linear-gradient(135deg, #8BBFD9 0%, #5ba3cf 100%);
  color: #003E6E;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.software-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.software-card-body p {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.software-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.software-card-tags span {
  background: linear-gradient(135deg, #F7F9FC 0%, #EEF2F7 100%);
  color: #2D3748;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.software-card-tags span:hover {
  background: #003E6E;
  color: #fff;
}

/* Facility CTA Section */
.facility-cta {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.facility-cta h2 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.facility-cta .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 2rem;
  }

  .hero-about {
    padding: 80px 0;
  }

  .story-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .story-image-placeholder {
    height: 300px;
    padding: 40px;
  }

  .founder-image {
    height: 200px;
  }

  .image-placeholder {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .facility-cta {
    text-align: center;
  }

  .facility-cta .col-lg-4 {
    margin-top: 20px;
  }

  .facility-cta .text-lg-end {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Solutions Section - Interactive Table with Hover Animation
--------------------------------------------------------------*/
:root {
  --olive-green: #7c9d33;
  --deep-blue: #005A9C;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.solutions {
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* Solutions All page hero */
.solutions-hero {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  margin-top: 77px;
}

.solutions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.solutions-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.solutions-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: none;
}

.solutions-hero h2 {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.solutions-hero .text-success {
  color: rgba(255, 255, 255, 0.75) !important;
}

.sol-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 0;
  padding: 0;
}

/* LEFT */
.sol-left {
  padding: 60px 64px 60px 64px;
  text-align: center;
}

.sol-left .sol-title-row {
  justify-content: center;
  text-align: center;
  display: flex;
  width: 100%;
}

.sol-left .sol-title {
  text-align: center;
}

.sol-left .sol-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sol-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
  text-align: center;
}

.sol-title-line {
  flex: 1;
  height: 2px;
  background: var(--olive-green);
}

.sol-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
}

.sol-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555e6d;
  font-weight: 400;
  max-width: 560px;
  margin: 18px 0 28px;
}

.sol-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--heading-color);
  border: 1.5px solid var(--olive-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 48px;
}

.sol-cta:hover {
  background: var(--olive-green);
  color: var(--white);
  border-color: var(--olive-green);
}

.sol-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #003E6E, #0A6EBD);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.sol-view-all i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.sol-view-all:hover {
  background: linear-gradient(135deg, #002D52, #085A9E);
  color: #fff;
  gap: 12px;
}

.sol-view-all:hover i {
  transform: translateX(4px);
}

.sol-view-all-mobile {
  display: none;
}

@media (max-width: 991px) {
  .sol-view-all-mobile {
    display: block;
    margin-top: 30px;
  }
}

/* TABLE */
.sol-table {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.sol-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-bottom: none;
  background: transparent;
}

.sol-row:first-child {
  margin-bottom: 12px;
}

.sol-row:last-child {
  border-bottom: none;
}

.sol-cell {
  padding: 22px 24px;
  border-right: 1px solid rgba(32, 78, 45, 0.1);
  font-size: 13px;
  font-weight: 500;
  color: #3d4a5c;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  line-height: 1.5;
  user-select: none;
}

.sol-cell:last-child {
  border-right: none;
}

.sol-cell:hover {
  background: linear-gradient(135deg, #003E6E, #0A6EBD) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,62,110,0.2), 0 0 0 3px rgba(0, 110, 189, 0.5);
  border-right: 1px solid rgba(0, 110, 189, 0.5);
}

.sol-cell.active {
  background: linear-gradient(135deg, #003E6E, #0A6EBD);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,62,110,0.2);
}

/* RIGHT — info card panel */
.sol-right {
  position: sticky;
  top: 80px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px 32px 16px;
}

.sol-card-frame {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sol-card-frame::before {
  display: none;
}

.sol-card-img {
  position: relative;
  z-index: 1;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 0.45s var(--ease);
}

.sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s, transform 0.5s var(--ease);
}

.sol-card-img-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-card-img-btn svg {
  color: var(--deep-blue);
  stroke: var(--deep-blue) !important;
}

.sol-card-info {
  position: relative;
  z-index: 1;
  margin: 14px 0 0 0;
  padding: 24px 26px 22px;
  background: var(--deep-blue);
  border-radius: 14px;
  transition: opacity 0.35s, transform 0.4s var(--ease);
  box-shadow: 0 6px 24px rgba(0, 90, 156, 0.25);
}

.sol-card-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.sol-card-info-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* ANIMATIONS */
.sol-card-img.entering {
  animation: cardSlideIn 0.45s var(--ease) forwards;
}

.sol-card-img.leaving {
  animation: cardSlideOut 0.3s var(--ease) forwards;
}

.sol-card-info.entering {
  animation: infoFadeUp 0.4s 0.1s var(--ease) forwards;
  opacity: 0;
  transform: translateY(16px);
}

.sol-card-info.leaving {
  animation: infoFadeOut 0.25s var(--ease) forwards;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cardSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

@keyframes infoFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes infoFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

/* Mobile Views - Hide Desktop Layout, Show Mobile Cards */
.sol-mobile-header {
  display: none;
}

.sol-mobile-cards {
  display: none;
}

.sol-desktop-card {
  display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
  .sol-inner {
    grid-template-columns: 1fr;
  }

  .sol-right {
    position: static;
    height: auto;
    padding: 40px 40px 80px 40px;
  }

  .sol-left {
    padding: 80px 40px 40px 40px;
  }
}

@media (max-width: 768px) {
  .sol-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Hide desktop layout on mobile */
  .sol-left {
    display: none !important;
  }

  .sol-desktop-card {
    display: none !important;
  }

  /* Show mobile header */
  .sol-mobile-header {
    display: block;
    padding: 40px 24px 30px 24px;
  }

  /* Show mobile cards */
  .sol-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 33px;
    /*padding: 0 24px 60px 24px;*/
  }

  /** Mobile Card Styles **/
  .sol-mobile-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: mobileCardSlideUp 0.6s var(--ease) forwards;
    opacity: 0;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sol-mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 62, 110, 0.2), 0 0 0 3px rgba(0, 110, 189, 0.3);
  }

  .sol-mobile-card[data-idx="0"] {
    animation-delay: 0s;
  }

  .sol-mobile-card[data-idx="1"] {
    animation-delay: 0.15s;
  }

  .sol-mobile-card[data-idx="2"] {
    animation-delay: 0.3s;
  }

  .sol-mobile-card[data-idx="3"] {
    animation-delay: 0.45s;
  }

  .sol-mobile-card[data-idx="4"] {
    animation-delay: 0.6s;
  }

  .sol-mobile-card .sol-card-img {
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    box-shadow: none;
  }

  .sol-mobile-card .sol-card-info {
    margin: 0;
    padding: 20px 20px 16px;
    background: var(--deep-blue);
    border-radius: 0;
  }

  .sol-mobile-card .sol-card-info-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .sol-mobile-card .sol-card-info-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  @keyframes mobileCardSlideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .sol-row {
    grid-template-columns: 1fr;
  }

  .sol-cell {
    border-right: none;
    border-bottom: 1px solid rgba(32, 78, 45, 0.1);
  }

  .sol-cell:last-child {
    border-bottom: none;
  }

  .sol-title {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Solution Detail Page Styles
--------------------------------------------------------------*/

/* Solution Detail Hero Sections */
.solution-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  margin-top: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.solution-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.solution-detail-hero .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  text-align: center;
}

.solution-detail-hero.solution-hero-assembly {
  background: linear-gradient(135deg, #1e4d0e 0%, #5A9620 100%);
}

.solution-detail-hero.solution-hero-test {
  background: linear-gradient(135deg, #0B2E6F 0%, #0A6EBD 100%);
}

.solution-detail-hero.solution-hero-portable {
  background: linear-gradient(135deg, #0B2E6F 0%, #1a5c9e 100%);
}

.solution-detail-hero.solution-hero-spm {
  background: linear-gradient(135deg, #0B2E6F 0%, #204E2D 100%);
}

.solution-detail-hero.solution-hero-software {
  background: linear-gradient(135deg, #204E2D 0%, #0A6EBD 100%);
}

.solution-detail-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# Process Timeline - 9 Stage Process
--------------------------------------------------------------*/
.process-section {
  margin-bottom: 60px;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-tag {
  display: inline-block;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.process-section>.process-header>p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  overflow-x: auto;
  padding: 20px 0;
}

.process-cta-wrap {
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #003E6E, #0A6EBD);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,62,110,0.15);
}

.process-cta-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: #003E6E;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.process-cta-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.process-cta-btn:hover {
  background: #f0f4f8;
  color: #002D52;
  gap: 12px;
}

.process-cta-btn:hover i {
  transform: translateX(4px);
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: fit-content;
  justify-content: space-around;
}

.timeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
  width: 110px;
}

.stage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
}

.stage-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.timeline-stage:hover .stage-icon {
  background: transparent;
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(124, 157, 51, 0.1);
  border-color: var(--accent-color);
}

.timeline-stage.active .stage-icon {
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  color: #ffffff;
  transform: scale(1.25);
  box-shadow: 0 0 0 12px rgba(56, 189, 248, 0.2);
}

.stage-label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: #444444;
  line-height: 1.4;
}

.timeline-connector {
  height: 3px;
  background: var(--accent-color);
  flex: 1;
  max-width: 80px;
  margin: 0;
}

/* Stage Details Panel */
.stage-details-panel {
  margin-top: 40px;
  padding: 32px 32px 28px;
  background: #0B2E6F;
  border-radius: 14px;
  border-left: 5px solid #5A9620;
  animation: slideInUp 0.4s ease;
  box-shadow: 0 8px 32px rgba(11, 46, 111, 0.18);
  transition: opacity 0.2s ease;
}

.stage-details-header {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

/* Auto-cycle progress bar */
.stage-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.stage-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5A9620, #7cbf2a);
  border-radius: 2px;
}

/* Pulse animation for active stage icon */
@keyframes stagePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0.05); }
}

.timeline-stage.active .stage-icon {
  animation: stagePulse 2s ease infinite;
}

.stage-details-header h3 {
  font-size: 22px;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.stage-details-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.details-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.details-col {
  flex: 1;
}

.details-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5A9620;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.details-col p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Timeline */
@media (max-width: 1024px) {
  .timeline-track {
    justify-content: flex-start;
    gap: 10px;
  }

  .timeline-connector {
    max-width: 50px;
  }

  .stage-label {
    font-size: 10px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-width: 2px;
  }

  .timeline-stage.active .stage-icon {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(124, 157, 51, 0.1);
  }

  .stage-details-panel {
    padding: 24px 20px;
  }

  .stage-details-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .process-header {
    margin-bottom: 35px;
  }

  .process-section h2 {
    font-size: 26px;
  }

  .process-section>.process-header>p {
    font-size: 14px;
  }

  .timeline-stage {
    width: 85px;
    gap: 8px;
  }

  .stage-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
    border-width: 2px;
  }

  .timeline-stage:hover .stage-icon {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(124, 157, 51, 0.1);
  }

  .timeline-stage.active .stage-icon {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(124, 157, 51, 0.15);
  }

  .stage-label {
    font-size: 9px;
  }

  .timeline-connector {
    max-width: 35px;
  }

  .stage-details-panel {
    margin-top: 30px;
    padding: 20px 16px;
  }

  .stage-details-header h3 {
    font-size: 18px;
  }

  .details-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/*--------------------------------------------------------------
# Industries Page Styles
--------------------------------------------------------------*/

/* Industries Hero — uses shared .page-hero system */
.industries-hero {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
}

/* Industries Section */
.industries-section {
  padding: 0 0 80px !important;
  background-color: #ffffff !important;
  color: #333 !important;
  position: relative;
  z-index: 1;
  overflow: visible !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  scroll-margin-top: 140px;
}

.industries-section > .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.industry-card {
  padding: 60px 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  scroll-margin-top: 140px;
}

.industry-card .row {
  display: flex !important;
  visibility: visible;
}

.industry-content {
  position: relative;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  display: block;
}

.industry-ev {
  border-top-color: #0A6EBD;
}

.industry-aerospace {
  border-top-color: #DC3545;
}

.industry-power {
  border-top-color: #5A9620;
}

.industry-telecom {
  border-top-color: #0A6EBD;
}

.industry-electronics {
  border-top-color: #1a5f5a;
}

.industry-industrial {
  border-top-color: #5A9620;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0B2E6F !important;
  margin-bottom: 8px;
  transition: 0.3s ease;
  display: block;
  visibility: visible;
  opacity: 1;
}

.industry-card:hover .industry-title {
  color: #0A6EBD;
}

.industry-subtitle {
  font-size: 1.1rem;
  color: #5A9620 !important;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: 500;
  display: block;
  visibility: visible;
}

.industry-description {
  font-size: 15px;
  color: #666 !important;
  line-height: 1.8;
  margin-bottom: 20px;
  display: block;
  visibility: visible;
}

.industry-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  text-align: center;
}

.solution-tag {
  display: inline-block;
  background-color: #f8f9fa;
  color: #0A6EBD;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
}

.solution-tag:hover {
  background-color: #0A6EBD;
  color: white;
  border-color: #0A6EBD;
  transform: translateY(-2px);
}

.industry-why {
  background-color: #f5f8fa;
  padding: 20px;
  border-left: 4px solid #0A6EBD;
  border-radius: 4px;
  margin-top: 20px;
}

.industry-why p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.industry-image {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 240px;
  border-radius: 15px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: movePattern 8s linear infinite;
}

.image-placeholder:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-placeholder i {
  font-size: 80px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  animation: bounce 2s infinite;
}

.image-placeholder p {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.image-placeholder small {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* Industry Image Gradient Colors */
.image-placeholder.ev {
  background: linear-gradient(135deg, #0A6EBD 0%, #0B2E6F 100%);
}

.image-placeholder.aerospace {
  background: linear-gradient(135deg, #DC3545 0%, #C82333 100%);
}

.image-placeholder.power {
  background: linear-gradient(135deg, #5A9620 0%, #7CB342 100%);
}

.image-placeholder.telecom {
  background: linear-gradient(135deg, #0A6EBD 0%, #0B2E6F 100%);
}

.image-placeholder.electronics {
  background: linear-gradient(135deg, #1a5f5a 0%, #2d7a7a 100%);
}

.image-placeholder.industrial {
  background: linear-gradient(135deg, #5A9620 0%, #7CB342 100%);
}

/* Industries CTA Section */
.industries-cta-section {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.industries-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.industries-cta-section .container {
  position: relative;
  z-index: 1;
}

.industries-cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.industries-cta-section .text-white-50 {
  font-size: 16px;
  line-height: 1.6;
}

.industries-cta-section .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.industries-cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .industries-hero {
    padding: 80px 0;
    min-height: 300px;
  }

  .industries-hero h1 {
    font-size: 2.5rem;
  }

  .industry-card {
    padding: 40px 0;
  }

  .industry-title {
    font-size: 2rem;
  }

  .image-placeholder {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .industries-hero {
    padding: 60px 0;
    min-height: auto;
    margin-top: 77px;
  }

  .industries-hero h1 {
    font-size: 2rem;
  }

  .industries-hero .lead {
    font-size: 1rem;
  }

  .industry-card {
    padding: 30px 0;
  }

  .industry-title {
    font-size: 1.8rem;
  }

  .industry-solutions {
    gap: 8px;
  }

  .solution-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .image-placeholder {
    height: 200px;
    max-width: 100%;
  }

  .image-placeholder i {
    font-size: 60px;
  }

  .image-placeholder p {
    font-size: 14px;
  }

  .industries-cta-section {
    padding: 50px 0;
  }

  .industries-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .industries-cta-section .row {
    flex-direction: column;
  }

  .industries-cta-section .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }

  .industries-cta-section .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .industries-hero {
    padding: 50px 0;
  }

  .industries-hero h1 {
    font-size: 1.5rem;
  }

  .industries-hero .lead {
    font-size: 0.95rem;
  }

  .breadcrumb-nav .breadcrumb-item {
    font-size: 12px;
  }

  .industry-card {
    padding: 20px 0;
  }

  .industry-title {
    font-size: 1.5rem;
  }

  .industry-subtitle {
    font-size: 1rem;
  }

  .industry-description {
    font-size: 14px;
  }

  .industry-solutions {
    gap: 6px;
  }

  .solution-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  .industry-why {
    padding: 15px;
    font-size: 14px;
  }

  .image-placeholder {
    height: 180px;
  }

  .image-placeholder i {
    font-size: 50px;
    margin-bottom: 10px;
  }

  .image-placeholder p {
    font-size: 12px;
  }

  .image-placeholder small {
    font-size: 10px;
  }

  .industries-cta-section {
    padding: 40px 0;
  }

  .industries-cta-section h2 {
    font-size: 1.3rem;
  }

  .industries-cta-section .text-white-50 {
    font-size: 14px;
  }

  .industries-cta-section .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }

  .text-white-50 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Process Page Styles
--------------------------------------------------------------*/

/* Process Hero — uses shared .page-hero system */
.process-hero {
  background: linear-gradient(135deg, #0B2E6F 0%, #204E2D 100%);
}

/* How We Work Section */
.how-we-work {
  padding: 80px 0;
  background-color: #ffffff !important;
  position: relative;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
}

.section-header {
  text-align: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.how-label {
  display: inline-block !important;
  color: #0A6EBD !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  visibility: visible !important;
  opacity: 1 !important;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B2E6F !important;
  margin-bottom: 20px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Process Table Wrapper */
.process-table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.process-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  margin: 0;
  display: table !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.process-table thead {
  background-color: #0B2E6F;
  color: white;
  display: table-header-group !important;
  visibility: visible !important;
}

.process-table thead th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  color: white !important;
}

.process-table tbody {
  display: table-row-group !important;
  visibility: visible !important;
}

.process-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: table-row !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.process-table tbody tr:hover {
  background-color: #f8f9fa;
  box-shadow: inset 4px 0 0 0 #0A6EBD;
}

.process-table tbody tr:last-child {
  border-bottom: none;
}

.process-table td {
  padding: 18px 15px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  display: table-cell !important;
  visibility: visible !important;
  color: #333 !important;
}

.stage-num {
  width: 70px;
  text-align: center;
  font-weight: 700;
  display: table-cell !important;
  visibility: visible !important;
}

.stage-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #0A6EBD !important;
  color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  visibility: visible !important;
  opacity: 1 !important;
}

.stage-name {
  font-weight: 600 !important;
  color: #0B2E6F !important;
  min-width: 180px;
  display: table-cell !important;
  visibility: visible !important;
}

.stage-desc {
  color: #666 !important;
  min-width: 300px;
  display: table-cell !important;
  visibility: visible !important;
}

.stage-dur {
  color: #0A6EBD !important;
  font-weight: 600 !important;
  white-space: nowrap;
  min-width: 120px;
  display: table-cell !important;
  visibility: visible !important;
}

.stage-output {
  min-width: 200px;
  display: table-cell !important;
  visibility: visible !important;
}

.output-badge {
  display: inline-block !important;
  background-color: #e8f5e9 !important;
  color: #2e7d32 !important;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #c8e6c9;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Process CTA Section */
.process-cta-section {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.process-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.process-cta-section .container {
  position: relative;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
}

.process-cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: white !important;
  display: block !important;
  visibility: visible !important;
}

.process-cta-section .text-white-50 {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7) !important;
  display: block !important;
  visibility: visible !important;
}

.process-cta-section .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block !important;
  visibility: visible !important;
}

.process-cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-table td {
    padding: 15px 12px;
    font-size: 13px;
  }

  .stage-name {
    min-width: 150px;
  }

  .stage-desc {
    min-width: 250px;
  }
}

@media (max-width: 992px) {
  .process-hero {
    padding: 80px 0;
    min-height: 300px;
  }

  .process-hero h1 {
    font-size: 2.5rem;
  }

  .table-responsive {
    border-radius: 8px;
    overflow-x: auto;
  }

  .spec-table td {
    text-align: left !important;
  }

  .spec-table-cell {
    text-align: left !important;
  }

  .text-left {
    text-align: left !important;
  }

  .process-table td {
    padding: 14px 10px;
    font-size: 12px;
  }

  .stage-badge {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .stage-dur,
  .stage-desc {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .process-hero {
    padding: 60px 0;
    min-height: auto;
    margin-top: 77px;
  }

  .process-hero h1 {
    font-size: 2rem;
  }

  .process-hero .lead {
    font-size: 1rem;
  }

  .how-we-work {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Simplified mobile table view */
  .process-table-wrapper {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .process-table {
    font-size: 12px;
  }

  .process-table thead {
    display: none;
  }

  .process-table tbody tr {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 15px;
    border-bottom: 3px solid #f0f0f0;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .process-table tbody tr:hover {
    background-color: #f0f5ff;
    box-shadow: 0 2px 8px rgba(10, 110, 189, 0.1);
  }

  .process-table td {
    padding: 5px 0;
    border: none;
  }

  .process-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #0B2E6F;
    display: block;
    font-size: 11px;
    margin-bottom: 3px;
    text-transform: uppercase;
  }

  .stage-num {
    width: 100%;
    text-align: center;
    padding: 0;
    grid-column: 1 / -1;
  }

  .stage-num::before {
    content: none;
  }

  .stage-name {
    grid-column: 1 / -1;
    font-size: 14px;
    font-weight: 700;
    color: #0B2E6F;
    padding: 8px 0 !important;
  }

  .stage-name::before {
    content: none;
  }

  .stage-desc {
    grid-column: 1 / -1;
    color: #666;
    font-size: 12px;
    padding: 5px 0 !important;
  }

  .stage-desc::before {
    content: "Description";
  }

  .stage-dur {
    color: #0A6EBD;
    font-weight: 600;
  }

  .stage-dur::before {
    content: "Duration";
  }

  .stage-output {
    grid-column: 1 / -1;
  }

  .stage-output::before {
    content: "Key Output";
  }

  .output-badge {
    display: block;
    padding: 8px 10px;
    font-size: 12px;
  }

  .process-cta-section {
    padding: 50px 0;
  }

  .process-cta-section .row {
    flex-direction: column;
  }

  .process-cta-section .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }

  .process-cta-section .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .process-hero {
    padding: 50px 0;
  }

  .process-hero h1 {
    font-size: 1.5rem;
  }

  .process-hero .lead {
    font-size: 0.95rem;
  }

  .how-label {
    font-size: 11px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .process-table {
    font-size: 11px;
  }

  .process-table tbody tr {
    padding: 12px;
    margin-bottom: 8px;
  }

  .stage-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .stage-name {
    font-size: 13px;
  }

  .stage-desc {
    font-size: 11px;
  }

  .output-badge {
    padding: 6px 8px;
    font-size: 10px;
  }

  .process-cta-section {
    padding: 40px 0;
  }

  .process-cta-section h2 {
    font-size: 1.3rem;
  }

  .process-cta-section .text-white-50 {
    font-size: 14px;
  }

  .process-cta-section .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ==============================================
   PROJECTS PAGE
   ============================================== */
/* Projects Hero — uses shared .page-hero system */
.projects-hero {
  background: linear-gradient(135deg, #0B2E6F 0%, #0A6EBD 100%);
}

/* Case Studies */
.case-studies-section {
  padding: 80px 0;
  background: #f4f6fa;
}

.case-study-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,46,111,0.09);
  margin-bottom: 48px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.case-study-card:last-child {
  margin-bottom: 0;
}

.case-study-card:hover {
  box-shadow: 0 10px 40px rgba(11,46,111,0.16);
  transform: translateY(-2px);
}

.cs-image-banner {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
}

.cs-image-banner span {
  display: none;
}

.cs-banner-01 { background: linear-gradient(135deg, #0B2E6F 0%, #1a4ea0 100%); }
.cs-banner-02 { background: linear-gradient(135deg, #2a4c0c 0%, #5A9620 100%); }
.cs-banner-03 { background: linear-gradient(135deg, #083e75 0%, #0A6EBD 100%); }

.cs-content {
  padding: 32px 36px 36px;
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.cs-badge {
  background: #0B2E6F;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.cs-product {
  background: #0A6EBD;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.cs-industry {
  background: #5A9620;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.cs-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0B3D91;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cs-location {
  color: #888;
  font-style: italic;
  font-size: 13px;
  margin-bottom: 28px;
}

.cs-details {
  padding-top: 24px;
  border-top: 1px solid #edf0f5;
}

.cs-col-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A6EBD;
  margin-bottom: 12px;
}

.cs-details p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

.cs-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-results-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  padding: 5px 0 5px 22px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.cs-results-list li:last-child {
  border-bottom: none;
}

.cs-results-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #5A9620;
  font-weight: 800;
  font-size: 13px;
}

/* Projects CTA */
.projects-cta {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.projects-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.projects-cta .container {
  position: relative;
  z-index: 1;
}

.projects-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.projects-cta .text-white-50 {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7) !important;
}

.projects-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.projects-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ==============================================
   CAREERS PAGE
   ============================================== */
/* Careers Hero — uses shared .page-hero system */
.careers-hero {
  background: linear-gradient(135deg, #204E2D 0%, #5A9620 100%);
}

/* Why Join Us */
.why-join-section {
  padding: 80px 0;
  background: #ffffff;
}

.why-label {
  display: inline-block;
  color: #0A6EBD;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0B3D91;
  margin-bottom: 32px;
}

.why-feature-card {
  background: #fff;
  border: 1px solid #e2e8f4;
  border-left: 4px solid #0A6EBD;
  border-radius: 8px;
  padding: 22px 20px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-feature-card:hover {
  box-shadow: 0 6px 24px rgba(11,46,111,0.10);
  transform: translateY(-2px);
}

.why-feature-card h5 {
  font-weight: 700;
  color: #0B3D91;
  margin-bottom: 10px;
  font-size: 14px;
}

.why-feature-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.team-photo-placeholder {
  width: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #0B2E6F 0%, #1e4d9b 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 20px;
  line-height: 1.8;
}

/* Open Positions */
.positions-section {
  padding: 80px 0;
  background: #f4f6fa;
}

.positions-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A6EBD;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  white-space: nowrap;
  width: 100%;
}

.positions-label::before,
.positions-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, #0A6EBD, transparent 70%);
  margin: 0 12px;
}

.positions-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0B3D91;
  margin-bottom: 36px;
}

.job-card {
  background: #fff;
  border: 1px solid #e2e8f4;
  border-radius: 10px;
  padding: 22px 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.job-card:last-child {
  margin-bottom: 0;
}

.job-card:hover {
  box-shadow: 0 6px 24px rgba(11,46,111,0.10);
  border-color: #0A6EBD;
}

.job-main {
  flex: 1;
  min-width: 0;
}

.job-title {
  font-size: 16px;
  font-weight: 700;
  color: #0B3D91;
  margin-bottom: 4px;
}

.job-dept {
  font-size: 12px;
  font-weight: 700;
  color: #5A9620;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.job-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 120px;
  flex-shrink: 0;
}

.badge-immediate {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fcd34d;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-apply {
  background: #5A9620;
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-apply:hover {
  background: #4a7d1a;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(90,150,32,0.35);
}

/* How to Apply */
.how-to-apply {
  padding: 60px 0;
  background: #ffffff;
}

.how-apply-card {
  background: #f6fef2;
  border: 1px solid #c6e2ab;
  border-left: 4px solid #5A9620;
  border-radius: 10px;
  padding: 32px 36px;
}

.how-apply-card h4 {
  font-weight: 700;
  color: #5A9620;
  margin-bottom: 16px;
  font-size: 16px;
}

.how-apply-card p {
  font-size: 14.5px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.7;
}

.how-apply-card p:last-child {
  margin-bottom: 0;
}

.how-apply-card a {
  color: #0A6EBD;
  font-weight: 600;
  text-decoration: none;
}

.how-apply-card a:hover {
  text-decoration: underline;
}

/* Careers CTA */
.careers-cta {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.careers-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
}

.careers-cta .container {
  position: relative;
  z-index: 1;
}

.careers-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.careers-cta .sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

.btn-send-cv {
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}

.btn-send-cv:hover {
  background: white;
  color: #0B2E6F;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
/* Contact Hero — uses shared .page-hero system */
.contact-hero {
  background: linear-gradient(135deg, #0B1F4F 0%, #0B2E6F 100%);
}

/* Contact Main */
.contact-main {
  padding: 80px 0;
  background: #f4f6fa;
}

.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(11,46,111,0.09);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0B3D91;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #edf0f5;
  text-align: center;
}

.contact-form-card .form-label {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: left;
  display: block;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid #d8e2f0;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  background-color: #fafcff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.contact-form-card input[type="tel"].form-control {
  text-align: right;
}

.contact-form-card input[type="tel"].form-control::placeholder {
  text-align: right;
}

.contact-form-card .form-control::placeholder {
  color: #555;
}

.contact-form-card .form-select {
  text-align-last: left;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: #0A6EBD;
  box-shadow: 0 0 0 3px rgba(10,110,189,0.10);
  outline: none;
  background-color: #fff;
}

.contact-form-card textarea.form-control {
  min-height: 140px;
  resize: vertical;
}


.btn-submit-contact {
  width: 100%;
  background: #5A9620;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.btn-submit-contact:hover {
  background: #4a7d1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(90,150,32,0.35);
}

/* Contact Info Cards */
.contact-info-card {
  background: #f0f8e8;
  border: 1px solid #c8e0a8;
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 18px;
}

.contact-info-card h5 {
  font-size: 14px;
  font-weight: 800;
  color: #5A9620;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: #333;
  margin: 0;
}

.contact-info-card p strong {
  color: #0B3D91;
}

.contact-info-card a {
  color: #0A6EBD;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Contact Stats */
.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-stat-box {
  border-radius: 10px;
  padding: 22px 10px;
  text-align: center;
  color: white;
}

.contact-stat-box:nth-child(1) { background: #0B2E6F; }
.contact-stat-box:nth-child(2) { background: #0a4a8a; }
.contact-stat-box:nth-child(3) { background: #5A9620; }

.contact-stat-box .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.contact-stat-box .stat-label {
  font-size: 10.5px;
  line-height: 1.35;
  opacity: 0.85;
  font-weight: 500;
}

/* Responsive — projects / careers / contact */
@media (max-width: 992px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-actions {
    flex-direction: row;
    align-items: center;
    min-width: unset;
    width: 100%;
    justify-content: flex-start;
  }

  .cs-content {
    padding: 24px 22px 28px;
  }
}


/*--------------------------------------------------------------
# Process Timeline - 9 Stage Process
--------------------------------------------------------------*/
.process-section {
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(10, 110, 189, 0.02) 0%, rgba(124, 157, 51, 0.02) 100%);
  padding: 40px 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 110, 189, 0.05), transparent);
  z-index: 0;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 157, 51, 0.05), transparent);
  z-index: 0;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.process-tag {
  display: inline-block;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.process-section>.process-header>p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  overflow-x: auto;
  padding: 40px 0;
  position: relative;
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: fit-content;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  z-index: 0;
}

.timeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  flex-shrink: 0;
  width: 110px;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 110, 189, 0.1), rgba(124, 157, 51, 0.1));
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 110, 189, 0.1);
  position: relative;
  overflow: hidden;
}

.stage-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: opacity 0.3s ease;
}

.stage-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.timeline-stage:hover .stage-icon {
  background: linear-gradient(135deg, rgba(10, 110, 189, 0.2), rgba(124, 157, 51, 0.2));
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 25px rgba(10, 110, 189, 0.2);
  border-color: var(--accent-color);
}

.timeline-stage:hover .stage-icon::before {
  opacity: 1;
}

.timeline-stage.active .stage-icon {
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  color: white;
  transform: scale(1.3) translateY(-8px);
  box-shadow: 0 16px 35px rgba(56, 189, 248, 0.45);
  border-color: white;
}

.timeline-stage.active .stage-icon::before {
  opacity: 1;
}

.timeline-stage.active .stage-label {
  color: var(--accent-color);
  font-weight: 700;
}

.stage-label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: #444444;
  line-height: 1.4;
}

.timeline-connector {
  height: 0;
  background: transparent;
  flex: 1;
  max-width: 80px;
  margin: 0;
  display: none;
}

/* Stage Details Panel */
.stage-details-panel {
  margin-top: 40px;
  padding: 32px 32px 28px;
  background: #0B2E6F;
  border-radius: 14px;
  border-left: 5px solid #5A9620;
  animation: slideInUp 0.4s ease;
  box-shadow: 0 8px 32px rgba(11, 46, 111, 0.18);
  transition: opacity 0.2s ease;
}

.stage-details-header {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

/* Auto-cycle progress bar */
.stage-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.stage-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5A9620, #7cbf2a);
  border-radius: 2px;
}

/* Pulse animation for active stage icon */
@keyframes stagePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0.05); }
}

.timeline-stage.active .stage-icon {
  animation: stagePulse 2s ease infinite;
}

.stage-details-header h3 {
  font-size: 22px;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.stage-details-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.details-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.details-col {
  flex: 1;
}

.details-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5A9620;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.details-col p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Timeline */
@media (max-width: 1024px) {
  .timeline-track {
    justify-content: center;
    gap: 15px;
  }

  .timeline-track::before {
    top: 35px;
  }

  .stage-label {
    font-size: 10px;
  }

  .stage-icon {
    width: 60px;
    height: 60px;
    font-size: 18px;
    border-width: 2px;
  }

  .timeline-stage:hover .stage-icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 20px rgba(10, 110, 189, 0.15);
  }

  .timeline-stage.active .stage-icon {
    transform: scale(1.25) translateY(-6px);
    box-shadow: 0 14px 28px rgba(10, 110, 189, 0.25);
  }

  .stage-details-panel {
    padding: 24px 20px;
  }

  .stage-details-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .projects-hero,
  .careers-hero,
  .contact-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .case-studies-section,
  .why-join-section,
  .positions-section,
  .contact-main {
    padding: 56px 0;
  }

  .cs-image-banner {
    height: 140px;
  }

  .how-to-apply {
    padding: 48px 0;
  }

  .how-apply-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .cs-meta {
    gap: 6px;
  }

  .cs-badge, .cs-product, .cs-industry {
    font-size: 9px;
    padding: 3px 9px;
  }

  .contact-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-stat-box {
    padding: 18px 14px;
  }

  .contact-stat-box .stat-value {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .process-header {
    margin-bottom: 35px;
  }

  .process-section h2 {
    font-size: 26px;
  }

  .process-section>.process-header>p {
    font-size: 14px;
  }

  .process-timeline {
    padding: 30px 0;
  }

  .timeline-track {
    gap: 12px;
    padding: 15px;
  }

  .timeline-track::before {
    top: 32px;
  }

  .timeline-stage {
    width: 85px;
    gap: 10px;
  }

  .stage-icon {
    width: 50px;
    height: 50px;
    font-size: 16px;
    border-width: 2px;
  }

  .timeline-stage:hover .stage-icon {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 16px rgba(10, 110, 189, 0.12);
  }

  .timeline-stage.active .stage-icon {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 12px 24px rgba(10, 110, 189, 0.2);
  }

  .stage-label {
    font-size: 9px;
  }

  .timeline-connector {
    max-width: 35px;
  }

  .stage-details-panel {
    margin-top: 30px;
    padding: 20px 16px;
  }

  .stage-details-header h3 {
    font-size: 18px;
  }

  .details-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .header .navmenu a,
  .header .navmenu a:focus {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 7px 16px;
    border-radius: 6px;
  }

  .header .navmenu .dropdown ul {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(11,31,79,0.18);
    border: 1px solid rgba(11,31,79,0.08);
  }

  .header .navmenu .dropdown ul a:hover,
  .header .navmenu .dropdown ul .active:hover,
  .header .navmenu .dropdown ul li:hover > a {
    color: #5A9620;
  }
}

/* Mobile nav refinements */
@media (max-width: 1199px) {
  .header .navmenu ul {
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(11,31,79,0.2);
    border: 1px solid rgba(11,31,79,0.08);
  }
}

/* (Footer CSS consolidated above — see "NEW FOOTER" section) */

/* ==============================================
   HERO SECTION NORMALIZATION (all non-home pages)
   ============================================== */

/* Universal hero base — consistent min-height and alignment */
.hero-about,
.solutions-hero,
.industries-hero,
.solution-detail-hero {
  min-height: 300px;
}

/* solutions-hero: left-align for consistency with other pages */
.solutions-hero .hero-content {
  text-align: left !important;
}

.solutions-hero .lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Section label override: white/muted inside gradient hero backgrounds */
.solutions-hero .section-label,
.hero-about .section-label {
  color: rgba(255, 255, 255, 0.60) !important;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 700;
  background: none !important;
  padding: 0 !important;
}

/* hero-about heading text shadow removal */
.hero-about h1 {
  text-shadow: none !important;
}

/* solutions-hero padding normalised */
.solutions-hero {
  padding: 90px 0;
}

/* solution-detail-hero: normalise h1 shadow */
.solution-detail-hero h1 {
  text-shadow: none;
}

/* solution-detail-hero lead: left-aligned */
.solution-detail-hero .lead {
  margin-left: 0 !important;
}

/* Breadcrumb white text on dark gradient hero */
.solution-detail-hero .breadcrumb-item,
.solution-detail-hero .breadcrumb-item a,
.solution-detail-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px;
}

.solution-detail-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5) !important;
}

.solution-detail-hero .breadcrumb-item a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* Solutions detail pages — prevent horizontal overflow on mobile */
.page-solutions {
  overflow-x: hidden;
}

.solution-detail-hero .container-fluid {
  max-width: 100%;
}

@media (max-width: 768px) {
  .solution-detail-hero {
    padding: 70px 0 60px;
  }

  .solution-detail-hero .container-fluid {
    padding: 0 20px;
  }

  .solution-detail-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .solution-detail-content .container,
  .solution-coming-soon .container,
  .solution-cta-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ==============================================
   DROPDOWN MENU — CLEAN ACTIVE STATE
   ============================================== */

/* Remove the green pill from active dropdown items */
@media (min-width: 1200px) {
  .navmenu .dropdown ul li.active,
  .navmenu .dropdown ul li.active:focus {
    background-color: transparent !important;
    border-radius: 0 !important;
  }

  .navmenu .dropdown ul li.active > a,
  .navmenu .dropdown ul li.active:focus > a {
    color: #5A9620 !important;
    background-color: transparent !important;
    font-weight: 700;
    border-left: 3px solid #5A9620;
    padding-left: 17px;
  }

  /* Dropdown hover: subtle tinted row + left green indicator */
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover > a {
    background-color: rgba(90, 150, 32, 0.06) !important;
    color: #5A9620 !important;
    border-left: 3px solid #5A9620;
    padding-left: 17px !important;
  }

  /* Dropdown item base: reserve left border space */
  .navmenu .dropdown ul a {
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
  }

  /* Dropdown container: cleaner shadow + tighter radius */
  .navmenu .dropdown ul {
    border-radius: 10px !important;
    box-shadow: 0 10px 36px rgba(11, 31, 79, 0.14) !important;
    border: 1px solid rgba(11, 31, 79, 0.06) !important;
    min-width: 220px;
  }

  /* Dropdown items: slightly smaller, cleaner */
  .navmenu .dropdown ul a {
    font-size: 14px;
    padding: 10px 20px;
    color: #2d2d2d;
  }
}

/* ==============================================
   SOLUTIONS ALL PAGE — RESTORED CSS
   ============================================== */

.solutions-section {
  padding: 80px 0;
  background: white;
}

.solution-item {
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}

.solution-item .row {
  align-items: center;
}

.solution-item .col-lg-6 {
  padding: 20px;
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-label {
  display: inline-block;
  color: #0A6EBD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.solution-title {
  color: #0B2E6F;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.solution-tagline {
  color: #5A9620;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

.solution-description {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.solution-features {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #0A6EBD;
}

.solution-features h5 {
  color: #0B2E6F;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solution-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  color: #555;
  font-size: 14px;
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.solution-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #5A9620;
  font-weight: bold;
  font-size: 16px;
}

.solution-features strong {
  color: #0B2E6F;
}

.solution-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #003E6E, #0A6EBD);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.solution-learn-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.solution-learn-more:hover {
  background: linear-gradient(135deg, #002D52, #085A9E);
  color: #fff;
  gap: 12px;
}

.solution-learn-more:hover i {
  transform: translateX(4px);
}

/* Solution Image Boxes */
.solution-image-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.image-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-placeholder:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: movePattern 15s linear infinite;
}

.image-placeholder.blue {
  background: linear-gradient(135deg, #0A6EBD 0%, #0B3D91 100%);
}

.image-placeholder.navy {
  background: linear-gradient(135deg, #1a3461 0%, #0B2E6F 100%);
}

.image-placeholder.teal {
  background: linear-gradient(135deg, #1a5f5a 0%, #2d7a7a 100%);
}

.image-placeholder.green {
  background: linear-gradient(135deg, #5A9620 0%, #4a7b1a 100%);
}

.image-placeholder.darkblue {
  background: linear-gradient(135deg, #0B2E6F 0%, #1a4a9f 100%);
}

.placeholder-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.image-placeholder p {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.image-placeholder small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* Solutions CTA Section */
.solutions-cta {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 0;
  border-top: 1px solid #e0e0e0;
}

.solutions-cta h2 {
  color: #0B2E6F;
  margin-bottom: 15px;
}

.solutions-cta .lead {
  color: #666;
  margin: 0;
}

.solutions-cta .btn-primary {
  background: linear-gradient(135deg, #0A6EBD 0%, #0B2E6F 100%);
  border: none;
  padding: 14px 35px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.solutions-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 110, 189, 0.3);
  background: linear-gradient(135deg, #0B2E6F 0%, #0A6EBD 100%);
}

/* Responsive Solutions */
@media (max-width: 992px) {
  .solution-item { padding: 40px 0; }
  .solution-title { font-size: 1.8rem; }
  .solution-item .col-lg-6 { display: block; margin-bottom: 30px; }
  .image-placeholder { height: 280px; }
  .solutions-cta { text-align: center; }
  .solutions-cta .col-lg-4 { margin-top: 20px; }
  .solutions-cta .text-lg-end { text-align: center !important; }
}

@media (max-width: 768px) {
  .solutions-hero { padding: 60px 0; }
  .solutions-hero h1 { font-size: 2rem; }
  .solutions-hero h2 { font-size: 1.5rem; }
  .solution-item { padding: 30px 0; }
  .solution-item .col-lg-6 { display: block; margin-bottom: 25px; }
  .solution-title { font-size: 1.4rem; }
  .solution-features { padding: 20px; }
  .placeholder-icon { font-size: 60px; }
  .image-placeholder { min-height: 250px; }
}

@media (max-width: 576px) {
  .solution-item { padding: 20px 0; }
  .solution-title { font-size: 1.2rem; }
  .solution-tagline { font-size: 1rem; }
  .placeholder-icon { font-size: 48px; }
  .image-placeholder { min-height: 220px; }
  .solution-features { padding: 15px; }
}

/* ==============================================
   SOLUTION DETAIL PAGES — RESTORED CSS
   ============================================== */

.solution-detail-content {
  padding: 80px 0;
  background: white;
}

.solution-label-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A6EBD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  white-space: nowrap;
  width: 100%;
}

.solution-label-detail::before,
.solution-label-detail::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10, 110, 189, 0.25);
  margin: 0 14px;
}

.solution-detail-title {
  color: #0B2E6F;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.solution-detail-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Center card body content in Software Capabilities section */
.page-solutions .card-body p {
  text-align: center;
}

.page-solutions .card-body .d-flex {
  justify-content: center;
}

.solution-link-detail {
  display: inline-block;
  color: #0A6EBD;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.solution-link-detail:hover {
  color: #0B2E6F;
}

.solution-image-detail {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder-detail {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-placeholder-detail:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.image-placeholder-detail::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: movePattern 15s linear infinite;
}

.image-placeholder-detail.blue {
  background: linear-gradient(135deg, #0A6EBD 0%, #0B3D91 100%);
}

.image-placeholder-detail.navy {
  background: linear-gradient(135deg, #1a3461 0%, #0B2E6F 100%);
}

.image-placeholder-detail.teal {
  background: linear-gradient(135deg, #1a5f5a 0%, #2d7a7a 100%);
}

.image-placeholder-detail.green {
  background: linear-gradient(135deg, #5A9620 0%, #4a7b1a 100%);
}

.image-placeholder-detail.darkblue {
  background: linear-gradient(135deg, #0B2E6F 0%, #1a4a9f 100%);
}

.image-placeholder-detail .placeholder-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

.image-placeholder-detail p {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 0 0;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.image-placeholder-detail small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

/* Coming Soon Section */
.solution-coming-soon {
  padding: 80px 0;
  background: #f5f5f5;
  text-align: center;
}

.solution-coming-soon h3 {
  color: #0B2E6F;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.solution-coming-soon p {
  color: #999;
  font-size: 15px;
  margin-bottom: 30px;
}

.solution-coming-soon .d-flex {
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.solution-coming-soon .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.solution-coming-soon .btn-success {
  background: #5A9620;
  border: 2px solid #5A9620;
  color: white;
}

.solution-coming-soon .btn-success:hover {
  background: #4a7b1a;
  border-color: #4a7b1a;
  transform: translateY(-2px);
}

.solution-coming-soon .btn-dark {
  background: #0B2E6F;
  border: 2px solid #0B2E6F;
  color: white;
}

.solution-coming-soon .btn-dark:hover {
  background: #051d4d;
  border-color: #051d4d;
  transform: translateY(-2px);
}

/* Solution CTA Section */
.solution-cta-section {
  background: linear-gradient(135deg, #0B2E6F 0%, #5A9620 100%);
  padding: 60px 0;
  color: white;
}

.solution-cta-section h2 {
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
}

.solution-cta-section .text-white-50 {
  color: rgba(255, 255, 255, 0.7);
}

.solution-cta-section .btn-light {
  background: white;
  color: #0B2E6F;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.solution-cta-section .btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

.solution-cta-section .text-lg-end {
  text-align: right;
}

/* SPM Table Styles */
.spm-table {
  font-size: 13px;
}

.spm-table thead {
  background: #0B2E6F;
  color: white;
}

.spm-table thead th {
  border: none;
  padding: 15px;
  font-weight: 700;
}

.spm-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.spm-table tbody td {
  padding: 15px;
  vertical-align: top;
}

.spm-table tbody tr:hover {
  background-color: #f9f9f9;
}

.spm-table strong {
  color: #0B2E6F;
}

.spm-image-section {
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #0A6EBD;
}

.feature-card .feature-title {
  color: #0B2E6F;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card .feature-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.section-light {
  background: #f5f5f5;
}

/* Responsive Solution Detail */
@media (max-width: 768px) {
  .solution-detail-content { padding: 50px 0; }
  .solution-detail-title { font-size: 1.8rem; }
  .image-placeholder-detail { height: 300px; }
  .solution-coming-soon { padding: 50px 0; }
  .solution-coming-soon h3 { font-size: 22px; }
  .solution-coming-soon .d-flex { flex-direction: column; }
  .solution-coming-soon .btn { width: 100%; }
  .solution-cta-section { padding: 40px 0; text-align: center; }
  .solution-cta-section .text-lg-end { text-align: center !important; margin-top: 20px; }
  .spm-table { font-size: 12px; }
}
/* ==============================================
   PAGE HERO — UNIFIED BEAUTIFUL SYSTEM
   All non-home page banners (industries, process,
   projects, careers, contact, about)
   ============================================== */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  margin-top: 77px;
  color: #ffffff;
  min-height: 300px;
  display: flex;
  align-items: center;
}

/* Animated dot-grid overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: moveBackground 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Diagonal light sweep accent */
.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* Inner wrapper */
.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Breadcrumb */
.page-hero-breadcrumb {
  margin-bottom: 20px;
}

.page-hero-breadcrumb .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-hero-breadcrumb .breadcrumb-item,
.page-hero-breadcrumb .breadcrumb-item.active,
.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.65) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.page-hero-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff !important;
}

.page-hero-breadcrumb .breadcrumb-item.active {
  color: rgba(255,255,255,0.90) !important;
  font-weight: 600;
}

/* Page tag pill */
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

/* Main title */
.page-hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

/* Accent subtitle (about page) */
.page-hero-accent {
  color: rgba(255,255,255,0.85) !important;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* Lead paragraph */
.page-hero-lead {
  color: rgba(255,255,255,0.82) !important;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 0;
  text-align: center;
}

/* CTA button (about page) */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.40);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
}

.btn-hero-cta:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.65);
  color: #ffffff !important;
}

/* Center variant (about page) */
.page-hero-inner.text-center .page-hero-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 70px 0 60px;
    min-height: 240px;
  }

  .page-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    letter-spacing: -0.3px;
  }

  .page-hero-lead {
    font-size: 0.95rem;
  }

  .page-hero-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 60px 0 50px;
  }

  .page-hero-title {
    font-size: 1.55rem;
  }
}

/* ==============================================
   SOLUTIONS HERO BUTTONS — MOBILE FIX
   ============================================== */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.hero-buttons .btn {
  min-width: 150px;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==============================================
   SOLUTION DETAIL IMAGE — REAL PHOTO CONTAINER
   ============================================== */

.sol-detail-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11,46,111,0.18);
  aspect-ratio: 4 / 3;
  background: #0b2e6f;
}

.sol-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sol-detail-img-wrap:hover img {
  transform: scale(1.03);
}

/* ==============================================
   INDUSTRIES PAGE — REAL PHOTO IMAGE CONTAINERS
   ============================================== */

.industry-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  aspect-ratio: 4 / 3;
  position: relative;
}

.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-img-wrap img {
  transform: scale(1.04);
}

.industry-card {
  padding: 60px 0;
}

.industry-card:first-child {
  padding-top: 60px !important;
}

.industry-card:last-child {
  padding-bottom: 80px !important;
  border-bottom: none;
}

@media (max-width: 768px) {
  .industry-card {
    padding: 40px 0;
  }

  .industry-card:first-child {
    padding-top: 50px !important;
  }

  .industry-card:last-child {
    padding-bottom: 60px !important;
  }

  .industry-img-wrap {
    margin-top: 20px;
  }
}

/* ==============================================
   ABOUT PAGE — STORY IMAGE
   ============================================== */

.story-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,46,111,0.15);
  aspect-ratio: 4 / 3;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==============================================
   INDEX — ABOUT SECTION IMAGE
   ============================================== */

.about-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(11,46,111,0.15);
  aspect-ratio: 4 / 3;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SOL CARD IMG — ensure proper fit for real photos */
.sol-card-img img,
.sol-mobile-card .sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==============================================
   PROCESS PAGE — VERTICAL STEPPER
   ============================================== */

.process-steps {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proc-step {
  display: flex;
  gap: 0;
  position: relative;
  padding-bottom: 36px;
}

.proc-step:last-child {
  padding-bottom: 0;
}

/* Vertical connector line */
.proc-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #5A9620 0%, rgba(90,150,32,0.15) 100%);
}

.proc-step:last-child::before {
  display: none;
}

/* Number bubble */
.proc-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B2E6F, #0A6EBD);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11,46,111,0.3);
  position: relative;
  z-index: 1;
  margin-right: 24px;
  margin-top: 0;
}

.proc-body {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(11,46,111,0.08);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(11,46,111,0.06);
  transition: box-shadow 0.25s ease;
}

.proc-body:hover {
  box-shadow: 0 6px 24px rgba(11,46,111,0.12);
}

.proc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.proc-title {
  font-size: 17px;
  font-weight: 700;
  color: #0B2E6F;
  margin: 0;
  line-height: 1.3;
}

.proc-dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(90,150,32,0.1);
  color: #3d6815;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.proc-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.proc-output {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,46,111,0.05);
  border-left: 3px solid #0A6EBD;
  padding: 8px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: #0B2E6F;
  font-weight: 600;
}

.proc-output::before {
  content: '→';
  color: #0A6EBD;
  font-size: 14px;
}

@media (max-width: 576px) {
  .proc-step::before {
    left: 22px;
  }

  .proc-num {
    width: 46px;
    height: 46px;
    font-size: 13px;
    margin-right: 16px;
  }

  .proc-body {
    padding: 16px 16px;
  }

  .proc-title {
    font-size: 15px;
  }

  .proc-desc {
    font-size: 13px;
  }

  .proc-header {
    flex-direction: column;
    gap: 6px;
  }
}

/* ==============================================
   INDUSTRIES — NUMBER BADGE
   ============================================== */

.industry-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #5A9620;
  background: rgba(90,150,32,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.industry-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0B2E6F;
  margin-bottom: 6px;
}

.industry-subtitle {
  font-size: 15px;
  color: #5A9620;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 14px;
}

.industry-description {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

.industry-why {
  background: rgba(11,46,111,0.04);
  border-left: 3px solid #0A6EBD;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  margin-top: 16px;
}

.industry-why p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

/* ==============================================
   INDUSTRIES — REMOVE LEFT COLORED BORDER (mobile)
   ============================================== */

.industry-card,
.industry-ev,
.industry-aerospace,
.industry-power,
.industry-telecom,
.industry-electronics,
.industry-industrial {
  border-left: none !important;
}

/* ==============================================
   SOLUTIONS-ALL — REAL IMAGE IN solution-image-box
   ============================================== */

.solution-image-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.solution-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.solution-item:hover .solution-image-box img {
  transform: scale(1.03);
}

/* ==============================================
   PROJECTS — CASE STUDY REAL PHOTO BANNERS
   ============================================== */

.cs-banner-01 {
  background: linear-gradient(rgba(11,46,111,0.45), rgba(11,46,111,0.45)), url('../img/ev-and-automotive.png') center/cover no-repeat !important;
}

.cs-banner-02 {
  background: linear-gradient(rgba(20,50,10,0.45), rgba(90,150,32,0.45)), url('../img/automated-assembly.png') center/cover no-repeat !important;
}

.cs-banner-03 {
  background: linear-gradient(rgba(8,62,117,0.45), rgba(10,110,189,0.45)), url('../img/telecom-and-communications.png') center/cover no-repeat !important;
}

/* ==============================================
   CAREERS — TEAM PHOTO
   ============================================== */

.team-photo-placeholder {
  background-image: url('../img/working-4.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  color: white !important;
}

.team-photo-placeholder i,
.team-photo-placeholder span {
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* Careers team image */
.team-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 12px 36px rgba(11,46,111,0.12);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==============================================
   PROCESS PAGE — SECTION HEADER SPACING
   ============================================== */

.how-we-work .section-header {
  margin-bottom: 48px;
}

/* Mobile: reduce top gap, keep heading-to-steps spacing */
@media (max-width: 767px) {
  .how-we-work {
    padding: 28px 0 48px !important;
  }

  .how-we-work .section-header {
    margin-bottom: 32px !important;
  }
}

@media (max-width: 480px) {
  .how-we-work {
    padding: 20px 0 40px !important;
  }
}

/* ==============================================
   INDUSTRIES PAGE — ELIMINATE STACKED GAP ON MOBILE
   (section padding + card padding + gutter = ~150px gap)
   ============================================== */
@media (max-width: 767px) {
  .industry-card {
    padding: 32px 0 !important;
  }

  .industry-img-wrap {
    margin-top: 0 !important;
  }

  /* Remove image zoom on mobile */
  .industry-img-wrap img {
    transition: none;
  }
  
  .industry-card:hover .industry-img-wrap img {
    transform: none;
  }
}

/* ==============================================
   HEADER — WHITE BACKGROUND NAV TWEAKS
   ============================================== */

/* Desktop nav links: dark on white background, but keep active/hover white */
@media (min-width: 1200px) {
  .header .navmenu a,
  .header .navmenu a:focus {
    color: #0B2E6F;
  }

  .header .navmenu a.active,
  .header .navmenu a.active:focus,
  .header .navmenu li:hover > a {
    color: #ffffff !important;
  }

}

/* On transparent index hero, desktop nav links also stay dark */
body.index-page:not(.scrolled) .header .navmenu a,
body.index-page:not(.scrolled) .header .navmenu a:focus {
  color: #0B2E6F;
}

/* Scrolled state on non-index pages: active link stays visible on white header */
body.scrolled:not(.index-page) .header .navmenu a.active,
body.scrolled:not(.index-page) .header .navmenu li:hover > a {
  color: white  !important;
  background-color: #5A9620 !important;
}

/* Contact page: always keep Contact link active */
body.page-contact .header .navmenu a.active,
body.page-contact.scrolled .header .navmenu a.active {
  color: white !important;
  background-color: #5A9620 !important;
}

/*--------------------------------------------------------------
# Clients Slider Section
--------------------------------------------------------------*/
.clients {
  padding: 60px 0;
  overflow: hidden;
}

.clients .section-title {
  margin-bottom: 40px;
}

.clients-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}

.clients-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.client-logo {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-placeholder {
  width: 160px;
  height: 70px;
  background: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #bbb;
  transition: all 0.3s ease;
}

.client-logo-placeholder span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.client-logo-placeholder:hover {
  background: #d0d0d0;
  border-color: var(--accent-color);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .client-logo {
    width: 140px;
    height: 60px;
  }
  
  .client-logo-placeholder {
    width: 120px;
    height: 50px;
  }
  
  .client-logo-placeholder span {
    font-size: 10px;
  }
  
  .clients-track {
    gap: 20px;
  }
}

/* Project Card Styles */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.project-card .card-img img {
  transition: transform 0.3s ease;
}

.project-card:hover .card-img img {
  transform: scale(1.05);
}

/* Project Cards - Equal Height */
.projects-cards-section .project-card-new {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.projects-cards-section .project-card-new .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.projects-cards-section .project-card-new .card-tags {
  margin-top: auto;
}

/* Ensure card title and subtitle don't expand */
.projects-cards-section .card-title {
  min-height: 2.8em;
}

.projects-cards-section .card-subtitle {
  min-height: 1.5em;
}

/* Project Card Hover Effects */
.project-card-new {
  cursor: pointer;
}

.project-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.project-card-new:hover .card-img img {
  transform: scale(1.08);
}

.project-card-new .badge {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card-new .card-tags span {
  transition: all 0.2s ease;
}

.project-card-new:hover .card-tags span {
  background: #e8f0f8;
}

.project-card-new .card-tags span:hover {
  background: #003E6E !important;
  color: #fff !important;
}

.project-card .card-title {
  font-size: 18px;
  color: #0D1F30;
  line-height: 1.4;
}

.project-card .card-subtitle {
  font-size: 14px;
}

.project-card .card-tags span {
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-cards-section .project-card-new {
    height: auto;
  }
  
  .projects-cards-section .card-title {
    min-height: auto;
  }
}

/* Solution Tags Grid - Modern Creative Cards */
.solution-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 25px;
  text-align: center;
}

.solution-tag-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(0, 62, 110, 0.1);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #003E6E;
  box-shadow: 0 4px 15px rgba(0, 62, 110, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 56px;
  text-align: center;
}

.solution-tag-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #003E6E, #0A6EBD);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}



.solution-tag-item span,
.solution-tag-item i {
  position: relative;
  z-index: 1;
}

.solution-tag-item i {
  margin-right: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .solution-tags-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .solution-tag-item {
    padding: 14px 12px;
    font-size: 12px;
    min-height: 50px;
  }
}

@media (max-width: 480px) {
  .solution-tags-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* Project Cards - Equal Height */
.projects-cards-section .project-card-new {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.projects-cards-section .project-card-new .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.projects-cards-section .project-card-new .card-tags {
  margin-top: auto;
}

/* Ensure card title and subtitle don't expand */
.projects-cards-section .card-title {
  min-height: 2.8em;
}

.projects-cards-section .card-subtitle {
  min-height: 1.5em;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-cards-section .project-card-new {
    height: auto;
  }
  
  .projects-cards-section .card-title {
    min-height: auto;
  }
}

/* Contact Info Grid - Centered Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 25px rgba(0, 62, 110, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 62, 110, 0.08);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 62, 110, 0.18);
  border-color: rgba(0, 110, 189, 0.3);
}

.contact-info-card i {
  font-size: 36px;
  color: #0A6EBD;
  margin-bottom: 16px;
  display: block;
}

.contact-info-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #003E6E;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-card {
    padding: 25px 20px;
  }
}

/* About section hero image zoom on hover */
.about-hero-img-zoom {
  transition: transform 0.5s ease;
}

.about-hero-img-zoom:hover {
  transform: scale(1.08);
}
