/* =============================================
   CROSS SURVEY – Styles
   ============================================= */

/* =============================================
   PAGE PRELOADER
   ============================================= */
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: preloader-pop 0.5s ease forwards;
}

@keyframes preloader-pop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.preloader-logo img {
  display: block;
  filter: drop-shadow(0 4px 20px rgba(222, 32, 39, 0.4));
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  gap: 5px;
}

.preloader-name {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: 700;
  color: #DE2027;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.preloader-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
}

.preloader-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #5d85ff;
  /* Vibrant blue for high contrast and readability on dark background */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
}

/* Responsive Preloader Text */
@media (max-width: 768px) {
  .preloader-name {
    font-size: 28px;
  }

  .preloader-sub {
    font-size: 14px;
  }

  .preloader-tagline {
    font-size: 9px;
  }
}

@media (max-width: 575px) {
  .preloader-name {
    font-size: 22px;
  }

  .preloader-sub {
    font-size: 11px;
  }

  .preloader-tagline {
    font-size: 7.5px;
  }
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 6px;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: #DE2027;
  border-radius: 99px;
  animation: preloader-fill 1.4s ease forwards;
}

@keyframes preloader-fill {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay helpers */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #f0f0f0;
  overflow-x: hidden;
  width: 100%;
}

.page-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* =============================================
   SITE HEADER LAYOUT
   ============================================= */
.site-header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.header-top-wrapper {
  background: #ffffff;
  width: 100%;
}

.header-inner {
  width: 100%;
}

/* Row 1: Logo & Contact Details */
.header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 48px 24px;
  /* Increased vertical padding to give more breathing room from the top edge */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  /* Increased minimum gap between logo and contact-info block */
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 1;
  /* Allow logo to compress on smaller screens */
  min-width: 0;
  /* Needed for flex-shrink to work on children */
}

.logo__icon {
  display: flex;
  align-items: center;
}

.logo img,
.logo__icon img {
  height: 76px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.logo__name {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 32px;
  font-weight: 700;
  color: #DE2027;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.logo__subname {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
}

.logo__tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0020A2;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
}

/* CONTACT INFO (DESKTOP) */
.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Reduced gap between contact info items for a more compact layout */
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon--dark {
  background: #1e1e1e;
}

.contact-info__icon--yellow {
  background: #DE2027;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info__text strong {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.contact-info__text span {
  font-size: 13px;
  color: #444444 !important;
  font-weight: 400;
  text-decoration: none;
}

.contact-info__text a {
  font-size: 13px;
  color: #444444 !important;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

/* CONTACT ICONS - Always visible on mobile/tablet */
.header-contact-icons {
  display: none;
  /* shown via media queries below */
}

/* Row 2: Navigation Overlay Wrapper */
.navbar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 100;
  margin-top: -30px;
  /* Shifts the navbar up so its middle is centered on the top edge */
  margin-bottom: -30px;
  /* Pulls the hero section up accordingly */
}

.header-nav-row {
  background: #DE2027;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.header-nav-row-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
}

/* NAVIGATION LINKS DROPDOWN (HORIZONTAL BASE FOR DESKTOP) */
.nav-links {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-links__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  font-family: 'Barlow', sans-serif;
}

.nav-links__link:hover {
  color: #ffffff;
  opacity: 0.8;
}

.nav-links__item--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #111111;
}

.nav-links__item--active .nav-links__link {
  color: #ffffff;
}

.nav-links__arrow {
  font-size: 9px;
  margin-left: 6px;
  vertical-align: middle;
  display: inline-block;
}

/* BASE DROPDOWN MENU (ABSOLUTE FOR DESKTOP HOVER) */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-top: 3px solid #1a1a1a;
}

.dropdown li a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
  background: #DE2027;
  color: #ffffff;
}

.nav-links__item--dropdown:hover .dropdown {
  display: block;
}

/* GET STARTED BUTTON */
.btn-get-started {
  display: flex;
  align-items: center;
  padding: 0 42px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.btn-get-started:hover {
  background: #333333;
  color: #DE2027;
}

/* =============================================
   HERO SLIDER SECTION
   ============================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 35.53vw;
  /* Aspect ratio matching the 1351x480 slider images */
  overflow: hidden;
  background: #111111;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(12px, 2.5vw, 48px);
  width: 100%;
  color: #ffffff;
  position: relative;
  z-index: 10;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.2s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  font-size: clamp(8px, 0.9vw, 12px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  text-transform: none;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: clamp(6px, 1vw, 12px);
  border-left: 3px solid #DE2027;
  padding-left: 10px;
  line-height: 1;
}

.slide-title {
  font-size: clamp(13px, 3.2vw, 52px);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.15;
  text-transform: none;
  margin-bottom: clamp(8px, 1.2vw, 16px);
  max-width: 800px;
  letter-spacing: 0.5px;
}

.slide-desc {
  font-size: clamp(10px, 1.2vw, 16px);
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin-bottom: clamp(10px, 1.8vw, 28px);
}

.slide-btn {
  display: inline-block;
  padding: clamp(6px, 0.9vw, 14px) clamp(12px, 2vw, 32px);
  background: #DE2027;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(8px, 0.9vw, 13px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 1px;
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: 2px;
  border: 1px solid #DE2027;
}

.slide-btn:hover {
  background: #ffffff;
  color: #DE2027;
  border-color: #ffffff;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
  border-radius: 4px;
}

.slider-arrow:hover {
  background: #DE2027;
  color: #1a1a1a;
  border-color: #DE2027;
}

.slider-arrow--left {
  left: 30px;
}

.slider-arrow--right {
  right: 30px;
}

/* Pagination Dots */
.slider-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.pagination-dot:hover,
.pagination-dot.active {
  background: #DE2027;
  transform: scale(1.2);
}

/* =============================================
   MOBILE TOGGLE & NAVIGATION RESPONSIVENESS
   ============================================= */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  padding: 0;
  align-self: center;
}

