@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
:root {
  /* fonts & weights */
  --default-font: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Use Lato for titles until custom font is available */
  --title-font: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  --default-weight: 400;
  --title-weight: 700;
  /* palette - enhanced with richer greens */
  --background-color: #e8ecf1;
  --surface-color: #ffffff;
  --surface-alt: #f3f4f7;
  --default-color: #1a1a2e;
  --text-color: #2d2d44;
  --text-muted: #6b7280;
  --accent-color: #22c55e;
  --accent-dark: #16a34a;
  --accent-light: #86efac;
  --contrast-color: #ffffff;
  --border-color: #cdd2da;
  /* gradients */
  --gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-accent-hover: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  --gradient-hero: linear-gradient(135deg, rgba(22, 163, 74, 0.9) 0%, rgba(21, 128, 61, 0.85) 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  /* shadows - layered for depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.06), 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1), 0 30px 60px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 25px rgba(34, 197, 94, 0.25);
  --shadow-accent-lg: 0 15px 35px rgba(34, 197, 94, 0.3);
  /* layout tokens */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --gap: 1rem;
  --fs-base: 1rem;
  --fs-h1: clamp(1.6rem, 3.6vw, 3.5rem);
  --fs-h2: clamp(1.25rem, 3.0vw, 2.25rem);
  --fs-body: clamp(0.95rem, 1.6vw, 1.0625rem);
  /* transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  scroll-behavior: smooth;
}

.dark {
  --background-color: #0f0f1a;
  --surface-color: #1a1a2e;
  --surface-alt: #151528;
  --default-color: #f1f5f9;
  --text-color: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-color: #4ade80;
  --accent-dark: #22c55e;
  --accent-light: #bbf7d0;
  --contrast-color: #1e1e32;
  --border-color: #2d2d44;
  --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  --gradient-accent-hover: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 25px rgba(74, 222, 128, 0.2);
}

.cert-card {
  background-color: var(--surface-color);
  transition: var(--transition-base);
}

body {
  font-family: var(--default-font);
  font-weight: var(--default-weight);
  line-height: 1.7;
  font-size: var(--fs-body);
  background-color: var(--background-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  font-weight: var(--title-weight);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: var(--text-color);
}

/* Accent text color utility */
.green, .accent-text {
  color: var(--accent-color) !important;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a:hover:not(.contact-us-button):not(.offer-button):not(.btn):not(.btn-accent):not(.btn-outline) {
  color: var(--accent-dark);
}

/* Modern button base class */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  font-weight: var(--title-weight);
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent-hover);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent-lg);
  color: var(--contrast-color);
}

.btn-accent:hover::before {
  opacity: 1;
}

.btn-accent span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-color);
  font-weight: var(--title-weight);
  font-size: 1rem;
  border: 2px solid var(--accent-color);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* Selection highlight */
::selection {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Anchor utilities */


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--surface-color);
  color: var(--default-color);
  z-index: 997;
  width: 100%;
  transition: all var(--transition-base);
}

/* Use the container as the layout grid (Bootstrap-like) */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 16px 0;
  box-sizing: border-box;
}

/* Logo group (image + text) */
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header .logo img {
  display: block;
  max-height: clamp(40px, 6vw, 60px);
  width: auto;
  transition: transform var(--transition-fast);
}

.header .logo:hover img {
  transform: scale(1.05);
}

.header .logo h1 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: var(--title-weight);
  color: var(--default-color);
}

.header .logo span {
  font-size: 1.25rem;
  padding-left: 1px;
  font-family: var(--default-font);
  color: var(--default-color);
}

/* Controls group: theme / language / nav-toggle */
.header .controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Generic button style (theme / lang) with accessible hit target */
.theme-btn,
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-weight: var(--title-weight);
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* Hover / active states */
.theme-btn:hover,
.lang-btn:hover {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.theme-btn.active,
.lang-btn.active {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
}

.theme-btn.inactive,
.lang-btn.inactive {
  opacity: 0.6;
}

/* Mobile nav toggle (ensure visible and tappable) */
.mobile-nav-toggle {
  font-size: 1.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--default-color);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
  background: rgba(34, 197, 94, 0.1);
}

/* Scrolled state */
.scrolled .header {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-lg);
}

.scrolled .header .container {
  padding: 12px 0;
}

