/**
* Template Name: Landio
* Template URL: https://bootstrapmade.com/landio-bootstrap-landing-page-template/
* Updated: Sep 06 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #4a4b64;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #242859;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0cc0df;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #4a4b64;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0cc0df;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #4a4b64;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0cc0df;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f6ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1030;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #0cc0df;
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 80px 0 40px;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 88%);
  position: relative;
}

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

.footer .footer-main {
  margin-bottom: 50px;
}

.footer .brand-section {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
}

.footer .brand-section .logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
}

.footer .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.footer .brand-section .brand-description {
  display: none;
}

.footer .brand-section .contact-info {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.footer .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  transition: all 0.3s ease;
}

.footer .brand-section .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.footer .brand-section .contact-info .contact-item:hover {
  color: var(--accent-color);
}

.footer .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 14px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer .brand-section .contact-info .contact-item span {
  line-height: 1.6;
  font-weight: 500;
}

.footer .footer-contact-title {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer .brand-section .contact-info .contact-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.6;
}

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

.footer .nav-column .footer-nav.footer-office-list {
  gap: 10px;
}

.footer .nav-column .footer-nav .footer-location-line {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.footer .brand-section .social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding-top: 0;
  border-top: none;
}

.footer .brand-section .social-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  color: var(--default-color);
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  font-size: 18px;
  cursor: pointer;
}

.footer .brand-section .social-links .social-icon:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer .footer-nav-wrapper {
  padding-left: 0;
}

.footer .footer-nav-wrapper .row {
  margin: 0 -12px;
}

.footer .footer-nav-wrapper .col-6 {
  padding: 0 12px;
}

@media (max-width: 991px) {
  .footer .footer-nav-wrapper {
    padding-left: 0;
  }
}

.footer .nav-column {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.footer .nav-column:hover {
  box-shadow: none;
  transform: none;
}

.footer .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0;
}

.footer .nav-column h6::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}

.footer .nav-column .footer-nav a::before {
  content: '';
  display: none;
}

.footer .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  padding-left: 0;
}

.footer .nav-column .footer-nav a:hover::before {
  opacity: 0;
}

.footer .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer .footer-bottom {
  padding: 30px 0;
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

.footer .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer premium (detailed layout)
--------------------------------------------------------------*/
.footer.footer-premium {
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--surface-color), white 35%) 0%,
      var(--background-color) 45%,
      color-mix(in srgb, var(--accent-color), transparent 94%) 100%);
  border-top: none;
  padding: 4.5rem 0 0;
  padding-bottom: 0;
}

.footer-premium .footer-main {
  margin-bottom: 0;
  padding-bottom: 2.5rem;
}

.footer-premium-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #3d9eff, #2ec4a6);
  pointer-events: none;
}

.footer-brand-block .logo {
  text-decoration: none;
}

.footer-brand-block .logo .sitename {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  margin-bottom: 1.25rem;
  max-width: 26rem;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), white 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.footer-premium .footer-brand-block .social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 1.5rem;
}

.footer-premium .footer-brand-block .social-links .social-icon {
  width: 44px;
  height: 44px;
  font-size: 19px;
}

.footer-contact-column {
  margin-bottom: 0;
}

.footer-contact-cards {
  display: grid;
  gap: 0.85rem;
}