.navbar__toggle-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Active hamburger turns to an X */
.navbar__toggle.active .navbar__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active .navbar__toggle-line:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active .navbar__toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   RESPONSIVE DESIGN (320px to 1900px)
   ============================================= */

/* High-resolution Desktop (1400px to 1900px) */
@media (min-width: 1400px) {

  .header-top,
  .navbar-wrapper,
  .slide-content {
    max-width: 1360px;
  }

  .header-top {
    gap: 60px !important;
    padding: 24px 32px 48px 32px !important;
  }

  .logo img,
  .logo__icon img {
    height: 76px !important;
    width: auto !important;
  }
}

/* Standard Desktop (1200px to 1399px) — no override needed, uses base styles */
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-top {
    gap: 40px !important;
    padding: 20px 24px 44px 24px !important;
  }

  .logo img,
  .logo__icon img {
    height: 76px !important;
    width: auto !important;
  }
}

/* Laptop and Smaller Desktop Screens (up to 1399px) */
@media (max-width: 1399px) {
  .services-section,
  .about-section,
  .choose-section,
  .industries-section,
  .cta-section {
    padding: 30px 0;
  }
}

/* Medium Desktop (992px to 1199px) */
@media (max-width: 1199px) {

  .logo img,
  .logo__icon img {
    height: 56px !important;
    width: auto !important;
  }

  .btn-get-started {
    padding: 0 18px;
    font-size: 13px;
  }

  .header-top {
    gap: 12px !important;
    padding: 14px 20px 36px 20px !important;
  }

  .contact-info {
    gap: 8px;
  }

  .contact-info__item {
    gap: 6px;
  }

  .contact-info__icon {
    width: 32px;
    height: 32px;
  }

  .contact-info__icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .contact-info__text strong {
    font-size: 10px;
  }

  .contact-info__text span,
  .contact-info__text a {
    font-size: 10px;
  }
}
/* Navigation Drawer Helper Elements */
.nav-links__close-row {
  display: none;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile & Tablet Navigation (< 1024px) */
@media (max-width: 1023px) {

  .logo img,
  .logo__icon img {
    height: 46px !important;
    width: auto !important;
    max-width: 260px !important;
  }

  .header-top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 16px !important;
    gap: 10px !important;
  }

  /* Hide full text contact info, show icon-only buttons */
  .contact-info {
    display: none !important;
  }

  .header-contact-icons {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .header-contact-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #DE2027;
    color: #ffffff;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .header-contact-icon-item:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
  }

  .header-contact-icon-item svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff !important;
    stroke-width: 2.5 !important;
    display: block;
  }

  .navbar-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    z-index: 100005 !important;
  }

  .header-nav-row-inner {
    padding: 8px 16px;
    align-items: center;
    height: 50px;
  }

  .navbar__toggle {
    display: flex !important;
  }

  /* Sliding Mobile Navigation Menu Drawer */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: -280px; /* Hidden off-screen */
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 100001; /* Above overlay */
    padding: 60px 0 20px 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(0);
    list-style: none;
  }

  .nav-links.active {
    transform: translateX(-280px); /* Slide in from right */
  }

  /* Close Button Row in Mobile Drawer */
  .nav-links__close-row {
    display: flex;
    justify-content: flex-end;
    padding: 10px 16px;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 100%;
  }

  .nav-links__close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #333333;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s ease;
  }

  .nav-links__close-btn:hover {
    color: #DE2027;
  }

  .nav-links__item {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .nav-links__item:last-child {
    border-bottom: none;
  }

  .nav-links__item--active::before {
    display: none;
  }

  .nav-links__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    height: auto;
    font-size: 15px;
    color: #333333 !important;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    border-bottom: none;
    font-weight: 600;
  }

  .nav-links__link:hover {
    background: #f5f5f5;
    color: #DE2027 !important;
  }

  .nav-links__item--active .nav-links__link {
    color: #DE2027 !important;
    background: rgba(222, 32, 39, 0.05);
  }

  /* Dropdown Styles in Mobile Drawer */
  .nav-links__item--dropdown:hover .dropdown {
    display: none;
  }

  .dropdown {
    position: static !important;
    width: 100% !important;
    background: #fafafa !important;
    box-shadow: none !important;
    border-top: none !important;
    padding: 0 !important;
    display: none; /* Controlled by JS click toggle */
  }

  .dropdown li {
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown li:last-child {
    border-bottom: none;
  }

  .dropdown li a {
    display: block !important;
    padding: 10px 16px 10px 32px !important;
    font-size: 14px !important;
    color: #555555 !important;
    background: transparent !important;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
  }

  .dropdown li a:hover {
    background: #f5f5f5 !important;
    color: #DE2027 !important;
  }

  .btn-get-started {
    height: 34px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    flex-shrink: 0;
  }
}