/* navmenu: mobile-friendly scroll area */
@media (max-width: 1199px) {
  .navmenu ul {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* Compact header for small screens */
@media (max-width: 767px) {
  .header .container {
    padding: 18px 0;
  }
  .header .logo h1, .header .logo span {
    font-size: 1.125rem;
  }
  /* Show nav toggle by default on narrow screens (if using one) */
  .mobile-nav-toggle {
    font-size: 2rem;
  }
  /* reduce gap so controls fit */
  .header .controls {
    gap: 0.5rem;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 16px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--text-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--default-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -6px;
    left: 0;
    background: var(--gradient-accent);
    visibility: hidden;
    width: 0px;
    border-radius: 2px;
    transition: all var(--transition-base);
  }
  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
  }
  .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: 4px;
    background-color: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: var(--default-weight);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
  }
  .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: 4px;
    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(--accent-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--background-color);
    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);
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--gradient-dark);
  color: #e2e8f0;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

/* Decorative accent line at top */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 2;
}

/* Background pattern */
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 30%);
  z-index: 0;
  pointer-events: none;
}

/* constrain footer content and lift it above overlay */
.footer .container {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* top area */
.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: none;
}

/* about block */
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  display: inline-block;
}

.footer .footer-about .logo img {
  max-height: 80px;
  width: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 0;
  filter: brightness(1.1);
}

.footer img {
  max-height: 70px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  filter: brightness(1.1);
}