.footer-contact-card {
  background: color-mix(in srgb, var(--surface-color), white 25%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 92%);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.footer-contact-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.footer-contact-label i {
  color: var(--accent-color);
  font-size: 1rem;
}

.footer-contact-card a {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-card a+a {
  margin-top: 0.2rem;
}

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

.footer-contact-hint {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.4;
}

.footer-offices-wrap {
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.footer-offices-heading {
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 0.35rem;
  position: relative;
  padding-bottom: 0;
}

.footer-offices-heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
  margin-top: 0.65rem;
}

.footer-offices-lead {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.footer-office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.footer-office-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 92%);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-office-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
  box-shadow: 0 8px 28px rgba(13, 110, 253, 0.08);
}

.footer-office-flag {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-office-tile strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.footer-office-tile>div span {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  line-height: 1.45;
}

.footer-cta-bar {
  margin-top: 0.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(120deg, color-mix(in srgb, var(--accent-color), #1e3a5f 35%), var(--accent-color));
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 55%);
  margin-bottom: 2rem;
}

.footer-cta-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-cta-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, #fff, transparent 18%);
  max-width: 36rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-cta-btn:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.footer-premium .footer-bottom {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.footer-premium .footer-bottom .copyright p {
  font-weight: 400;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 0 0;
  }

  .footer.footer-premium {
    padding-top: 3.25rem;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-cta-bar {
    padding: 1.35rem 1.15rem;
    text-align: center;
  }

  .footer-cta-text {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-cta-btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-brand-block {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .footer-brand-block .footer-trust-badges {
    justify-content: center;
  }

  .footer-premium .footer-brand-block .social-links {
    justify-content: center;
  }

  .footer-premium .nav-column {
    margin-bottom: 0.5rem;
  }

  .footer .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer .brand-section .brand-description {
    max-width: none;
  }

  .footer .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer .footer-social {
    text-align: center;
  }

  .footer .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer .footer-social .social-links {
    justify-content: center;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .legal-links {
    justify-content: center;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 5px;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(13, 110, 253, 0.08), rgba(16, 184, 189, 0.08));
  pointer-events: none;
}

.page-title .heading {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.page-title .heading p {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted-color, #6c757d);
  font-size: 1rem;
  line-height: 1.7;
}

.page-title nav {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-top: 20px;
  padding: 16px 0;
  border-radius: 12px;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  gap: 0.75rem;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 140px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 70%);
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-badge i {
  color: #FFD700;
  font-size: 0.875rem;
}

.hero .hero-content .hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.hero .hero-content .hero-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-title {
    font-size: 2.2rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero .hero-content .hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent-color);
  margin-bottom: 20px;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-weight: 500;
}

.hero .hero-note {
  font-size: 1rem;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 100%;
}

.hero-image-wrapper {
  padding-top: 20px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-image-wrapper .hero-image {
  width: auto;
  height: min(500px, 60vh);
  max-height: 550px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid color-mix(in srgb, var(--nav-color), transparent 85%);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero-image-wrapper .hero-image {
    height: min(450px, 55vh);
  }
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
  }

  .hero-image-wrapper {
    text-align: center;
    margin-top: 24px;
  }

  .hero-image-wrapper .hero-image {
    height: min(400px, 50vh);
    max-height: 450px;
  }
}

@media (max-width: 576px) {
  .hero-image-wrapper .hero-image {
    height: min(300px, 45vh);
    max-height: 350px;
  }
}


@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero .hero-content .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: #0cc0df;
  color: var(--contrast-color);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/*--------------------------------------------------------------
# Service Details Page
--------------------------------------------------------------*/
.page-title {
  background-color: var(--background-color);
  color: var(--default-color);
}

.page-title .heading {
  text-align: center;
  padding: 70px 0 40px;
}

.page-title .heading.services-page-title-empty {
  padding: 0;
}

.page-title .heading h1 {
  font-size: clamp(26px, 5vw, 48px);
  margin-bottom: 1rem;
}

.page-title .heading .heading-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.page-title .heading .heading-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 700px;
  margin: 0 auto;
}

.page-title nav {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-title nav ol {
  justify-content: flex-start;
  gap: 0.5rem;
  padding-left: 0;
  margin: 0;
}

.page-title nav ol li a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.page-title nav ol li a:hover {
  color: color-mix(in srgb, var(--accent-color), black 30%);
}

.page-title nav ol li.current {
  color: var(--default-color);
  font-weight: 600;
}

.services-hero-section {
  margin-top: 22px;
  margin-bottom: 18px;
}

.services-hero-section .container {
  background: linear-gradient(145deg, #ffffff 0%, #f2f6ff 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 18px;
  padding: 52px 26px;
  box-shadow: 0 16px 45px rgba(10, 43, 119, 0.09);
  position: relative;
  overflow: hidden;
}

.services-hero-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2f8cff, #1dc9a7);
}

.services-hero-title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  color: var(--accent-color);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 auto 1rem;
  max-width: 900px;
}

.services-hero-intro {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 820px;
}

@media (max-width: 991px) {
  .services-hero-section .container {
    padding: 42px 18px;
  }
}

@media (max-width: 576px) {
  .services-hero-section {
    margin-top: 16px;
  }

  .services-hero-section .container {
    padding: 34px 14px;
    border-radius: 14px;
  }

  .services-hero-intro {
    font-size: 0.96rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
  background: var(--background-color);
}

.services .service-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.services .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #10b981);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services .service-card:hover::before {
  transform: scaleX(1);
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-color), #10b981);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
}

.services .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services .service-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.services .service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.services .service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services .service-card ul li {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.services .service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .service-card {
    padding: 2rem;
  }

  .services .service-card h3 {
    font-size: 1.3rem;
  }
}

.hero .hero-content .hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-outline {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--heading-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.hero .hero-content .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

.hero .hero-content .hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-metrics {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-metrics {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-metrics {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.hero .hero-content .hero-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.hero .hero-content .hero-metrics .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .hero-content .hero-metrics .metric-item .metric-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-content .hero-metrics .metric-item .metric-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-metrics .metric-item .metric-content {
  text-align: left;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

@media (max-width: 1199px) {
  .hero {
    padding: 120px 0 60px 0;
  }
}

@media (max-width: 768px) {
  .hero .hero-content {
    text-align: center !important;
  }
}

/* 🔥 Improve spacing */
.hero .hero-content {
  padding-right: 20px;
}

/* 🔥 Badge animation */
.hero-badge {
  animation: fadeInUp 0.8s ease;
}

/* 🔥 Smooth text spacing */
.hero-title {
  margin-bottom: 28px;
}

/* Worldwide Reach Section */
.worldwide-reach {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), transparent 50%) 100%);
}

.worldwide-reach .section-title h2 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.worldwide-reach .section-title p {
  color: var(--default-color);
  font-size: 1.1rem;
}

.worldwide-content h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.worldwide-content p {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 32px;
}

.worldwide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.worldwide-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--default-color);
  font-weight: 500;
}

.worldwide-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.worldwide-image-wrapper {
  position: relative;
  text-align: center;
}

.worldwide-map {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 992px) {
  .worldwide-reach .row {
    text-align: center;
  }

  .worldwide-content h3 {
    font-size: 2rem;
  }

  .worldwide-content p {
    font-size: 1rem;
  }

  .worldwide-list li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .worldwide-reach {
    padding: 60px 0;
  }

  .worldwide-content h3 {
    font-size: 1.75rem;
  }
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industries .section-title h2 {
  color: var(--heading-color);
}

.industries .section-title p {
  color: var(--default-color);
}

.industry-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry-card-image {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f8f9fa;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-card:hover .industry-card-image img {
  transform: scale(1.08);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.industry-card h4 {
  color: var(--heading-color);
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .industries {
    padding: 60px 0;
  }

  .industry-card {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .industry-card {
    padding: 1.5rem;
  }

  .industry-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .industry-card h4 {
    font-size: 1rem;
  }
}

/* Flexbox for equal width cards */
.industries-row {
  display: flex;
  gap: 1rem;
}

.industries-row>div {
  flex: 1;
  min-width: 0;
  /* Prevent flex item from overflowing */
}

@media (max-width: 991px) {
  .industries-row {
    flex-direction: column;
  }
}

/* Trusted Section */
.trusted {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.trusted .section-header h2 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.trusted .section-header p {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1.1rem;
}

.trusted-logos {
  margin-top: 3rem;
}

.trusted-logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .trusted {
    padding: 60px 0;
  }

  .trusted-logos {
    margin-top: 2rem;
  }

  .trusted-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
}

.hero-description {
  max-width: 550px;
}

.hero-subtitle {
  letter-spacing: 0.5px;
}

/* 🔥 IMAGE WRAPPER */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-top: 20px;
}

/* 🔥 Vertical image adjustment */
.hero-image-vertical {
  width: auto;
  height: min(500px, 60vh);
  max-height: 550px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 992px) {
  .hero-image-vertical {
    height: min(400px, 50vh);
    max-height: 450px;
  }
}

@media (max-width: 576px) {
  .hero-image-vertical {
    height: min(300px, 45vh);
    max-height: 350px;
  }
}

/* 🔥 Glow behind image */
.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      color-mix(in srgb, var(--accent-color), transparent 80%) 0%,
      transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* 🔥 Image animation */
.hero-image {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatImage 4s ease-in-out infinite;
}

/* Hover effect */
.hero-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* 🔥 Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* 🔥 Button spacing fix */
.hero-actions {
  justify-content: flex-start !important;
}

/* Mobile fix */
@media (max-width: 992px) {
  .hero-actions {
    justify-content: center !important;
  }
}


/*--------------------------------------------------------------
# Trust / Stats Section
--------------------------------------------------------------*/
.trust {
  padding: 80px 0;
  background: var(--background-color);
}

/* Section header */
.trust .section-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.trust .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
}

/* Card style */
.trust-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Hover effect */
.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Icon */
.trust-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item .icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* Numbers */
.trust-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

/* Text */
.trust-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Card wrapper no scroll, 5 cards in one row */
.trust-cards-wrapper {
  overflow: visible;
  padding-bottom: 0;
}

.trust-cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin: 0;
}

.trust-card {
  flex: 0 1 calc(20% - 0.8rem);
  max-width: calc(20% - 0.8rem);
  margin: 0;
}

.trust-card .trust-item {
  min-height: 230px;
}

/* Remove horizontal scrollbar styling */
.trust-cards::-webkit-scrollbar,
.trust-cards::-webkit-scrollbar-track,
.trust-cards::-webkit-scrollbar-thumb {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .trust-card {
    flex: 0 1 calc(33.333% - 0.8rem);
    max-width: calc(33.333% - 0.8rem);
  }
}

@media (max-width: 768px) {
  .trust-cards {
    justify-content: center;
  }

  .trust-card {
    flex: 0 1 calc(50% - 0.8rem);
    max-width: calc(50% - 0.8rem);
  }

  .trust-item {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .trust-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* Modern single-card presentation */
.about-modern {
  background: linear-gradient(130deg, #0cc0df 0%, #ffffff 100%);
  border: 1px solid color-mix(in srgb, #0cc0df, transparent 70%);
  box-shadow: 0 10px 25px rgba(12, 192, 223, 0.15);
}

.about-modern-header h4 {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-modern-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
}

.about-modern-header .lead {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7;
}

.about-modern-highlight {
  background: color-mix(in srgb, var(--surface-color), #0cc0df 10%);
  border: 1px solid color-mix(in srgb, #0cc0df, transparent 70%);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-modern-highlight h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
}

.about-highlight-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.about-highlight-list li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--default-color);
}

.about-highlight-list li::marker {
  color: var(--accent-color);
}

/* Fallback for old DIV-based about layout (ignored safely) */
.about .content-section {
  padding-left: 0;
}

.about .image-section {
  display: none;
}

.about .section-intro .intro-text {
  max-width: none;
}

/* Responsive fix */
@media (max-width: 992px) {
  .about-modern {
    padding: 2rem;
  }

  .about-modern-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .about-modern-header .lead,
  .about-highlight-list li {
    font-size: 0.98rem;
  }
}

/*--------------------------------------------------------------
# Global Presence Section (in About)
--------------------------------------------------------------*/
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-inline: auto;
}

.region-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #10b981);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.region-card:hover::before {
  transform: scaleX(1);
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(13, 110, 253, 0.2);
  border-color: var(--accent-color);
}

.region-card .region-flag {
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  transition: transform 0.3s ease;
}

.region-card:hover .region-flag {
  transform: scale(1.15);
}

.region-card span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  line-height: 1.4;
}

.global-presence-content {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.global-presence-content .section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Approach (premium split card)
--------------------------------------------------------------*/
.approach-premium-card {
  background: linear-gradient(145deg, #ffffff 0%, #f2f6ff 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(11, 26, 233, 0.1);
  overflow: hidden;
}

.approach-premium-grid {
  display: grid;
  grid-template-columns: minmax(220px, 40%) 1fr;
  align-items: stretch;
  min-height: 420px;
}

.approach-media {
  position: relative;
  min-height: 320px;
}

.approach-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.approach-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 34, 80, 0.18), rgba(8, 34, 80, 0.04));
  pointer-events: none;
}

.approach-content {
  padding: 2.25rem 2.2rem;
}

.approach-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), white 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  margin-bottom: 0.9rem;
}

.approach-content .section-title {
  margin-bottom: 0.8rem;
}

.approach-content .section-text {
  max-width: none;
  margin: 0;
  color: #49566d;
  text-align: left;
}

.approach-step-cards {
  margin: 1.3rem 0;
  display: grid;
  gap: 0.7rem;
}

.approach-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  background: #fff;
}

.approach-step i {
  color: var(--accent-color);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: 0.08rem;
}

.approach-step h4 {
  margin: 0 0 0.25rem;
  font-size: 0.97rem;
  color: var(--heading-color);
  font-weight: 700;
}

.approach-step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #586274;
}

.approach-note {
  color: #3b4c66;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .region-card {
    padding: 2rem 1rem;
  }

  .region-card .region-flag {
    font-size: 2.3rem;
  }

  .region-card span {
    font-size: 1rem;
  }

  .global-presence-content {
    padding: 1.5rem;
  }

  .global-presence-content .section-text {
    font-size: 0.95rem;
  }

  .approach-premium-grid {
    grid-template-columns: minmax(160px, 38%) 1fr;
    min-height: 0;
  }

  .approach-content {
    padding: 1.6rem 1.2rem;
  }

  .approach-step h4 {
    font-size: 0.92rem;
  }

  .approach-step p {
    font-size: 0.82rem;
  }
}

@media (max-width: 576px) {
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .approach-premium-grid {
    grid-template-columns: 1fr;
  }

  .approach-media {
    min-height: 210px;
    max-height: 250px;
  }

  .approach-content {
    padding: 1.35rem 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
  margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4facfe 30%));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border: none;
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .services-grid .service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
  color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .services-grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-grid .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .services-tabs .nav-pills {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  padding: 8px;
  display: inline-flex;
  margin: 0 auto;
}

/* Custom “Our Solutions” cards */
.services .solution-cards .solution-card {
  background: linear-gradient(180deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), #f7f8ff 70%) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 18px;
  padding: 2rem;
  min-height: 320px;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.services .solution-cards .solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 86%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .solution-cards .solution-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #81a1ff 30%));
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.services .solution-cards h3 {
  font-size: 1.35rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.services .solution-cards .solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.services .solution-cards .solution-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--default-color);
  font-weight: 500;
  line-height: 1.5;
}

.services .solution-cards .solution-list li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .services .solution-cards .solution-card {
    min-height: auto;
  }
}