/* Mobile (320px to 767px) */
@media (max-width: 767px) {
  .slide-tag {
    display: none !important;
  }

  .logo img,
  .logo__icon img {
    height: 38px !important;
    width: auto !important;
    max-width: 218px !important;
  }

  .header-contact-icons {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .header-contact-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #DE2027;
    color: #ffffff;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .header-contact-icon-item svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff !important;
    stroke-width: 2.5 !important;
    display: block;
  }

  .header-top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 12px !important;
    gap: 8px !important;
  }

  .header-nav-row-inner {
    padding: 0 12px;
    height: 44px;
    align-items: center;
  }

  .btn-get-started {
    height: 30px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
    flex-shrink: 0;
  }

  .slider-pagination {
    bottom: 15px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .slider-arrow--left {
    left: 8px;
  }

  .slider-arrow--right {
    right: 8px;
  }
}

/* Extra Small Mobile (320px to 479px) */
@media (max-width: 479px) {

  .logo img,
  .logo__icon img {
    height: 30px !important;
    width: auto !important;
    max-width: 172px !important;
    /* 320px - 16px padding - 3x26px icons - 2x4px gaps - 6px gap = 172px */
  }

  .logo-footer__icon img {
    height: 40px !important;
  }

  .header-contact-icon-item {
    width: 26px;
    height: 26px;
  }

  .header-contact-icon-item svg {
    width: 12px;
    height: 12px;
  }

  .header-contact-icons {
    gap: 4px;
  }

  .header-top {
    padding: 6px 8px !important;
    gap: 6px !important;
  }

  .header-nav-row-inner {
    padding: 0 8px;
    height: 40px;
  }

  .navbar__toggle {
    width: 20px;
    height: 14px;
  }

  .navbar__toggle-line {
    width: 20px;
    height: 2px;
  }

  .btn-get-started {
    height: 26px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
  }

  .slider-pagination {
    bottom: 10px;
  }
}



/* Reduce empty spaces inside sections on mobile */
.services-header {
  margin-bottom: 8px !important;
}

.choose-header {
  margin-bottom: 8px !important;
}

.industries-header {
  margin-bottom: 8px !important;
}

.services-subtitle,
.choose-subtitle,
.industries-subtitle {
  margin-bottom: 4px !important;
}

.services-title,
.choose-title,
.industries-title {
  margin-bottom: 6px !important;
}

.services-desc,
.choose-desc,
.industries-desc {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

.site-footer {
  padding-top: 30px !important;
}

.footer-container {
  padding-bottom: 20px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.slide-desc {
  display: none;
  /* Hidden on mobile to save space */
}
}




/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: #ffffff;
  padding: 60px 0;
  width: 100%;
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
}

.services-subtitle {
  color: #DE2027;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: none;
  display: inline-block;
  margin-bottom: 12px;
}

.services-title {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  text-transform: none;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #DE2027;
  box-shadow: 0 10px 30px rgba(222, 32, 39, 0.08);
}

.service-card__img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: none;
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: #DE2027;
}

.service-card__desc {
  font-size: 14px;
  color: #222222;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
  /* Fixed height to align cards vertically */
}

.service-card__read-more {
  font-size: 13px;
  font-weight: 700;
  color: #DE2027;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.3s ease;
}

.service-card__read-more svg {
  width: 14px;
  height: 14px;
  stroke: #DE2027;
  transition: transform 0.3s ease;
}

.service-card__read-more:hover {
  color: #111111;
}

.service-card__read-more:hover svg {
  stroke: #111111;
  transform: translateX(4px);
}