/*--------------------------------------------------------------
# Sticky EU Support Banner (fixed to bottom of viewport)
--------------------------------------------------------------*/
.eu-support-banner {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  background: var(--surface-color);
  min-height: 64px;
  padding: 6px 36px 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.eu-support-banner.hidden {
  transform: translateX(calc(100% + 20px));
  opacity: 0;
  pointer-events: none;
}

.eu-support-banner-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.eu-support-banner-img {
  height: 56px;
  min-height: 56px;
  width: auto;
  object-fit: contain;
}

.eu-support-banner-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.eu-support-banner-close:hover,
.eu-support-banner-close:focus {
  color: var(--heading-color);
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.eu-support-banner-close:focus-visible {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

/* On small screens keep banner compact */
@media (max-width: 575px) {
  .eu-support-banner {
    right: 8px;
    bottom: 8px;
    min-height: 56px;
    padding: 4px 32px 4px 6px;
  }
  .eu-support-banner-img {
    height: 48px;
    min-height: 48px;
  }
  .scroll-top {
    bottom: 74px;
  }
}

/* text/logo */
.footer .footer-about .logo span {
  color: #ffffff;
  font-family: var(--default-font);
  font-size: 28px;
  font-weight: var(--title-weight);
  letter-spacing: 1px;
}

.footer .footer-about {
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* Section headings */
.footer h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: var(--title-weight);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Contact info styling */
.footer .footer-contact address {
  font-style: normal;
  margin: 0;
}

.footer .footer-contact address p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #cbd5e1;
}

.footer .footer-contact address i {
  color: var(--accent-light);
  margin-right: 12px;
  font-size: 1rem;
}

.footer .footer-contact address a {
  color: #cbd5e1;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer .footer-contact address a:hover {
  color: var(--accent-light);
}

/* list styling */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li {
  padding: 2px 0;
}

.footer ul a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
  transition: color var(--transition-fast), transform var(--transition-fast), padding var(--transition-fast);
}

.footer ul a:hover {
  color: var(--accent-light);
  padding-left: 8px;
}

.footer ul a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer ul a:hover::before {
  opacity: 1;
}

/* small icon in lists */
.footer ul i {
  padding-right: 2px;
  line-height: 0;
}

/* social links */
.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  text-decoration: none;
}

/* hover & focus for accessibility */
.footer .social-links a:hover,
.footer .social-links a:focus {
  color: #ffffff;
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  outline: none;
}

/* visible keyboard focus */
.footer .social-links a:focus-visible {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

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

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

/* copyright */
.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #94a3b8;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
  color: #64748b;
}

/* RESPONSIVE: improve layout on narrower viewports */
@media (max-width: 991px) {
  .footer .footer-top {
    padding-top: 40px;
  }
  .footer .row {
    gap: 2rem;
  }
  .footer h4 {
    margin-bottom: 12px;
  }
}
/* small phones: reduce paddings and font-size slightly */
@media (max-width: 575px) {
  .footer {
    font-size: 14px;
  }
  .footer .footer-top {
    padding-top: 30px;
  }
  .footer .copyright {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .footer img {
    max-height: 48px;
  }
}
/*--------------------------------------------------------------
# Fleet / Machinery Section
--------------------------------------------------------------*/
.fleet {
  padding: 60px 0;
}

.fleet .section-title h2 {
  font-size: 2rem;
  font-weight: var(--title-weight);
}

.fleet-img-group img {
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fleet-img-group img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fleet-text h3 {
  font-size: 1.35rem;
  font-weight: var(--title-weight);
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.fleet-text p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .fleet .row {
    margin-bottom: 2rem !important;
  }
  .fleet-text {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .fleet-img-group.d-flex {
    flex-direction: column;
  }
  .fleet-img-group.d-flex img {
    width: 100% !important;
  }
  .fleet-img-group img {
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .stats-counter,
  .stats.section {
    padding: 40px 0;
  }
  .stats-counter .stats-item,
  .stats.section .stats-item {
    padding: 24px 20px;
  }
}

/*--------------------------------------------------------------
# Fleet Teaser Section (homepage)
--------------------------------------------------------------*/
.fleet-teaser {
  padding: 60px 0;
}

.fleet-teaser img {
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fleet-teaser img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .fleet-teaser {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 90px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 80px 0;
  text-align: center;
  position: relative;
  /* center & constrain content */
  /* Modern gradient overlay */
}
.page-title .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.75) 0%, rgba(15, 15, 26, 0.5) 50%, rgba(15, 15, 26, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-title h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: var(--title-weight);
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  hyphens: auto;
  letter-spacing: -0.02em;
}
.page-title .breadcrumbs {
  z-index: 2;
  margin-top: 1.5rem;
}
.page-title .breadcrumbs ol {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 10px 20px;
  list-style: none;
  margin: 0;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.page-title .breadcrumbs ol li {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.page-title .breadcrumbs ol li a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.page-title .breadcrumbs ol li a:hover {
  color: #ffffff;
}
.page-title .breadcrumbs ol li + li {
  margin-left: 12px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments — OUTSIDE the selector scope to compile correctly */
@media (max-width: 991px) {
  .page-title {
    padding: 80px 10px 40px;
  }
  .page-title h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 0.5rem;
  }
  .page-title .breadcrumbs {
    margin-top: 1rem;
  }
  .page-title .breadcrumbs ol {
    display: block; /* stack on smaller screens */
    padding: 6px 10px;
    text-align: center;
  }
  .page-title .breadcrumbs ol li {
    display: inline-block;
    margin-right: 0.5rem;
  }
}
/* Extra small phones — tighten spacing */
@media (max-width: 575px) {
  .page-title {
    padding: 64px 8px 28px;
  }
  .page-title h1 {
    font-size: clamp(1.25rem, 7.5vw, 1.8rem);
  }
  .page-title .breadcrumbs ol {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
}
.hero {
  position: relative;
  width: 100%;
  /* fluid min-height — large but capped to avoid overflow */
  min-height: 85vh;
  overflow: hidden;
  background-image: url("/assets/img/background/background_solar.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

/* Modern gradient overlay for depth and contrast */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.65) 0%, rgba(15, 15, 26, 0.4) 50%, rgba(15, 15, 26, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle animated shimmer */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
/* container holds content; allow interaction for children */
.hero .info .container {
  position: relative; /* relative so children can be absolutely positioned if needed */
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* heading: fluid, wraps, accessible contrast */
.hero .info h1 {
  margin: 0;
  font-family: var(--title-font);
  font-weight: var(--title-weight);
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
  /* fluid scale — desktop large, mobile reasonable */
  font-size: clamp(2.25rem, 8vw, 5rem);
  max-width: 95%;
  word-break: break-word;
  hyphens: auto;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

/* Hero subtitle */
.hero .hero-subtitle {
  margin: 0.5rem 0 0;
  font-family: var(--default-font);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* CTA button — centered, fluid, accessible hit area */
.hero .contact-us-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 16px 48px;
  border-radius: var(--radius);
  background: var(--gradient-accent);
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: var(--title-weight);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.5px;
  border: none;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: var(--shadow-accent-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero .contact-us-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent-hover);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hero .contact-us-button span {
  position: relative;
  z-index: 1;
}

/* hover state */
.hero .contact-us-button:hover,
.hero .contact-us-button:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.4);
  outline: none;
  color: #ffffff !important;
}
.hero .contact-us-button:hover, .hero .contact-us-button:hover *,
.hero .contact-us-button:focus,
.hero .contact-us-button:focus * {
  color: #ffffff !important;
}

.hero .contact-us-button:hover::before {
  opacity: 1;
}

.hero .contact-us-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4), var(--shadow-accent-lg);
}

/* Desktop fine-tuning: allow a more dramatic vertical layout */
@media (min-width: 1200px) {
  .hero .info .container {
    padding: 4rem 2rem;
  }
  .hero .info { /* allow optional absolute centering if you still prefer it on very large screens */
    display: block;
  }
}
/* Tablet and below — stack, reduce font sizes and spacing */
@media (max-width: 991px) {
  .hero {
    align-items: center;
    padding: 2rem 0;
  }
  .hero .info .container {
    padding: 2rem 1.25rem;
    text-align: center;
  }
  .hero .info h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.6rem);
    margin-bottom: 0.5rem;
  }
  .hero .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 1.5px;
  }
  .hero .contact-us-button {
    width: min(320px, 90%);
    padding: 12px 20px;
    font-size: 1rem;
  }
}
/* Small phones */
@media (max-width: 575px) {
  .hero {
    min-height: 55vh;
  }
  .hero .info .container {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .hero .info h1 {
    font-size: clamp(1.4rem, 7.5vw, 1.9rem);
  }
  .hero .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .hero .contact-us-button {
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  height: 100%;
  box-sizing: border-box;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* Accent gradient bar at top */
.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

/* Icon container */
.services .service-item .icon {
  width: 64px;
  height: 64px;
  position: relative;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
  border-radius: var(--radius);
  box-sizing: border-box;
  overflow: visible;
}

/* Primary icon */
.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
  transition: color var(--transition-fast), transform var(--transition-base);
}

/* Title */
.services .service-item h3 {
  color: var(--default-color);
  font-weight: var(--title-weight);
  margin: 0 0 16px 0;
  padding-bottom: 0;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  position: relative;
  display: block;
  border-bottom: none;
  transition: color var(--transition-fast);
  letter-spacing: -0.01em;
}

/* Copy */
.services .service-item p {
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Read-more link */
.services .service-item .readmore {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 600;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.services .service-item .readmore i {
  transition: transform var(--transition-fast);
}

/* Hover / focus states — make hover meaningful */
.services .service-item:hover,
.services .service-item:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.services .service-item:hover::before,
.services .service-item:focus-within::before {
  transform: scaleX(1);
}

.services .service-item:hover .icon i,
.services .service-item:focus-within .icon i {
  color: var(--accent-dark);
  transform: scale(1.1);
}

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

.services .service-item:hover .readmore,
.services .service-item:focus-within .readmore {
  color: var(--accent-dark);
}

.services .service-item:hover .readmore i,
.services .service-item:focus-within .readmore i {
  transform: translateX(4px);
}

/* Keyboard-visible focus for internal interactive elements */
.services .service-item a:focus-visible,
.services .service-item button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .services .service-item {
    padding: 20px;
  }
  .services .service-item .icon {
    margin-bottom: 24px;
  }
  .services .service-item .icon i {
    font-size: 40px;
  }
  .services .service-item h3 {
    font-size: 1.125rem;
  }
  .services .service-item p {
    font-size: 0.94rem;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Service Pillars (Index Page)
--------------------------------------------------------------*/
.service-pillar {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.service-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-pillar .icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.15));
  border-radius: 50%;
}

.service-pillar .icon-large i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-pillar h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 0.75rem;
}

.service-pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-pillar .pillar-stats .badge {
  font-size: 0.8rem;
  padding: 0.5em 1em;
  font-weight: 500;
}

.bg-success-subtle {
  background-color: rgba(34, 197, 94, 0.1) !important;
}

.text-success {
  color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Featured Projects (Index Page)
--------------------------------------------------------------*/
.featured-project-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.featured-project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-project-card .project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.featured-project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-project-card:hover .project-image img {
  transform: scale(1.05);
}

.featured-project-card .project-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.featured-project-card .project-type {
  background: var(--gradient-accent);
  color: white;
  padding: 0.35em 0.85em;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-project-card .project-details {
  background: var(--surface-color);
}

.featured-project-card .project-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--default-color);
}

.featured-project-card .project-capacity {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

.cta.section {
  background: var(--gradient-accent);
}

.cta .cta-content {
  color: white;
}

.cta .cta-content h2 {
  color: white;
  font-size: var(--fs-h2);
  font-weight: 700;
}

.cta .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .contact-us-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 40px;
  background-color: #ffffff;
  color: var(--accent-dark) !important;
  font-family: var(--default-font);
  font-weight: var(--title-weight);
  font-size: 1.125rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
}

.cta .contact-us-button:hover,
.cta .contact-us-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #f8fafc;
  color: var(--accent-color) !important;
}

.dark .cta .contact-us-button,
[data-bs-theme="dark"] .cta .contact-us-button {
  background-color: var(--surface-color) !important;
  color: var(--accent-color) !important;
}

.dark .cta .contact-us-button:hover,
[data-bs-theme="dark"] .cta .contact-us-button:hover,
.dark .cta .contact-us-button:focus,
[data-bs-theme="dark"] .cta .contact-us-button:focus {
  background-color: color-mix(in srgb, var(--surface-color), white 10%) !important;
  color: #ffffff !important;
}

@media (max-width: 575px) {
  .cta .contact-us-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/
.section-header h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.section-header .lead {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  aspect-ratio: 1/1;
  min-height: 300px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.alt-services h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: var(--title-weight);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: var(--title-weight);
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: var(--default-color);
}

.alt-services .icon-box h4 a:hover {
  color: var(--accent-color);
}

.alt-services .icon-box p {
  color: var(--default-color);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.alt-services p,
.alt-services-2 p {
  font-size: 1rem;
  line-height: 1.6;
}

.alt-services h3,
.alt-services-2 h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

.alt-services p {
  margin-bottom: 1.25rem;
}

.icon-box {
  margin-top: 2rem;
}

.alt-services p,
.alt-services-2 p {
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .alt-services p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .alt-services p {
    font-size: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--default-color);
  padding: 15px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.features .nav-link h4 {
  font-size: 18px;
  font-weight: var(--title-weight);
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.features .tab-pane h3 {
  color: var(--default-color);
  font-weight: var(--title-weight);
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.features .tab-pane ul li {
  padding-top: 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;
}

/*--------------------------------------------------------------
# Projects Section — consolidated and responsive
--------------------------------------------------------------*/
.projects {
  /* Operations info card - shown only when operations filter is active */
  /* Filters */
  /* Accessibility: focus state for filter items */
  /* Grid / Row */
  /* Card container */
  /* Image */
  /* Make whole card clickable (ensure markup uses an anchor wrapping the card content) */
  /* Info overlay */
  /* Action controls: center container to avoid conflicting absolute offsets */
  /* visible focus ring */
  /* Details icon — larger and centered if used */
  /* More button */
  /* Responsive tweaks */
  /* Operations Card Style */
}
.projects .operations-info-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  /* display is controlled by JavaScript */
}
.projects .operations-info-card h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}
.projects .operations-info-card p {
  color: var(--default-color);
}
.projects .operations-info-card h4 {
  color: var(--heading-color);
}
.projects .operations-info-card ul li {
  color: var(--default-color);
}
.projects .portfolio-filters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.projects .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  border-radius: var(--radius);
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-base);
}
.projects .portfolio-filters li:focus,
.projects .portfolio-filters li:focus-visible,
.projects .portfolio-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  outline: none;
}
.projects .portfolio-filters li.filter-active {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}
.projects .row.gy-4 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  row-gap: 2rem;
  column-gap: 0;
}
.projects .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-color);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  margin: 0;
  box-sizing: border-box;
  flex: 1 1 calc(100% - 2rem);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: none;
  outline: none;
}
.projects .portfolio-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.projects .portfolio-content img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--transition-slow), opacity var(--transition-base);
  display: block;
}
.projects .portfolio-content:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.projects .portfolio-content > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.projects .portfolio-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.95) 0%, rgba(15, 15, 26, 0.6) 40%, transparent 70%);
  z-index: 2;
  transition: all var(--transition-base);
}
.projects .portfolio-content:hover .portfolio-info {
  padding-bottom: 32px;
}
.projects .portfolio-info h4,
.projects .portfolio-info p {
  margin: 0 0 8px;
  color: #ffffff;
  background: transparent;
}
.projects .portfolio-info h4 {
  font-size: 1.25rem;
  font-weight: var(--title-weight);
  transition: color var(--transition-fast);
}
.projects .portfolio-content:hover .portfolio-info h4 {
  color: var(--accent-light);
}
.projects .portfolio-info p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.projects .portfolio-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* let inner buttons receive clicks */
  z-index: 3;
}
.projects .portfolio-actions .action {
  pointer-events: auto; /* enable clicking */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--background-color);
  font-size: 1.35rem;
  margin: 0 6px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}