.services .services-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.services .services-tabs .tab-service-card .tab-service-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-tabs .tab-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services .services-grid .featured-service-card {
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
  }

  .services .services-grid .featured-service-card .feature-highlights {
    margin-bottom: 2rem;
  }

  .services .services-tabs .nav-pills {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .services .services-tabs .nav-pills .nav-item {
    width: 100%;
  }

  .services .services-tabs .nav-pills .nav-item .nav-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    margin-bottom: 4rem;
  }

  .services .services-grid .featured-service-card {
    padding: 2rem 1.5rem;
  }

  .services .services-grid .featured-service-card .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .services .services-grid .featured-service-card .service-icon-large i {
    font-size: 1.8rem;
  }

  .services .services-grid .featured-service-card h3 {
    font-size: 1.5rem;
  }

  .services .services-grid .featured-service-card .feature-highlights .highlight-item {
    justify-content: flex-start;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }

  .services .services-tabs .tab-service-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-content h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.features .features-content .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.features .features-image {
  position: relative;
}

.features .features-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-5px);
}

.features .feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}

.features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4834d4 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.features .feature-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.features .feature-content h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.features .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .features .features-content {
    text-align: center;
  }

  .features .features-content h2 {
    font-size: 28px;
  }

  .features .features-grid {
    margin-top: 60px;
    gap: 30px;
  }

  .features .feature-item {
    gap: 16px;
  }

  .features .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .features .features-content h2 {
    font-size: 24px;
  }

  .features .features-content .lead {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  margin-bottom: 4rem;
}