.services-actions {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.btn-services {
  display: inline-block;
  background: #DE2027;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #DE2027;
  transition: all 0.3s ease;
}

.btn-services:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =============================================
   SERVICES RESPONSIVENESS
   ============================================= */
@media (max-width: 991px) {
  .services-section {
    padding: 20px 0;
  }

  .services-header {
    margin-bottom: 24px !important;
  }

  .services-subtitle {
    margin-bottom: 8px !important;
  }

  .services-title {
    font-size: 36px;
    margin-bottom: 10px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card__body {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 15px 0;
  }

  .services-header {
    margin-bottom: 16px !important;
  }

  .services-subtitle {
    margin-bottom: 6px !important;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 16px !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
  }

  .service-card__body {
    padding: 16px;
  }

  .services-actions {
    margin-top: 20px;
  }
}


/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: #ffffff;
  padding: 60px 0;
  width: 100%;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 80px;
  /* Large gap between image column and content column */
}

.about-images-column,
.about-content-column {
  flex: 1;
}

/* Images Container */
.about-images-wrapper {
  position: relative;
  width: 100%;
  max-width: 530px;
  height: 560px;
  margin: 0 auto;
}

/* Background image (Crane) */
.about-img-bg {
  width: 80%;
  /* Leaves 20% empty space on left */
  height: 560px;
  /* Full height of the wrapper */
  object-fit: cover;
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 0;
  /* Aligned at the very top of wrapper, matching the yellow line */
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Foreground image container (White card with shadow) */
.about-fg-container {
  background: #ffffff;
  padding: 16px;
  /* Generates the white border spacing around the image */
  position: absolute;
  left: 0;
  top: 80px;
  width: 58%;
  height: 340px;
  z-index: 4;
  /* Sits on top of both the yellow line and the background image */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: flex;
}

.about-img-fg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* Single vertical yellow line displayed over the background image, peeking top & bottom */
.about-accent-yellow-line {
  position: absolute;
  left: 76px;
  /* Centered on the left boundary of the background image */
  top: 0;
  width: 60px;
  /* Increased width to make it more prominent, matching original */
  height: 560px;
  /* Runs full height of wrapper, peeking above and below the white card */
  background: #DE2027;
  z-index: 3;
  /* Sits ON TOP of background image (z-index: 2) but UNDER the white container (z-index: 4) */
}

/* Experience Badge */
.about-experience-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: #ffffff;
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.about-experience-number {
  font-size: 80px;
  /* Increased size to match original large font */
  font-weight: 800;
  color: #333333;
  display: flex;
  align-items: center;
  letter-spacing: -2px;
}

.about-experience-plus {
  color: #DE2027;
  font-size: 44px;
  margin-left: 2px;
  font-weight: 700;
}

.about-experience-text {
  font-size: 14px;
  font-weight: 800;
  /* Bolder text */
  color: #333333;
  /* Darker charcoal black color */
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.25;
}

/* Right Content Column */
.about-subtitle {
  color: #DE2027;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-desc-highlight {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 22px;
  line-height: 1.5;
}

.about-desc {
  font-size: 15px;
  color: #222222;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

/* =============================================
   ABOUT RESPONSIVENESS
   ============================================= */

/* Large Desktop (1400px to 1900px) */
@media (min-width: 1400px) {
  .about-container {
    max-width: 1320px;
    gap: 100px;
  }
}

/* Medium Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .about-container {
    gap: 40px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-images-wrapper {
    height: 480px;
  }

  .about-img-bg {
    height: 380px;
  }

  .about-fg-container {
    height: 280px;
  }

  .about-accent-yellow-line {
    height: 380px;
    /* Scales down to match background image */
  }

  .about-experience-number {
    font-size: 64px;
    /* Scaled down proportionally from 80px */
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .about-section {
    padding: 20px 0;
  }

  .about-container {
    flex-direction: row;
    /* Keep side-by-side layout on tablet */
    gap: 40px;
    /* Tighten gap for tablet screens */
    align-items: center;
  }

  .about-images-column {
    flex: 1;
    max-width: 450px;
    width: auto;
  }

  .about-content-column {
    flex: 1;
    width: auto;
  }

  .about-images-wrapper {
    height: 380px;
    max-width: 420px;
  }

  .about-img-bg {
    height: 380px;
    width: 80%;
  }

  .about-fg-container {
    height: 220px;
    width: 60%;
    padding: 10px;
    top: 50px;
  }

  .about-accent-yellow-line {
    left: 56px;
    width: 42px;
    height: 380px;
  }

  .about-experience-number {
    font-size: 52px;
  }

  .about-experience-plus {
    font-size: 32px;
  }

  .about-experience-text {
    font-size: 12px;
  }

  .about-title {
    font-size: 32px;
  }
}

/* Mobile Phone (320px to 767px) */
@media (max-width: 767px) {
  .about-section {
    padding: 15px 0;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-content-column {
    display: contents;
  }

  .about-subtitle {
    order: 1;
    margin-bottom: 2px;
    /* Tighten gap between subtitle and title */
  }

  .about-title {
    order: 2;
    font-size: 26px;
    margin-bottom: 18px !important;
    line-height: 1.25;
  }

  .about-images-column {
    order: 3;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-images-wrapper {
    height: 400px;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-img-bg {
    height: 360px;
    width: 80%;
  }

  .about-fg-container {
    height: 220px;
    width: 60%;
    padding: 10px;
    /* Reduced padding on mobile */
    top: 50px;
  }

  .about-accent-yellow-line {
    left: 56px;
    width: 42px;
    height: 360px;
  }

  .about-experience-number {
    font-size: 42px;
  }

  .about-experience-plus {
    font-size: 28px;
  }

  .about-experience-text {
    font-size: 11px;
    margin-top: 4px;
  }

  .about-text-details {
    order: 4;
    display: flex;
    flex-direction: column;
  }

  .about-desc-highlight {
    margin-bottom: 10px;
  }

  .about-desc {
    margin-bottom: 8px;
  }

  .about-expertise {
    margin-top: 4px;
  }
}

/* Core Expertise List styling */
.about-expertise {
  margin-top: 28px;
}

.about-expertise__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  text-transform: none;
}

.about-expertise__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.about-expertise__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555555;
  font-weight: 600;
}

.about-expertise__icon {
  width: 15px;
  height: 15px;
  color: #DE2027;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .about-expertise__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.choose-section {
  background-color: #f7f7f7;
  /* Clean, solid light grey background */
  padding: 60px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Circles */
.choose-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.choose-bg-circle--1 {
  width: 400px;
  height: 400px;
  background: rgba(222, 32, 39, 0.05);
  /* Soft red glow */
  top: -150px;
  right: -150px;
  filter: blur(50px);
}

.choose-bg-circle--2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.7);
  /* Premium white glow contrast on grey */
  bottom: -200px;
  left: -200px;
  filter: blur(60px);
}

/* Rotating Dotted Compass Circle */
.choose-bg-rotate-dotted {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px dotted rgba(222, 32, 39, 0.18);
  /* Solid brand red dotted line */
  border-radius: 50%;
  top: -60px;
  right: 12%;
  pointer-events: none;
  z-index: 1;
  animation: rotate-dotted-compass 45s linear infinite;
}

/* Inner dashed line for a drafting compass effect */
.choose-bg-rotate-dotted::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1.5px dashed rgba(26, 26, 26, 0.08);
  border-radius: 50%;
}

/* Small Scattered Filled Circles */
.choose-bg-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.choose-bg-dot--1 {
  width: 12px;
  height: 12px;
  background: rgba(222, 32, 39, 0.15);
  /* Red dot */
  top: 15%;
  left: 8%;
}

.choose-bg-dot--2 {
  width: 8px;
  height: 8px;
  background: rgba(26, 26, 26, 0.12);
  /* Dark dot */
  top: 75%;
  left: 12%;
}

.choose-bg-dot--3 {
  width: 16px;
  height: 16px;
  background: rgba(222, 32, 39, 0.12);
  /* Red dot */
  top: 40%;
  right: 5%;
}

.choose-bg-dot--4 {
  width: 10px;
  height: 10px;
  background: rgba(26, 26, 26, 0.1);
  /* Dark dot */
  bottom: 15%;
  right: 22%;
}

.choose-bg-dot--5 {
  width: 6px;
  height: 6px;
  background: rgba(222, 32, 39, 0.18);
  /* Red dot */
  top: 6%;
  right: 42%;
}

.choose-bg-dot--6 {
  width: 9px;
  height: 9px;
  background: rgba(26, 26, 26, 0.12);
  /* Dark dot */
  top: 48%;
  left: 36%;
}

.choose-bg-dot--7 {
  width: 11px;
  height: 11px;
  background: rgba(222, 32, 39, 0.15);
  /* Red dot */
  bottom: 25%;
  left: 28%;
}

.choose-bg-dot--8 {
  width: 7px;
  height: 7px;
  background: rgba(26, 26, 26, 0.12);
  /* Dark dot */
  top: 28%;
  right: 32%;
}

.choose-bg-dot--9 {
  width: 13px;
  height: 13px;
  background: rgba(222, 32, 39, 0.12);
  /* Red dot */
  bottom: 42%;
  right: 46%;
}

.choose-bg-dot--10 {
  width: 8px;
  height: 8px;
  background: rgba(26, 26, 26, 0.08);
  /* Dark dot */
  top: 64%;
  right: 18%;
}

/* Rotation Animation */
@keyframes rotate-dotted-compass {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.choose-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 65px auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  /* Sit above decorative bg circles/dots */
}

.choose-subtitle {
  color: #DE2027;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: none;
  display: inline-block;
  margin-bottom: 12px;
}

.choose-title {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  text-transform: none;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.choose-desc {
  font-size: 15px;
  color: #222222;
  line-height: 1.6;
}

.choose-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  /* Sit above decorative bg circles/dots */
}

.choose-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
  cursor: pointer;
}