.projects .portfolio-actions .action:hover,
.projects .portfolio-actions .action:focus {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-color);
  transform: translateY(-2px);
  outline: none;
}
.projects .portfolio-actions .action:focus-visible {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}
.projects .portfolio-info .details-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.125rem;
  line-height: 1;
  color: var(--background-color);
  z-index: 3;
}
@media (max-width: 991px) {
  .projects .portfolio-filters {
    white-space: nowrap;
    padding-bottom: 6px;
  }
  .projects .portfolio-content {
    flex: 1 1 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    min-height: 250px;
  }
  .projects .portfolio-info {
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 22%, rgba(0, 0, 0, 0) 85%);
  }
  .projects .portfolio-actions .action {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .projects .portfolio-content {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 416px;
  }
}
.projects .portfolio-content.operations-card {
  background: var(--gradient-dark);
  aspect-ratio: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects .portfolio-content.operations-card:hover {
  transform: translateY(-8px);
}
.projects .operations-info {
  padding: 24px;
  color: #ffffff;
}
.projects .operations-info h4 {
  font-size: 1.125rem;
  font-weight: var(--title-weight);
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.projects .operations-info h4 i {
  color: var(--accent-color);
}
.projects .operations-info p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.projects .operations-info .clients-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.projects .operations-info .key-projects {
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.projects .operations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.projects .operations-list li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.projects .operations-list li:last-child {
  color: var(--accent-light);
  font-style: italic;
  background: transparent;
}
.projects .portfolio-info .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: var(--radius);
}

/* Project Detail Modal – always dark regardless of theme */
.project-detail-modal .modal-content {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  color: #f1f5f9;
}
.project-detail-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
}
.project-detail-modal .modal-header .modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}
.project-detail-modal .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.6;
}
.project-detail-modal .modal-header .btn-close:hover {
  opacity: 1;
}
.project-detail-modal .modal-body {
  padding: 0;
}
.project-detail-modal .project-modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.project-detail-modal .project-modal-details {
  padding: 1.5rem;
}
.project-detail-modal .project-modal-details .detail-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.project-detail-modal .project-modal-details .detail-row i {
  color: var(--accent-color, #4caf50);
  margin-right: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1rem;
}
.project-detail-modal .project-modal-details .detail-row .detail-label {
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  min-width: 100px;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.project-detail-modal .project-modal-details .detail-row .detail-value {
  color: #fff;
}
.projects .portfolio-content {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  background: var(--default-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: var(--title-weight);
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: var(--default-color);
  font-size: 20px;
  font-weight: var(--title-weight);
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: var(--title-weight);
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About Section — consolidated, responsive, and robust
--------------------------------------------------------------*/
.about {
  /* Our Story row - use CSS Grid for proper alignment */
  /* Titles */
  /* Main story card - fill available height */
  /* H4 / H3 / paragraphs */
  /* List items */
  /* About image block */
  /* Benchmarks (kept centered but avoid brittle offsets on small devices) */
  /* Contact CTA within about */
  /* Large screens */
  /* Tablet / small-desktop and below: stack vertically */
  /* Reset bench offsets for mid screens (defensive) */
  /* extra small phones: tighten spacing */
}
.about .row.gy-4:first-child {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  /* Reset Bootstrap's flex and gap */
  flex-wrap: unset;
  --bs-gutter-y: 0;
  /* Override Bootstrap col classes inside grid */
  /* Wrap title and card together */
}
.about .row.gy-4:first-child > [class*=col-] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
.about .row.gy-4:first-child > .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
}
.about .inner-title {
  font-size: clamp(1.5rem, 2.2vw + 1rem, 2.75rem);
  font-weight: var(--title-weight);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}
.about .our-story {
  padding: 48px;
  background-color: var(--surface-color);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .our-story h4 {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about .our-story h3 {
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2.25rem);
  font-weight: var(--title-weight);
  margin: 0 0 24px 0;
  color: var(--default-color);
  letter-spacing: -0.02em;
}
.about .our-story p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about .our-story p:last-child {
  margin-bottom: 0;
}
.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: var(--text-color);
  margin: 0;
}
.about ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.about ul i {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  line-height: 1.2;
  color: var(--accent-color);
}
.about .about-img {
  min-height: 365px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
}
.about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}
.about .benchmarks-1,
.about .benchmarks-2 {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: var(--radius-lg);
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.about .benchmarks-1 h4,
.about .benchmarks-2 h4 {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 2px;
}
.about .benchmarks-1 p,
.about .benchmarks-2 p {
  color: var(--text-muted);
  margin: 0;
}
.about .contact-us-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0 0;
  position: static;
  transform: none;
  padding: 16px 40px;
  border-radius: var(--radius);
  background: var(--gradient-accent);
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: var(--title-weight);
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  border: none;
  pointer-events: auto;
  box-sizing: border-box;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-base);
}
.about .contact-us-button:hover,
.about .contact-us-button:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent-lg);
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .about {
    /* keep benchmarks readable on large screens */
  }
  .about .row.gy-4:first-child {
    grid-template-columns: 1fr 1fr;
  }
  .about .benchmarks-1, .about .benchmarks-2 {
    width: 80vw;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .about .row.gy-4:first-child {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about .about-img {
    min-height: 300px;
    order: -1; /* Image first on mobile */
  }
  .about .our-story {
    padding: 32px;
  }
  .about .inner-title {
    font-size: clamp(1.25rem, 5vw, 2.25rem);
    margin-bottom: 1rem;
  }
  .about .contact-us-button {
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .about .benchmarks-1, .about .benchmarks-2 {
    left: auto;
    right: auto;
    margin-left: 0;
    width: 100%;
    position: static;
    max-width: none;
  }
}
@media (max-width: 575px) {
  .about .our-story {
    padding: 20px;
  }
  .about .benchmarks-1, .about .benchmarks-2 {
    padding: 20px;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter,
.stats.section {
  background: var(--surface-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-counter::before,
.stats.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-counter .stats-item,
.stats.section .stats-item {
  box-shadow: var(--shadow-md);
  padding: 40px 30px;
  background: var(--background-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
}

.stats-counter .stats-item:hover,
.stats.section .stats-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.stats-counter .stats-item i,
.stats.section .stats-item i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.stats-counter .stats-item .stats-number,
.stats.section .stats-item .stats-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.stats-counter .stats-item span.purecounter,
.stats-counter .stats-item span.purecounter-static,
.stats.section .stats-item span.purecounter,
.stats.section .stats-item span.purecounter-static {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  display: inline;
  font-weight: var(--title-weight);
  line-height: 1.1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-counter .stats-item .stats-unit,
.stats.section .stats-item .stats-unit {
  font-size: clamp(1.5rem, 3vw, 2rem);
  display: inline;
  font-weight: var(--title-weight);
  line-height: 1.1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 0.15rem;
}

.stats-counter .stats-item p,
.stats.section .stats-item p {
  padding: 0;
  margin: 10px 0 0;
  font-family: var(--default-font);
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section title inside stats-counter */
.stats-counter .section-title h2,
.stats.section .section-title h2 {
  color: var(--default-color);
}

.stats-counter .section-title p,
.stats.section .section-title p {
  color: var(--text-muted);
}

/* Color utility classes for stats icons */
.color-blue {
  color: #3b82f6 !important;
}

.color-orange {
  color: #f97316 !important;
}

.color-green {
  color: #22c55e !important;
}

.color-yellow {
  color: #eab308 !important;
}

.color-pink {
  color: #ec4899 !important;
}

.color-red {
  color: #ef4444 !important;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-sizing: border-box;
  text-align: center;
}

/* Image wrapper: responsive outer margin that shrinks on small screens */
.team .member .member-img {
  margin: 0 clamp(12px, 5vw, 60px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  max-width: 100%;
  box-shadow: var(--shadow-lg);
}

/* Ensure image fits container */
.team .member .member-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

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

/* Social overlay — use opacity + transform + pointer-events for smooth transitions */
.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 26, 0.9) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

/* Social links */
.team .member .member-img .social a {
  color: #ffffff;
  font-size: 18px;
  margin: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  transform: translateY(20px);
}

/* Hover and keyboard / focus reveal: allow both mouse and keyboard users to see overlay */
.team .member:hover .member-img .social,
.team .member:focus-within .member-img .social {
  opacity: 1;
  pointer-events: auto;
}

.team .member:hover .member-img .social a,
.team .member:focus-within .member-img .social a {
  transform: translateY(0);
}

/* Visual feedback for social buttons */
.team .member .member-img .social a:hover,
.team .member .member-img .social a:focus {
  color: #ffffff;
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  outline: none;
}

/* Visible focus ring for keyboard users */
.team .member .member-img .social a:focus-visible {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
}

/* Member info */
.team .member .member-info {
  margin-top: 24px;
}

.team .member .member-info h4 {
  font-weight: var(--title-weight);
  margin-bottom: 4px;
  font-size: 1.25rem;
  color: var(--default-color);
}

.team .member .member-info span {
  font-style: normal;
  display: block;
  font-size: 0.9375rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .team .member .member-img {
    margin: 0 auto;
    width: 90%;
  }
  .team .member .member-img .social {
    padding-bottom: 8px;
  }
  .team .member .member-info {
    margin-top: 18px;
  }
}
/* Defensive: avoid overlay causing horizontal scroll on very narrow screens */
@media (max-width: 575px) {
  .team .member .member-img {
    margin-left: 8px;
    margin-right: 8px;
    width: calc(100% - 16px);
  }
}
/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper-wrapper {
  height: auto;
}

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

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

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

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: var(--title-weight);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: var(--default-weight);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: var(--title-weight);
  margin-bottom: 20px;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-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;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 4px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: var(--title-weight);
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 36px 24px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.contact .info-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.contact .info-item:hover i {
  background: var(--gradient-accent);
  color: #ffffff;
  transform: scale(1.1);
}

.contact .info-item h3 {
  font-size: 1.125rem;
  font-weight: var(--title-weight);
  margin: 0 0 8px 0;
  color: var(--default-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact .info-item a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.contact .info-item a:hover {
  color: var(--accent-color);
}

.contact .section-title {
  text-align: center;
  padding-bottom: 5px;
  position: relative;
}

.contact .section-title h2 {
  font-size: 32px;
  font-weight: var(--title-weight);
  position: relative;
  margin-top: 0px;
}

.contact .section-title h2:before,
.contact .section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.contact .section-title h2:before {
  margin: 0 15px 10px 0;
}

.contact .section-title h2:after {
  margin: 0 0 10px 15px;
}

.contact iframe {
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.contact .offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  padding: 12px 40px;
  min-height: calc(2.8em + 24px);
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: var(--title-weight);
  font-size: 20px;
  letter-spacing: 1px;
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  margin: 10px 0 37px;
}

.contact .offer-button:hover,
.contact .offer-button:focus {
  filter: brightness(0.9);
  border-color: var(--accent-color);
  color: var(--contrast-color) !important;
}

html[lang=hu] .contact .offer-button {
  font-size: 22px !important;
  line-height: 1.2 !important;
  padding: 12px 32px !important;
  min-height: calc(2.4em + 32px) !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 10px 0 37px !important;
}


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

/* Alternate section backgrounds */
section:nth-of-type(even),
.section-alt {
  background-color: var(--surface-alt);
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
    padding: 60px 0;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--title-weight);
  position: relative;
  display: inline-block;
  color: var(--default-color);
  letter-spacing: -0.02em;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  display: inline-block;
  border-radius: 2px;
}

.section-title h2:before {
  margin: 0 20px 8px 0;
}

.section-title h2:after {
  margin: 0 0 8px 20px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

/* images responsive baseline */
img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 575px) {
  .contact .offer-button,
  .hero .contact-us-button,
  .about .contact-us-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  html[lang=hu] .contact .offer-button {
    font-size: 1rem !important;
    padding: 12px 16px !important;
  }
}
h1, h2, h3, h4, h5, h6, p, a, span, li {
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Force white text on CTA buttons */
.hero .contact-us-button,
.about .contact-us-button,
:is(.hero, .about) .contact-us-button:is(:link, :visited, :hover, :focus, :active),
:is(body.dark, [data-bs-theme=dark]) :is(.hero, .about) .contact-us-button,
:is(body.dark, [data-bs-theme=dark]) :is(.hero, .about) .contact-us-button:is(:link, :visited, :hover, :focus, :active) {
  color: #ffffff !important;
}

/* ----------------------------------------------------------------
   Print Styles
---------------------------------------------------------------- */
@media print {
  header, footer, .scroll-top, .eu-support-banner,
  .mobile-nav-toggle, .preloader {
    display: none !important;
  }
  body {
    color: #000 !important;
    background: #fff !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  .hero {
    min-height: auto !important;
    padding: 2rem 0 !important;
  }
  section {
    page-break-inside: avoid;
  }
}