.service-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-details .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.service-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.service-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
  transform: scale(1.02);
}

.service-details .service-narrative {
  margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.service-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .timeline-section {
  margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
  position: relative;
}

.service-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-details .service-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
  text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

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

.service-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .service-details .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-details .service-hero .service-description {
    font-size: 1.1rem;
  }

  .service-details .service-visual img {
    height: 250px;
  }

  .service-details .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .timeline-section .timeline::before {
    left: 20px;
  }

  .service-details .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1rem;
  }

  .service-details .overview-card .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ===== MODERN SERVICES DESIGN ===== */

/* ===== CLEAN SERVICE DESIGN ===== */

.services-clean {
  background: #f5f7fb;
}

/* MAIN CARD */
.service-card-new {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.service-card-new:hover {
  transform: translateY(-5px);
}

/* LEFT SIDE */
.service-left .icon {
  width: 60px;
  height: 60px;
  background: #007bff;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-left h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-left p {
  color: #555;
  line-height: 1.7;
}

/* RIGHT SIDE */
.service-right {
  display: flex;
  gap: 20px;
}

/* INNER BOX */
.service-right .box {
  flex: 1;
  background: #f9fbff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.service-right .box h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #007bff;
}

.service-right ul {
  padding-left: 18px;
}

.service-right ul li {
  margin-bottom: 8px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-right {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Why Choose Teloniq Section
--------------------------------------------------------------*/
.why-choose {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.why-choose .why-choose-list .why-choose-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(12, 192, 223, 0.08);
  border: 1px solid rgba(12, 192, 223, 0.15);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-choose .why-choose-list .why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12, 192, 223, 0.18);
  border-color: #0cc0df;
}

.why-choose-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.why-choose .why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0cc0df 0%, #0891c9 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose .why-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.why-choose .why-choose-list .why-choose-item:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(12, 192, 223, 0.4);
}

.why-heading {
  flex: 1;
}

.why-choose .why-choose-list .why-choose-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #242859;
  margin: 0;
  line-height: 1.4;
}