/* Alternating icon boxes */
.choose-item__icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.choose-item__icon-box svg {
  transition: stroke 0.3s ease;
}

.choose-item__icon-box--dark {
  background: #111111;
}

.choose-item__icon-box--yellow {
  background: #DE2027;
}

.choose-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 52px;
  /* Keeps headings aligned even if they wrap onto 3 lines */
  transition: color 0.3s ease;
}

.choose-item__desc {
  font-size: 12px;
  color: #222222;
  line-height: 1.45;
}

/* Hover effects */
.choose-item:hover .choose-item__icon-box {
  transform: translateY(-8px) scale(1.05);
}

.choose-item:hover .choose-item__icon-box--dark {
  background: #DE2027;
  box-shadow: 0 10px 25px rgba(222, 32, 39, 0.35);
}

.choose-item:hover .choose-item__icon-box--dark svg {
  stroke: #111111;
}

.choose-item:hover .choose-item__icon-box--yellow {
  background: #111111;
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.2);
}

.choose-item:hover .choose-item__icon-box--yellow svg {
  stroke: #DE2027;
}

.choose-item:hover .choose-item__title {
  color: #DE2027;
}

/* Curved dotted arrow pseudo-elements between icon boxes */
.choose-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  /* Aligned vertically with center of the 60px icon box */
  left: calc(50% + 38px);
  /* Starts just after the icon box edge */
  width: calc(100% - 76px);
  /* Fills the gap to the next icon box */
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24' fill='none'%3E%3Cpath d='M10,20 Q50,2 90,20' stroke='%23555555' stroke-width='1.5' stroke-dasharray='4,4'/%3E%3Cpath d='M83,18 L90,20 L86,13' stroke='%23555555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 1;
}