.why-content {
  flex: 1;
}

.why-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .why-choose .why-choose-list .why-choose-item {
    min-height: auto;
    padding: 1.5rem;
  }

  .why-choose-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-choose .why-choose-list .why-choose-item h4 {
    text-align: center;
  }
}





/* ===== ABOUT PAGE DESIGN ===== */

.about-section {
  background: #f8f9fc;
}

/* Titles */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d1b2a;
}

.section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
}

/* Premium company intro — split card: image left, content right */
.company-intro-premium {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  background: linear-gradient(145deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(13, 37, 80, 0.1);
  overflow: hidden;
}

.company-intro-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4868ff, #2bb5ff, #32d2a5);
  z-index: 2;
}

.company-intro-inner {
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(160px, 40%) minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: stretch;
  min-height: 420px;
}

.company-intro-media {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 320px;
  background: linear-gradient(160deg, #e8edff 0%, #dce5ff 100%);
}

.company-intro-media picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.company-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.company-intro-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(13, 37, 80, 0.35) 100%);
  pointer-events: none;
}

.company-intro-content {
  grid-column: 2;
  grid-row: 1;
  padding: 2.5rem 2.5rem 2.5rem 2.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.company-intro-premium .intro-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), white 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}

.company-intro-premium .section-title {
  margin-bottom: 1rem;
  text-align: left;
}

.company-intro-content .section-text {
  margin: 0;
  max-width: none;
  text-align: left;
  color: #4a5568;
}

.company-intro-content .section-text+.section-text {
  margin-top: 1rem;
}

.company-intro-content .intro-metrics {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.intro-metric {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 14px;
  padding: 1rem;
}

.intro-metric strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--heading-color);
}

.intro-metric>span:not(.intro-flags) {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: #5b6578;
}

.intro-metric--locations .intro-flags {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.intro-metric-caption {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #5b6578;
}

/* Card Boxes (Vision/Mission) */
.card-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

.card-box:hover {
  transform: translateY(-5px);
}

.card-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #007bff;
}

/* Features */
.feature-box {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature-box:hover {
  background: #007bff;
  color: white;
}

/* List */
.custom-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}

.custom-list li {
  padding: 12px;
  margin: 8px 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Regions */
.regions {
  margin-top: 20px;
}

.regions span {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  margin: 5px;
  font-size: 14px;
}

/* Closing Section */
.closing-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2f7a 0%, #0b57d0 45%, #11a6d9 100%);
  color: white;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(11, 40, 122, 0.3);
}

.closing-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  margin-bottom: 0.85rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.closing-section::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  top: -120px;
  right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.closing-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.closing-section p {
  margin: 0 auto;
  max-width: 50rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1rem;
}

.closing-highlights {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.closing-pill {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.closing-actions {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.closing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.closing-btn-primary {
  background: #fff;
  color: #0a3ea4;
}

.closing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: #0a3ea4;
}

.closing-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.closing-btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .closing-section {
    padding: 2rem 1rem;
  }

  .closing-section p {
    font-size: 0.92rem;
  }

  .closing-actions {
    gap: 0.55rem;
  }

  .closing-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* Company intro: image left / content right — only stack on very small screens */
@media (max-width: 991px) {
  .company-intro-inner {
    min-height: 380px;
    grid-template-columns: minmax(140px, 36%) minmax(0, 1fr);
  }

  .company-intro-content {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 767px) {
  .company-intro-content .intro-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .company-intro-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-intro-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 220px;
    max-height: 260px;
  }

  .company-intro-content {
    grid-column: 1;
    grid-row: 2;
    padding: 1.75rem 1.25rem;
  }

  .company-intro-premium {
    border-radius: 16px;
  }
}

/*--------------------------------------------------------------
# Global Presence Section (in About)
--------------------------------------------------------------*/
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-inline: auto;
}

.region-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #10b981);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.region-card:hover::before {
  transform: scaleX(1);
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(13, 110, 253, 0.2);
  border-color: var(--accent-color);
}

.region-card .region-flag {
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  transition: transform 0.3s ease;
}

.region-card:hover .region-flag {
  transform: scale(1.15);
}

.region-card span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  line-height: 1.4;
}

.global-presence-content {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.global-presence-content .section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .region-card {
    padding: 2rem 1rem;
  }

  .region-card .region-flag {
    font-size: 2.3rem;
  }

  .region-card span {
    font-size: 1rem;
  }

  .global-presence-content {
    padding: 1.5rem;
  }

  .global-presence-content .section-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Section Header (consistent with other pages) */
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d2b4f;
}

.section-header p {
  color: #6c757d;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ================= SERVICES ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eef1f6;
  transition: 0.3s;
}

.service-card i {
  font-size: 30px;
  color: #4a6cf7;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1d2b4f;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #4a6cf7, #6f86ff);
  color: #fff;
}

.service-card:hover i,
.service-card:hover h4 {
  color: #fff;
}

/* ================= STRENGTH ================= */

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.strength-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #eef1f6;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover */
.strength-card:hover {
  background: #4a6cf7;
  color: #fff;
  transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */

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

@media (max-width: 768px) {

  .services-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------
CONTACT PAGE (CLEAN VERSION)
-------------------------------------------------- */

.contact-page {
  padding: 80px 0;
  background: #f7f9fc;
}

.contact-hero-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 40, 115, 0.12);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  align-items: stretch;
}