/* =============================================
   CHOOSE US RESPONSIVENESS
   ============================================= */

/* High-resolution Desktop (1400px to 1900px) */
@media (min-width: 1400px) {
  .choose-container {
    max-width: 1360px;
  }

  .choose-item__title {
    font-size: 15px;
  }
}

/* Laptops (992px to 1199px) */
@media (max-width: 1199px) {
  .choose-item {
    padding: 0 8px;
  }

  .choose-item__title {
    font-size: 13px;
    min-height: 56px;
  }

  .choose-item:not(:last-child)::after {
    left: calc(50% + 34px);
    width: calc(100% - 68px);
  }
}

/* Tablets (768px to 991px) - Wrap to 4 + 3 layout */
@media (max-width: 991px) {
  .choose-section {
    padding: 20px 0;
  }

  .choose-header {
    margin-bottom: 28px !important;
  }

  .choose-subtitle {
    margin-bottom: 8px !important;
  }

  .choose-title {
    font-size: 32px;
    margin-bottom: 10px !important;
  }

  .choose-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
  }

  .choose-item {
    flex: 0 0 calc(25% - 20px);
    /* 4 items in a row */
    min-width: 170px;
  }

  /* Remove dotted arrows when wrapped */
  .choose-item:not(:last-child)::after {
    display: none;
  }
}

/* Small Tablets / Large Phones (576px to 767px) - 2 columns */
@media (max-width: 767px) {
  .choose-section {
    padding: 15px 0;
  }

  .choose-header {
    margin-bottom: 18px !important;
  }

  .choose-subtitle {
    margin-bottom: 6px !important;
  }

  .choose-title {
    margin-bottom: 16px !important;
  }

  .choose-container {
    gap: 30px 15px;
  }

  .choose-item {
    flex: 0 0 calc(50% - 15px);
    /* 2 items in a row */
  }
}

/* Mobile Phones (320px to 575px) - 2 items per row */
@media (max-width: 575px) {
  .choose-section {
    padding: 15px 0;
  }

  .choose-header {
    margin-bottom: 16px !important;
  }

  .choose-subtitle {
    margin-bottom: 6px !important;
  }

  .choose-title {
    font-size: 28px;
    margin-bottom: 8px !important;
  }

  .choose-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px 10px;
  }

  .choose-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 120px;
  }

  .choose-item__title {
    font-size: 12px;
    font-weight: 700 !important;
    color: #333333 !important;
    min-height: auto;
    line-height: 1.4;
  }

  .choose-item__icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }
}

/* =============================================
   INDUSTRIES WE SERVE SECTION
   ============================================= */
/* =============================================
   INDUSTRIES WE SERVE SECTION
   ============================================= */