.contact-hero-left {
  position: relative;
  padding: 2rem 1.85rem;
  background: linear-gradient(145deg, #0793ab 0%, #0cc0df 50%, #5ce4fa 100%);
  color: #fff;
}

.contact-hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 40%);
  pointer-events: none;
}

.contact-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.75rem;
}

.contact-hero-left h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.contact-hero-left>p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.contact-left-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-left-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.75rem 0.78rem;
  backdrop-filter: blur(4px);
}

.contact-left-card i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.05rem;
}

.contact-left-card h5 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 0.95rem;
}

.contact-left-card a,
.contact-left-card span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  text-decoration: none;
  line-height: 1.45;
}

.contact-left-card a:hover {
  color: #fff;
}

.contact-social-links {
  margin-top: 1.05rem;
  display: flex;
  gap: 0.5rem;
}

.contact-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-hero-right {
  background: #fff;
  padding: 2rem 1.8rem;
}

.contact-form-header {
  text-align: left;
  margin-bottom: 1.2rem;
}

.contact-form-header h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 0.4rem;
}

.contact-form-header p {
  font-size: 0.92rem;
  color: #6c757d;
}

/* spacing between blocks */
.contact-info-panel,
.offices-block,
.contact-form-block,
.careers-block,
.availability-block,
.support-block {
  margin-bottom: 60px;
}

/* ================= CONTACT INFO ================= */

.contact-info-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.info-header {
  text-align: center;
  margin-bottom: 40px;
}

.info-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d2b4f;
}

.info-header p {
  font-size: 15px;
  color: #6c757d;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.info-card {
  background: #f9fbff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  border: 1px solid #eef1f6;
  transition: 0.3s;
}

.info-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icon */
.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #4a6cf7, #6f86ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ================= OFFICES ================= */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d2b4f;
}

.section-header p {
  font-size: 15px;
  color: #6c757d;
}

/* Grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.premium-contact-block {
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid #e4ebff;
  border-radius: 20px;
  padding: 2rem 1.4rem;
  box-shadow: 0 14px 38px rgba(15, 35, 90, 0.07);
}

/* Card */
.office-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 24px;
  text-align: center;
  border: 1px solid #e2eaff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.office-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(20, 66, 175, 0.14);
  border-color: #9fb9ff;
}

/* Icon */
.office-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #255ce8, #5d8dff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Toggle icon */
.map-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #edf2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  cursor: pointer;
}

.map-toggle:hover {
  background: #2b5fd4;
  color: #fff;
}

.office-card h3 {
  color: #1b2d53;
  margin-bottom: 0.45rem;
}