.industries-section {
  background-color: #ffffff;
  /* Blueprint dotted grid background design - increased visibility */
  background-image: radial-gradient(rgba(222, 32, 39, 0.06) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 60px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Corner gradient glows - increased visibility */
.industries-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 32, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.industries-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 32, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative Background Circles */
.industries-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.industries-bg-circle--1 {
  width: 320px;
  height: 320px;
  background: rgba(222, 32, 39, 0.05);
  /* Soft primary theme color */
  top: -80px;
  left: -80px;
}

.industries-bg-circle--2 {
  width: 480px;
  height: 480px;
  background: rgba(26, 26, 26, 0.03);
  /* Soft dark secondary color */
  bottom: -150px;
  right: -100px;
}

.industries-bg-circle--3 {
  width: 160px;
  height: 160px;
  background: rgba(222, 32, 39, 0.04);
  top: 35%;
  left: 10%;
}

.industries-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 65px auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.industries-subtitle {
  color: #DE2027;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: none;
  display: inline-block;
  margin-bottom: 12px;
}

.industries-title {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  text-transform: none;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.industries-desc {
  font-size: 15px;
  color: #222222;
  line-height: 1.6;
}

.industries-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.industry-card {
  flex: 0 1 calc(25% - 23px);
  /* 4 items in a row on desktop */
  min-width: 260px;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  padding: 0;
  /* Remove padding to let text overlay sit edge-to-edge at the bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(222, 32, 39, 0.15);
}

.industry-card__body {
  width: 100%;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  padding: 24px 20px 16px 20px;
  height: 85px;
  /* Taller height for a smoother gradient fade */
  display: flex;
  align-items: flex-end;
  /* Align text at the bottom */
  transition: background 0.3s ease;
}

.industry-card:hover .industry-card__body {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
}

.industry-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  transition: color 0.4s ease;

  /* Ensure text fits on single or double line */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Hover States */
.industry-card:hover .industry-card__title {
  color: #DE2027;
}

/* =============================================
   INDUSTRIES RESPONSIVENESS
   ============================================= */

/* High-resolution Desktop (1400px to 1900px) */
@media (min-width: 1400px) {
  .industries-grid {
    max-width: 1360px;
  }
}

/* Laptops (992px to 1199px) - 3 columns */
@media (max-width: 1199px) {
  .industry-card {
    flex: 0 1 calc(33.333% - 20px);
  }

  .industries-title {
    font-size: 36px;
  }
}

/* Tablets (768px to 991px) - 2 columns */
@media (max-width: 991px) {
  .industries-section {
    padding: 20px 0;
  }

  .industries-header {
    margin-bottom: 28px !important;
  }

  .industries-subtitle {
    margin-bottom: 8px !important;
  }

  .industries-title {
    font-size: 32px;
    margin-bottom: 10px !important;
  }

  .industry-card {
    flex: 0 1 calc(50% - 15px);
  }
}

/* Mobile Phones (320px to 767px) - 1 column */
@media (max-width: 767px) {
  .industries-section {
    padding: 15px 0;
  }

  .industries-header {
    margin-bottom: 18px !important;
  }

  .industries-subtitle {
    margin-bottom: 6px !important;
  }

  .industries-title {
    font-size: 28px;
    margin-bottom: 16px !important;
  }

  .industries-grid {
    gap: 20px;
  }

  .industry-card {
    flex: 0 1 100%;
    max-width: 380px;
    padding: 0;
  }
}

/* =============================================
   CALL TO ACTION SECTION
   ============================================= */
.cta-section {
  background: #DE2027;
  padding: 60px 0;
  width: 100%;
  color: #ffffff;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
  max-width: 800px;
}

.cta-actions {
  flex-shrink: 0;
}

.btn-cta {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #111111;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-cta:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.site-footer {
  background: #f5f5f5;
  color: #555555;
  padding: 80px 0 0 0;
  border-top: 4px solid #DE2027;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col--about {
  flex: 1.5;
}

/* Logo in footer */
.logo-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-footer__icon {
  display: flex;
  align-items: center;
}

.logo-footer__icon img {
  height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}

.logo-footer__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.logo-footer__name {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 24px;
  font-weight: 700;
  color: #DE2027;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-footer__subname {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-footer__tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #0020A2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.footer-about-text {
  font-size: 14px;
  color: #222222;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #dddddd;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: #DE2027;
  color: #ffffff;
  border-color: #DE2027;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(222, 32, 39, 0.2);
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #DE2027;
}

/* Links List */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #555555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #DE2027;
  transform: translateX(5px);
}

/* Contact Column */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  /* Icon stays pinned to top of text */
  gap: 12px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  /* Fine-tune icon top with first text line */
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact-text {
  font-size: 14px;
  color: #555555 !important;
  line-height: 1.6;
  flex: 1;
  /* Wrap long address neatly */
}

/* Force all text inside contact text (including links) to stay grey */
.footer-contact-text span,
.footer-contact-text a {
  color: #555555 !important;
  text-decoration: none;
}

/* Copyright Bottom */
.footer-bottom {
  background: #e8e8e8;
  padding: 25px 0;
  border-top: 1px solid #dddddd;
  width: 100%;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555555;
}

/* =============================================
   CTA & FOOTER RESPONSIVENESS
   ============================================= */

/* High-resolution Desktop (1400px to 1900px) */
@media (min-width: 1400px) {

  .cta-container,
  .footer-container,
  .footer-bottom-inner {
    max-width: 1360px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  .cta-section {
    padding: 20px 0;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .footer-container {
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .footer-col {
    flex: 0 0 calc(50% - 20px);
  }

  .footer-col--about {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .footer-about-text {
    max-width: 100%;
  }
}

/* Mobile Phones (320px to 767px) */
@media (max-width: 767px) {
  .cta-section {
    padding: 15px 0;
  }

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

  .cta-text {
    font-size: 14px;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 13px;
  }

  .footer-container {
    flex-wrap: wrap;
    gap: 30px 20px;
  }

  .footer-col {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    min-width: 0;
  }

  .footer-col--about,
  .footer-col--contact {
    flex: 0 0 100%;
    width: 100%;
  }

  .footer-title {
    margin-bottom: 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.footer-credit-link {
  color: #555555;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit-link:hover {
  color: #DE2027;
}

/* Enforce global section spacing constraints:
   - 30px top and bottom for Desktop/Laptop
   - 20px top and bottom for Tablet (max-width: 991px)
   - 10px top and bottom for Mobile (max-width: 767px)
*/
.services-section,
.about-section,
.choose-section,
.industries-section,
.cta-section {
  padding: 30px 0 !important;
  margin: 0 !important;
}

/* Enforce responsive spacing beneath section titles */
.about-title,
.services-title,
.choose-title,
.industries-title {
  margin-bottom: 28px !important;
}

/* Enforce responsive spacing beneath headers (above card grids) */
.services-header,
.choose-header,
.industries-header {
  margin-bottom: 40px !important;
}

.services-actions {
  margin-top: 40px !important;
}

@media (max-width: 991px) {
  .services-section,
  .about-section,
  .choose-section,
  .industries-section,
  .cta-section {
    padding: 20px 0 !important;
  }

  .about-title,
  .services-title,
  .choose-title,
  .industries-title {
    margin-bottom: 20px !important;
  }

  .services-header,
  .choose-header,
  .industries-header {
    margin-bottom: 25px !important;
  }

  .services-actions {
    margin-top: 25px !important;
  }
}

@media (max-width: 767px) {
  .services-section,
  .about-section,
  .choose-section,
  .industries-section,
  .cta-section {
    padding: 10px 0 !important;
  }

  .about-title,
  .services-title,
  .choose-title,
  .industries-title {
    margin-bottom: 16px !important;
  }

  .services-header,
  .choose-header,
  .industries-header {
    margin-bottom: 15px !important;
  }

  .services-actions {
    margin-top: 15px !important;
  }

  .logo-footer__icon img {
    height: 48px !important;
  }
  
  .choose-container {
    gap: 20px 15px !important;
  }
}
/* Career Page Styles */
.career-section-container {
    padding: 60px 20px;
    background-color: #f8f9fa;
}
.career-content-wrapper {
    max-width: 1100px;
    margin: 50px auto 0;
}
.career-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.career-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.career-list {
    list-style: none;
    padding: 0;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}
.career-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.career-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.2rem;
}
.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}
.opp-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.opp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #d32f2f;
    color: #d32f2f;
}
.apply-box {
    background: #fff4f4;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #ffdbdb;
    text-align: center;
}
.apply-box p {
    color: #444; 
    line-height: 1.8; 
    margin: 0 auto; 
    max-width: 800px; 
    font-size: 1.1rem;
}
.apply-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 25px;
}
.apply-btn:hover {
    transform: translateY(-3px);
    background: #b71c1c;
    color: #fff;
}
@media (max-width: 575px) {
    .career-card {
        min-width: 100%;
        padding: 25px;
    }
    .apply-box {
        padding: 30px 20px;
    }
    .apply-btn {
        padding: 12px 20px;
        font-size: 1rem;
        word-break: break-word;
    }
    .opp-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Team Page Styles */
.team-balance-card {
  display: flex !important; 
  flex-direction: row !important; 
  align-items: center; 
  gap: 25px; 
  padding: 15px 20px; 
  background: #fff; 
  border-radius: 12px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
  margin-bottom: 20px; 
  width: 100%;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.team-balance-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-color: #d32f2f;
}
@media (max-width: 575px) {
  .team-balance-card {
    flex-direction: column !important;
    text-align: center;
    gap: 15px;
  }
  .team-balance-card > div:last-child {
    text-align: center !important;
  }
  .founder-section {
    padding: 20px !important;
    gap: 20px !important;
  }
  .founder-section > div:last-child {
    min-width: 100% !important;
    text-align: center !important;
  }
  .founder-section h2 {
    font-size: 1.8rem !important;
  }
}

/* Padding for Career Sections */
.opp-section-container {
    padding: 70px 20px;
}
.apply-section-container {
    padding: 60px 20px;
}

@media (max-width: 575px) {
    .career-section-container,
    .opp-section-container,
    .apply-section-container {
        padding: 30px 15px !important;
    }
    .career-content-wrapper {
        margin: 30px auto 0 !important;
    }
    .career-values-grid {
        margin-bottom: 30px !important;
    }
    .opp-grid {
        margin-bottom: 30px !important;
    }
    .apply-box {
        padding: 25px 15px !important;
    }
}

/* Mobile adjustments for subpage-hero to show full image without cropping/blank space */
@media (max-width: 767px) {
    .subpage-hero {
        background-size: contain !important;
        background-position: center !important;
        height: 18.23vw !important; /* Match the original image aspect ratio */
        min-height: unset !important; /* Remove min-height restriction */
    }
    .subpage-hero__content {
        padding: 2vw 15px !important; /* Scale padding down drastically */
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .subpage-hero__title {
        font-size: 3.5vw !important; /* Scale title to fit the tiny height */
        margin-bottom: 0.5vw !important;
    }
    .subpage-hero__breadcrumbs {
        font-size: 1.8vw !important; /* Scale breadcrumbs */
    }
}

/* Styles for Service Card Lists on Homepage */
.service-card__list {
    margin: 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-card__list li {
    margin-bottom: 8px;
}

/* Full Width Service Cards Layout */
.services-grid.services-grid--full {
    grid-template-columns: 1fr;
    max-width: 1000px;
}
.service-card--full {
    flex-direction: row;
    align-items: stretch;
}
.service-card--full.service-card--reverse {
    flex-direction: row-reverse;
}
.service-card--full .service-card__img-container {
    width: 40%;
    height: auto;
    min-height: 300px;
}
.service-card--full .service-card__body {
    width: 60%;
    justify-content: center;
}
@media (max-width: 767px) {
    .service-card--full, .service-card--full.service-card--reverse {
        flex-direction: column;
    }
    .service-card--full .service-card__img-container {
        width: 100%;
        height: 250px;
        min-height: auto;
    }
    .service-card--full .service-card__body {
        width: 100%;
    }
}

/* Two Column Service Cards Layout */
.services-grid.services-grid--two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
}

/* Responsive adjustments for two column layout */
@media (max-width: 991px) {
    .services-grid.services-grid--two-cols {
        grid-template-columns: 1fr;
    }
}