.office-card p {
  color: #5f6d84;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Hidden Map */
.map-container {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  margin-top: 15px;
}

.map-container.active {
  max-height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
}

/* ================= FORM ================= */

.form-wrapper {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.premium-form {
  background: #fff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-hero-right .form-grid.form-grid-single {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-hero-right .form-group label {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.81rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2c3b5f;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #e4e8f0;
  background: #fbfcff;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4a6cf7;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.12);
  outline: none;
}

.form-submit {
  text-align: left;
  margin-top: 24px;
}

.form-submit button {
  background: linear-gradient(135deg, #0793ab, #0cc0df);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(12, 192, 223, 0.28);
}

.form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 192, 223, 0.4);
  background: linear-gradient(135deg, #08a3bd, #1dd4f2);
}

/* ================= INFO BOX ================= */

.info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eef1f6;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.info-box-premium {
  max-width: 760px;
  border: 1px solid #e2eaff;
  box-shadow: 0 10px 28px rgba(10, 34, 94, 0.07);
}

.info-box-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.8rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #0cc0df 0%, #0891b2 50%, #0e7490 100%);
  box-shadow: 0 10px 22px rgba(12, 192, 223, 0.3);
}

.highlight {
  color: #4a6cf7;
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, #4a6cf7, #6f86ff);
  color: #fff;
}

.support-highlight-box {
  max-width: 760px;
  border: none;
  box-shadow: 0 16px 36px rgba(34, 79, 197, 0.3);
}

.support-highlight-box .info-box-icon {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.support-highlight-box p {
  color: rgba(255, 255, 255, 0.95);
}

/* ================= RESPONSIVE ================= */

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

@media (max-width: 768px) {

  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-left,
  .contact-hero-right {
    padding: 1.5rem 1.1rem;
  }

  .offices-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .premium-contact-block {
    padding: 1.4rem 0.9rem;
  }

  .full-width {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {

  .contact-info-panel,
  .form-wrapper {
    padding: 30px 20px;
  }

  .contact-left-card {
    grid-template-columns: 38px 1fr;
  }

  .contact-left-card i {
    width: 38px;
    height: 38px;
  }
}




/* ================= DEV PAGE ================= */

.dev-section {
  padding: 70px 0;
}

.dev-section.light {
  background: #e7e9ed;
}

.dev-section .section-text {
  max-width: 800px;
  margin: 15px auto;
  color: #6c757d;
}

/* Buttons */
.hero-buttons {
  margin-top: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #0793ab, #0cc0df);
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  margin: 5px;
  display: inline-block;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #4a6cf7;
  color: #4a6cf7;
  padding: 12px 25px;
  border-radius: 10px;
  margin: 5px;
  text-decoration: none;
}

/* Integration */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.integration-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eef1f6;
  transition: 0.3s;
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.integration-card h3 {
  margin-bottom: 10px;
}

.integration-card ul {
  padding-left: 18px;
}

.integration-card li {
  margin-bottom: 6px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.features-grid div {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

/* Premium capabilities */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid #dce6ff;
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem;
  text-align: left;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: #8fb1ff;
  box-shadow: 0 16px 32px rgba(17, 57, 160, 0.14);
}

.capability-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #1f5ed8, #1b8de5);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(27, 98, 216, 0.28);
}

.capability-card h4 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: #1d2b4f;
}

.capability-card p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.55;
  color: #5b6578;
}

/* Delivery tracking cards */
.tracking-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tracking-card {
  text-align: left;
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid #d9e4ff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(16, 38, 92, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tracking-card:hover {
  transform: translateY(-4px);
  border-color: #8fb1ff;
  box-shadow: 0 15px 30px rgba(17, 57, 160, 0.16);
}

.tracking-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #1f5ed8, #1b8de5);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(27, 98, 216, 0.28);
}

.tracking-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #1d2b4f;
}

.tracking-card p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.55;
  color: #5b6578;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  text-align: center;
}

.steps div {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

/* Premium onboarding flow */
.onboarding-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.onboarding-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid #d9e4ff;
  border-radius: 14px;
  padding: 1rem 0.85rem 0.9rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.onboarding-card:hover {
  transform: translateY(-4px);
  border-color: #8fb1ff;
  box-shadow: 0 16px 32px rgba(17, 57, 160, 0.16);
}

.onboarding-step {
  position: absolute;
  top: 0.6rem;
  right: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2b5fd4;
  background: #e9f0ff;
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
}

.onboarding-card i {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #1f5ed8, #1b8de5);
  box-shadow: 0 8px 18px rgba(27, 98, 216, 0.28);
}

.onboarding-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #1d2b4f;
}

.onboarding-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #5b6578;
}

/* Security + support premium blocks */
.feature-highlight-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: start;
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid #d9e4ff;
  border-radius: 16px;
  padding: 1.2rem 1.2rem;
  box-shadow: 0 12px 30px rgba(16, 38, 92, 0.09);
}

.feature-highlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f5ed8, #1b8de5);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(27, 98, 216, 0.28);
}

.feature-highlight-content h2 {
  margin: 0 0 0.45rem;
  color: #1d2b4f;
}

.feature-highlight-content .section-text {
  margin: 0;
  max-width: none;
}

.feature-highlight-points {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.feature-highlight-points span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #2a56bd;
  background: #eaf1ff;
  border: 1px solid #cddcff;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}

.support-card .feature-highlight-icon {
  background: linear-gradient(135deg, #0e6cbf, #20a4d8);
}

/* Client portal CTA */
.client-portal-card {
  background: linear-gradient(135deg, #0f56d5 0%, #1976e3 55%, #2aa4dc 100%);
  border-radius: 16px;
  padding: 2rem 1.2rem;
  color: #fff;
  box-shadow: 0 18px 42px rgba(17, 57, 160, 0.28);
}

.client-portal-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.12);
}

.client-portal-card h2 {
  color: #fff;
  margin-bottom: 0.45rem;
}

.client-portal-card .section-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.client-portal-actions {
  margin-top: 0.8rem;
}

.client-portal-card .btn-primary {
  background: #0cc0df;
  color: #fff;
  border: none;
  font-weight: 600;
}

.client-portal-card .btn-primary:hover {
  color: #114fbf;
}

/* Responsive */
@media (max-width: 768px) {

  .integration-grid,
  .features-grid,
  .capability-grid,
  .tracking-grid,
  .onboarding-cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-highlight-card {
    grid-template-columns: 1fr;
  }

  .feature-highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}