/**
* Template Name: Devin
* Template URL: https://bootstrapmade.com/devin-bootstrap-template/
* Updated: Jul 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Nib Pro", sans-serif;
  --nav-font: "Open Sans", 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: #2f558c;
  /* Background color for the entire website, including individual sections */
  --light-color: #8ba1cf;
  /* --secondary-color: #005EFF; */
  --secondary-color: #005eff;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1f2d55;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1a2b56;
  /* 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: rgba(83, 93, 107, 0.875);
  /* The default color of the main navmenu links */
  --nav-hover-color: #0b1e38;
  /* 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: #535d6b;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5c99ee;
  /* 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: #f8fbff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
  --scrollbar-size: 12px;
  --scrollbar-track: #d9e4f8;
  --scrollbar-thumb: #1f3f83;
  --scrollbar-thumb-hover: #173168;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2c56ad 0%, var(--scrollbar-thumb) 100%);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #214793 0%,
    var(--scrollbar-thumb-hover) 100%
  );
}

*::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

.background-gradient {
  --background-color: transparent;
  background:
    radial-gradient(
      1200px circle at 12% 18%,
      color-mix(in srgb, var(--accent-color), transparent 78%),
      transparent 55%
    ),
    radial-gradient(
      1000px circle at 88% 8%,
      color-mix(in srgb, var(--accent-color), transparent 82%),
      transparent 48%
    ),
    linear-gradient(
      180deg,
      #c6d9ff 0%,
      /* var(--accent-color) 0%,        */ #d6e3ff 15%,
      /* var(--surface-color) 15%,              */ #e6edff 30%,
      #f0f5ff 45%,
      #f7faff 60%,
      #ffffff 75%,
      #ffffff 100%
    );
}

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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

/* Global Header on Scroll
------------------------------*/

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a:not(.dropdown-menu a),
  .navmenu a:not(.dropdown-menu a):focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--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; */
    text-transform: none;
    font-size: 15px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    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;
  }
}

/* Mobile Navigation */
@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;
    z-index: 10001;
    position: relative;
  }

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

  /* Fullscreen overlay panel */
  .navmenu > ul {
    list-style: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 120px 40px 60px;
    background: linear-gradient(160deg, #0a1628 0%, #132044 50%, #0f1a36 100%);
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    z-index: 10000;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    visibility: hidden;
  }

  .navmenu > ul > li {
    opacity: 0;
    transform: translateX(30px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    transition:
      color 0.3s,
      transform 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.01em;
  }

  .navmenu a:hover,
  .navmenu a:focus:hover {
    color: #fff;
    transform: translateX(6px);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }

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

  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px 0;
    margin: 0 0 0 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
    border: none;
    list-style: none;
  }

  .navmenu .dropdown ul a {
    font-size: 1rem;
    padding: 12px 16px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.65);
  }

  .navmenu .dropdown ul a:hover {
    color: #fff;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(255, 255, 255, 0.03);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(255, 255, 255, 0.04);
  }

  /* Mobile language selector styling */
  .navmenu .mobile-lang-selector {
    margin-top: auto;
    padding-top: 24px;
    border-bottom: none !important;
  }

  .navmenu .mobile-lang-selector .lang-btn-simple {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .navmenu .mobile-lang-selector .lang-btn-simple.active {
    color: #fff;
    border-color: var(--accent-color);
    background: var(--accent-color);
  }

  .navmenu .lang-selector-nav {
    display: none !important;
  }

  /* Active state — menu open */
  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 20px;
    right: 24px;
    margin-right: 0;
    z-index: 10002;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 10000;
  }

  .mobile-nav-active .navmenu > ul {
    transform: translateX(0);
    visibility: visible;
  }

  /* Stagger animation for menu items */
  .mobile-nav-active .navmenu > ul > li {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-nav-active .navmenu > ul > li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .mobile-nav-active .navmenu > ul > li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .mobile-nav-active .navmenu > ul > li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .mobile-nav-active .navmenu > ul > li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .mobile-nav-active .navmenu > ul > li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .mobile-nav-active .navmenu > ul > li:nth-child(6) {
    transition-delay: 0.35s;
  }
}

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover > .desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 30px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: var(--surface-color);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu
    .megamenu-2
    .tab-navigation
    .nav-tabs
    .nav-item
    .nav-link.active
    span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link:hover
    i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link
    i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link
    div {
    flex: 1;
    min-width: 0;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link
    div
    span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .content-grid
    .product-section
    .product-list
    .product-link
    div
    small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(
      135deg,
      var(--surface-color) 0%,
      color-mix(in srgb, var(--accent-color), transparent 98%) 100%
    );
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info
    h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info
    p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info
    .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info
    .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info
    .cta-btn:hover
    i {
    transform: translateX(4px);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .featured-banner
    .banner-content
    .banner-info
    .cta-btn
    i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    .resource-link:hover
    i {
    transform: translateX(3px);
  }

  .navmenu
    .megamenu-2
    .tab-content
    .resources-layout
    .resource-categories
    .resource-category
    .resource-link
    i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* DROPDOWN IDIOMA EN NAV */
.navmenu .lang-selector-nav ul {
  min-width: 10px;
  max-width: 130px !important;
  height: 80px;
}

.navmenu .lang-selector-nav .lang-item {
  cursor: pointer;
  padding: 0 !important;
  margin-left: 15px;
  margin: 5px;
  margin-right: 15px;
  font-size: 15px !important;
  width: 10px !important;
}

.navmenu .lang-selector-nav .lang-item.active {
  color: var(--accent-color);
}

/* Estilos para el selector de idioma */
.lang-selector-wrapper {
  z-index: 1000;
}

.navmenu {
  z-index: 999;
  /* Un nivel menos que el selector */
}

/* Ajustes específicos para móvil */
.mobile-lang-selector {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-selector .lang-btn {
  width: 100%;
  justify-content: center;
}

/* Asegurar que el dropdown se vea por encima del modal */
.navmenu .dropdown-menu {
  z-index: 1001 !important;
}

/* Para el modo móvil (offcanvas/modal) */
@media (max-width: 1199.98px) {
  .lang-selector-wrapper {
    display: none !important;
  }

  .navmenu {
    z-index: 1045;
    /* Bootstrap offcanvas tiene z-index 1045 */
  }

  .navmenu .dropdown-menu {
    z-index: 1046 !important;
    /* Por encima del offcanvas */
  }
}

@media (min-width: 1200px) {
  .mobile-lang-selector {
    display: none !important;
  }
}

/* Estilos para el dropdown del idioma */
.lang-dropdown {
  min-width: 180px;
  border: 1px solid rgba(26, 43, 86, 0.1);
  box-shadow: 0 10px 20px rgba(26, 43, 86, 0.1);
  margin-top: 0.5rem !important;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid rgba(26, 43, 86, 0.2);
  color: #1a2b56;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: rgba(26, 43, 86, 0.05);
  border-color: rgba(26, 43, 86, 0.4);
}

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown-2 ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(
      in srgb,
      var(--nav-dropdown-background-color),
      transparent 5%
    );
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .extended-dropdown-2 ul li {
    min-width: auto;
    border-bottom: none;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .extended-dropdown-2 ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      var(--accent-color),
      color-mix(in srgb, var(--accent-color), #7644ff 80%)
    );
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .extended-dropdown-2 ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .extended-dropdown-2 ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px
      color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown-2 ul {
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .extended-dropdown-2 ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      var(--accent-color),
      color-mix(in srgb, var(--accent-color), #7644ff 80%)
    );
    opacity: 0.15;
    z-index: -1;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.9);
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    display: none;
  }

  @media (min-width: 650px) {
    .extended-dropdown-2 ul a .menu-text .menu-description {
      display: block;
    }
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .extended-dropdown-2 ul a:hover,
  .extended-dropdown-2 ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title,
  .extended-dropdown-2 ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: radial-gradient(circle at 50% 50%, #1a3bb1 0%, #060b18 100%);
  color: #f5f7ff;
  font-size: 15px;
  padding: 60px 0 30px;
  position: relative;
}

.footer a {
  color: #d7deff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #a9c4ff;
}

.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer .footer-logo-icon {
  width: 10rem;
}

.footer .footer-logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #f5f7ff;
  font-family: var(--heading-font);
}

.footer .footer-logo-dot {
  font-weight: 500;
  color: #d7deff;
}

.footer .footer-main {
  row-gap: 32px;
}

.footer .footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f5f7ff;
  font-family: var(--heading-font);
}

.footer .footer-col p {
  margin: 0;
  color: #d7deff;
  line-height: 1.6;
}

.footer .footer-contact-line {
  margin-top: 18px;
}

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

.footer .footer-email {
  display: inline-block;
  margin: 12px 0 14px;
  color: #f5f7ff;
}

.footer .footer-social {
  display: flex;
  gap: 10px;
}

.footer .footer-social a {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-social img {
  width: 24px;
}

.footer .footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #d7deff;
  font-size: 13px;
}

.footer .footer-bottom p {
  margin: 0;
}

@media (max-width: 991px) {
  .footer .footer-brand {
    justify-content: center;
  }

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

@media (max-width: 575px) {
  .footer .footer-brand {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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

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

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

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

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

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

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

@media (min-width: 770px) {
  .page-title h1 {
    font-size: 42px;
  }
}

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

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

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

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

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

.section-title h2 {
  font-size: 3rem !important;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 40px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 15%;
  height: 1px;
  background: var(--secondary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pillars Section
--------------------------------------------------------------*/
.pillars {
  --background-color: transparent;
  padding-top: 100px !important;
  padding-bottom: 60px !important;
  background: transparent;
}

.pillars .section-title h2 {
  font-weight: 500;
  letter-spacing: 0.2px;
}

.pillars .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 720px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
}

.pillar-card {
  background: transparent;
  border: 1px solid rgba(30, 55, 120, 0.08);
  /* border-top: 3px solid var(--secondary-color); */
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(30, 55, 120, 0.06);
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(30, 55, 120, 0.12);
  border-top-color: var(--secondary-color);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 8px;
  background: color-mix(in srgb, var(--secondary-color), transparent 90%);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: color-mix(in srgb, var(--secondary-color), transparent 82%);
}

.pillar-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.3;
}

.pillar-desc {
  margin: 0;
  padding-left: 16px;
  margin-left: 0;
  border-left: 2px solid
    color-mix(in srgb, var(--secondary-color), transparent 50%);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.65;
  font-size: 14px;
  flex: 1;
}

@media (max-width: 768px) {
  .pillars {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pillar-card {
    padding: 22px 20px;
  }

  .pillar-card h3 {
    font-size: 17px;
  }

  .pillar-icon {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*--------------------------------------------------------------
# MDIX Section
--------------------------------------------------------------*/

.mdix-section h3 {
  color: var(--heading-color);
  font-weight: 700;
}

.mdix-section {
  padding: 70px 0 90px;
  /* background-image: url(../img/shapes_banners/mdabroad_website_home_mdix-banner.jpg); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: right center; */
  background-color: #f2f3f6 !important;
}

.mdix-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(30, 55, 120, 0.1);
}

.mdix-logo {
  width: clamp(90px, 12vw, 140px);
  height: auto;
}

.mdix-title {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.3;
  margin: 0;
  max-width: 420px;
  letter-spacing: -0.3px;
}

.mdix-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  align-items: center;
  gap: 40px;
  padding: clamp(32px, 4vw, 48px);
  /* background: rgba(255, 255, 255, 0.55); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
  border-radius: 16px;
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
  /* box-shadow: 0 8px 32px rgba(30, 55, 120, 0.08); */
}

.mdix-panel-content {
  display: flex;
  flex-direction: column;
}

.mdix-copy {
  color: #1f2b4d;
  font-weight: 600;
}

.mdix-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  margin: 0 0 20px;
  color: #3a4a6e;
  font-weight: 500;
  line-height: 1.6;
}

.mdix-list {
  margin: 40px 0 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.mdix-list li {
  font-weight: 500;
  font-size: 16px;
  color: #2e3b62;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.mdix-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 14px;
  color: var(--secondary-color);
}

.mdix-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--secondary-color), transparent 70%);
  border: 2px solid transparent;
  margin-top: 12px;
}

.mdix-cta:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.mdix-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mdix-cta:hover i {
  transform: translateX(4px);
}

.mdix-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mdix-mark {
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(20, 35, 80, 0.2));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.mdix-panel:hover .mdix-mark {
  transform: scale(1.03);
  filter: drop-shadow(0 20px 30px rgba(20, 35, 80, 0.28));
}

@media (max-width: 991px) {
  .mdix-header {
    flex-direction: column;
    gap: 14px;
  }

  .mdix-mark {
    width: clamp(180px, 28vw, 290px);
  }

  .mdix-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mdix-art {
    order: -1;
  }
}

@media (max-width: 575px) {
  .mdix-panel {
    padding: 24px;
  }

  .mdix-list {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 16px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  --hero-pad-top: clamp(2rem, 3rem, 8rem);
  --hero-pad-bottom: 10px;
  /* --hero-container-pad: clamp(48px, 6vh, 80px); */
  --hero-min-height: clamp(44vh, 78vh, 80vh);
  --hero-brand-top: 0px;
  --hero-brand-right: 0px;
  --hero-brand-bottom: 0px;
  --hero-brand-aspect: 493 / 491;
  --hero-brand-radius: 40%;
  --hero-brand-br-radius: var(--hero-radius);
  /* Hero video controls */
  --hero-brand-mask-url: url("../img/shapes_banners/mdabroad_website_home_videomask_trimmed.png");
  --hero-brand-mask-offset-left: 0px;
  --hero-brand-mask-offset-top: 0px;
  --hero-brand-mask-size-x: 102.1%;
  --hero-brand-mask-size-y: 102.1%;
  --hero-brand-media-bleed-right: 0px;
  --hero-brand-media-bleed-bottom: 0px;
  --hero-brand-width-mobile: min(78vw, 430px);
  --hero-brand-scale: 1;
  --hero-video-object-position: center center;
  --hero-bg-color: #859bca;
  --hero-bg-art-aspect: 1280 / 566;
  --hero-bg-art-blend: clamp(1px, 0.15vw, 2px);
  --hero-bg-fade-start: 88%;
  --hero-bg-fade-end: 100%;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom) 0;
  padding-top: 6rem;
  min-height: var(--hero-min-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  --hero-radius: clamp(28px, 10vw, 120px);
  background-color: var(--hero-bg-color);
  border-radius: 0 0 var(--hero-radius) 0;
}

/*--------------------------------------------------------------
# What We Do Hero
--------------------------------------------------------------*/
.whatwedo-hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  --hero-radius: clamp(28px, 9vw, 90px);
  background-image: url("../img/Fotos/px-8867249.jpg");
  background-size: cover;
  background-position: top;
  border-radius: 0 0 var(--hero-radius) var(--hero-radius);
  min-height: 50rem;
  display: flex;
  align-items: center;
  justify-content: start;
}

.whatwedo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 32, 69, 0.88) 0%,
    rgba(18, 32, 69, 0.55) 55%,
    rgba(18, 32, 69, 0.15) 100%
  );
}

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

.whatwedo-hero-inner {
  min-height: clamp(20rem, 28rem, 32rem);
  display: flex;
  align-items: center;
  justify-content: start;
}

.whatwedo-hero-copy {
  max-width: 520px;
  color: #f5f7ff;
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  justify-content: center;
  padding-top: 5rem;
  gap: 10px;
}

.whatwedo-hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.whatwedo-highlight {
  color: var(--secondary-color);
  font-weight: 700;
}

.whatwedo-hero-copy p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(245, 247, 255, 0.88);
}

.whatwedo-hero-link {
  font-weight: 600;
  color: #f5f7ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 247, 255, 0.6);
  padding-bottom: 2px;
  padding-top: 10rem;
  width: 11.5rem;
}

.whatwedo-hero-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

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

  .whatwedo-hero-copy {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# What We Do Services
--------------------------------------------------------------*/
.whatwedo-services {
  padding: 70px 0 90px;
  background: radial-gradient(
    circle at top left,
    #eef2fb 0%,
    #f7f9fd 45%,
    #f5f7fb 100%
  );
  background-image: url(../img/shapes_banners/mdabroad_website_whatwedo_banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.whatwedo-services-header {
  max-width: 720px;
  margin: 0 auto 38px;
}

.whatwedo-eyebrow {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.whatwedo-services-header p {
  margin: 0;
  color: #2e3b62;
  font-size: 1.25rem;
  line-height: 1.5;
}

.whatwedo-services-header strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.whatwedo-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  margin-top: 60px;
}

.whatwedo-card {
  background: #ffffff;
  border: 1px solid rgba(30, 55, 120, 0.08);
  border-left: 2px solid transparent;
  border-radius: 16px;
  padding: 30px 24px;
  margin: 0;
  text-decoration: none;
  color: #26345a;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 16px rgba(30, 55, 120, 0.06);
  transition: all 0.35s ease;
  justify-self: stretch;
}

.whatwedo-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--secondary-color);
  box-shadow: 0 12px 32px rgba(30, 55, 120, 0.12);
}

.whatwedo-card-icon {
  width: 42px;
  height: 42px;
  color: var(--secondary-color);
  filter: brightness(0) saturate(100%) invert(34%) sepia(79%) saturate(4764%)
    hue-rotate(215deg) brightness(96%) contrast(105%);
}

.whatwedo-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.whatwedo-card-link {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.whatwedo-cta-wrap {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

@media (max-width: 720px) {
  .whatwedo-cta-wrap {
    margin-top: 50px;
  }
}

.whatwedo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  padding: 14px 35px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 8px;
  background: var(--secondary-color);
  color: var(--contrast-color) !important;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--secondary-color), transparent 70%);
}

.whatwedo-cta:hover {
  background: transparent !important;
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  text-decoration: none !important;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

/* Specific hover for dark backgrounds in hero details */
.hero-detail .btn-primary:hover {
  background: #ffffff !important;
  color: #001281 !important; /* MDabroad blue */
  border-color: #ffffff !important;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.whatwedo-ecosystem {
  display: grid;
  /* Cambiamos 1fr por auto para evitar que ocupe el 100% de la pantalla */
  grid-template-columns: minmax(0, 520px) auto;
  gap: 50px;
  align-items: start;
  justify-content: center;
  margin-top: 100px !important;
}

.whatwedo-ecosystem-copy h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-color);
  line-height: 1.25;
  font-family: var(--nav-font);
}

.whatwedo-ecosystem-copy h3 span {
  color: var(--default-color);
}

.whatwedo-ecosystem-copy p span {
  color: var(--secondary-color);
  font-weight: 500;
}

.resalt {
  color: var(--secondary-color);
}

.whatwedo-ecosystem-copy p {
  color: #556486;
  margin-bottom: 40px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.55;
  font-family: var(--default-font);
}

.whatwedo-ecosystem-copy .whatwedo-hero-link {
  color: #3a4a74;
  border-bottom-color: rgba(58, 74, 116, 0.6);
  font-family: var(--nav-font);
  font-size: 16px;
}

.whatwedo-ecosystem-copy .whatwedo-hero-link:hover {
  color: #2b385e;
  border-bottom-color: rgba(43, 56, 94, 0.9);
}

.whatwedo-ecosystem-art {
  display: flex;
  justify-content: flex-end;
}

.whatwedo-ecosystem-art img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .whatwedo-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .whatwedo-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatwedo-ecosystem {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .whatwedo-ecosystem-art {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .whatwedo-card-grid {
    grid-template-columns: 1fr;
  }
}

.lets-build-section {
  padding: 20px;
  padding-bottom: 60px;
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 160px;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .lets-build-section {
    gap: 40px;
  }
}

.lets-build-section h2 {
  font-weight: 600;
  font-size: 40px;
  max-width: 350px;
  line-height: 60px;
}
@media (max-width: 992px) {
  .lets-build-section h2 {
    max-width: 500px;
  }
}

@media (max-width: 720px) {
  .lets-build-section h2 {
    max-width: 500px;
    font-size: 32px;
    line-height: 40px;
  }

  .lets-build-section p {
    margin-bottom: 10px;
  }
}

.lets-build-section p {
  font-weight: 500;
  color: var(--accent-color);
  max-width: 500px;
  font-size: 18px;
  margin-bottom: 50px;
}

.lets-build-section span {
  color: var(--secondary-color);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  aspect-ratio: var(--hero-bg-art-aspect);
  background-image: url("../img/shapes_banners/mdabroad_website_home_hero.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #fff var(--hero-bg-art-blend),
    #fff 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #fff var(--hero-bg-art-blend),
    #fff 100%
  );
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .hero {
    --hero-radius: 12vw;
    background-color: var(--hero-bg-color);
  }
}

/* 
.hero::after {
  content: "";
  position: absolute;
  top: 25rem;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #1a2b56;
  transform: translateY(-50%);
} */

.hero .container {
  padding: var(--hero-container-pad) 15px;
}

.hero .hero-content {
  padding: 0 30px 0 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero .hero-content h1 {
  font-size: 2.48rem !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-content h1 span {
  color: var(--secondary-color);
  position: relative;
}

/* 
.hero .hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1px;
  opacity: 0.3;
} */

.logo-wrapper {
  position: relative;
  width: 45vw;
  height: 10rem;
}

#logo-animation {
  position: absolute;
  /* width: 200%; */
  inset: 0;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
  width: var(--hero-brand-width-mobile);
  max-width: 100%;
  aspect-ratio: var(--hero-brand-aspect);
  background-color: transparent;
  border-radius: 0;
}

.hero-brand-media {
  position: absolute;
  top: 0;
  left: 0;
  right: var(--hero-brand-media-bleed-right);
  bottom: var(--hero-brand-media-bleed-bottom);
  overflow: hidden;
  background-color: #2f558c;
  -webkit-mask-image: var(--hero-brand-mask-url);
  mask-image: var(--hero-brand-mask-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: var(--hero-brand-mask-offset-left)
    var(--hero-brand-mask-offset-top);
  mask-position: var(--hero-brand-mask-offset-left)
    var(--hero-brand-mask-offset-top);
  -webkit-mask-size: var(--hero-brand-mask-size-x) var(--hero-brand-mask-size-y);
  mask-size: var(--hero-brand-mask-size-x) var(--hero-brand-mask-size-y);
}

.hero-brand-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-video-object-position);
}

.brand-text-wrapper {
  overflow: hidden;
  position: absolute;
  top: 30%;
  left: 45%;
  height: 50%;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #000;
  /* transform: translateX(-100%); */
  opacity: 0;
  transform: translateX(-40px);
}

.brand-text.is-animated {
  animation: slideIn 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.brand-text strong {
  font-weight: 700;
}

.dot {
  display: inline-block;
  margin: 0 2px;
  font-size: 59px;
  line-height: 1;
  color: #1a2b56;
  position: relative;
  top: -12px;
}

.hero .hero-actions,
.whatwedo-hero .hero-actions {
  display: flex;
  align-items: start;
  gap: 30px;
}

.hero .hero-content p {
  font-size: 16px !important;
  line-height: 1.6;
  /* color: color-mix(in srgb, var(--default-color), transparent 25%); */
  color: #000;
  margin-bottom: 35px;
  max-width: 400px !important;
}

@media (min-width: 1120px) and (max-width: 1200px) {
  .hero-content {
    right: 100px !important;
  }
}

@media (min-width: 990px) and (max-width: 1120px) {
  .hero-content {
    right: 40px !important;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .hero .hero-content p {
    max-width: 300px !important;
  }
}

@media (max-width: 990px) {
  .hero .hero-content p {
    max-width: 100% !important;
  }
}

.hero .btn-primary,
.whatwedo-hero .btn-primary {
  background: var(--secondary-color);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--secondary-color), transparent 70%);
  border: 2px solid transparent;
}

.intro .btn-primary {
  background: var(--secondary-color);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--secondary-color), transparent 70%);
  border: 2px solid transparent;
}

.hero .btn-primary:hover,
.intro .btn-primary:hover,
.whatwedo-hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.whatwedo-hero .btn-primary:hover {
  background: #ffffff !important;
  color: var(--accent-color) !important;
  border-color: #ffffff !important;
}

.hero .btn-video {
  color: var(--default-color);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero .btn-video i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .btn-video:hover {
  color: var(--accent-color);
}

.hero .btn-video:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: scale(1.1);
}

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

/* Small devices */
@media (min-width: 422px) {
  .logo-wrapper {
    width: 45vw;
    height: 8rem;
  }

  .brand-text {
    font-size: 35px;
  }

  /* .hero::after{
    top: 32rem;
  } */
}

/* Small devices */
@media (min-width: 576px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }

  .hero .hero-content p {
    font-size: 1.125rem;
  }

  .brand-text {
    font-size: 45px;
  }

  /* .hero::after{
    top: 30rem;
  } */
}

/* Tablets */
@media (min-width: 768px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }

  /* .hero::after{
    top: 30rem;
  } */
  .brand-text-wrapper {
    top: 20%;
    left: 50%;
  }
}

/* Laptops */
@media (min-width: 992px) {
  /* .hero {
    --hero-brand-width: 50vw;
    --hero-brand-max-width: 55vw;
  } */

  .hero .hero-content {
    text-align: start;
  }

  .hero-brand {
    position: absolute;
    right: var(--hero-brand-right);
    top: var(--hero-brand-top);
    height: calc(100% - var(--hero-brand-top) - var(--hero-brand-bottom));
    margin: 0;
    width: auto;
    aspect-ratio: var(--hero-brand-aspect);
    overflow: hidden;
    padding-left: 0;
    transform: scale(var(--hero-brand-scale));
    transform-origin: top right;
    z-index: 1;
  }

  .hero {
    --hero-brand-mask-size-x: calc(102.5% + 0.14vh);
    --hero-brand-mask-size-y: calc(102.7% + 0.18vh);
    --hero-brand-media-bleed-right: clamp(-24px, -2vh, -10px);
    --hero-brand-media-bleed-bottom: clamp(-30px, -2.4vh, -12px);
  }

  /* .hero::after{
    top: 20rem;
  } */
  .logo-wrapper {
    width: 13rem;
    height: 13rem;
    position: absolute;
    top: -2rem;
    left: 3.5rem;
  }

  .brand-text-wrapper {
    top: 32.5%;
    left: 50%;
  }

  .hero .hero-content p {
    max-width: 100%;
  }

  .hero .hero-content {
    padding-right: 0;
    /* text-align: center; */
    margin-bottom: 50px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  /* .hero::after{
    top: 17rem;
  } */
  .logo-wrapper {
    width: 15rem;
    height: 15rem;
  }

  .brand-text-wrapper {
    top: 30%;
  }

  .brand-text {
    font-size: 59px;
  }
}

@media (min-width: 992px) and (min-height: 780px) {
  .hero {
    --hero-brand-mask-size-x: calc(102.9% + 0.18vh);
    --hero-brand-mask-size-y: calc(103.2% + 0.24vh);
    --hero-brand-media-bleed-right: clamp(-32px, -2.8vh, -14px);
    --hero-brand-media-bleed-bottom: clamp(-42px, -3.5vh, -18px);
  }
}

/* Large screens */
@media (min-width: 1400px) {
  .hero {
    --hero-brand-width: 38vw;
    --hero-brand-max-width: 45vw;
  }

  .logo-wrapper {
    width: 15rem;
    height: 15rem;
    left: 6rem;
  }
}

@media (max-width: 991px) {
  .hero {
    --hero-pad-bottom: 0px;
    min-height: auto;
  }

  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero .row > .col-lg-6.d-flex.justify-content-center {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-brand {
    width: 100%;
    max-width: 100%;
  }

  .hero-brand-media {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: var(--hero-brand-radius) 0 var(--hero-radius) 0;
  }

  .hero-brand-video {
    border-radius: inherit;
  }
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

/* .hero .hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
} */
/* 
@media (max-width: 768px) {
  .hero .hero-image::before {
    width: 300px;
    height: 300px;
  }
}

.hero .floating {
  max-width: 85%;
  height: auto;
  animation: floating 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%));
}

@media (max-width: 768px) {
  .hero .floating {
    max-width: 90%;
  }
} */

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }

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

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}

.clients .swiper-wrapper {
  transition-timing-function: linear !important;
}

.clients .swiper {
  position: relative;
  overflow: hidden;
}

.clients .swiper::before,
.clients .swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.clients .swiper::before {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--background-color) 0%,
    color-mix(in srgb, var(--background-color), transparent 100%) 100%
  );
}

.clients .swiper::after {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--background-color) 0%,
    color-mix(in srgb, var(--background-color), transparent 100%) 100%
  );
}

.clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  width: auto;
  max-width: 100%;
  height: clamp(3.75rem, 2.6vw, 4.5rem);
  object-fit: contain;
  display: block;
}

.clients .swiper-slide img:hover {
  transform: scale(1.05);
}

.clients .swiper-wrapper {
  height: auto;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 30px;
  padding-bottom: 120px;
}

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

.about .about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about .about-image img:hover {
  transform: translateY(-5px);
}

.about .content {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .about .content {
    padding-left: 0;
    margin-top: 60px;
  }
}

.about .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .stats-row {
  display: flex;
  gap: 40px;
  margin: 60px 0 40px 0;
  padding: 40px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .about .stats-row {
    flex-direction: column;
    gap: 30px;
  }
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item h3 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--accent-color);
  line-height: 1;
}

.about .stats-row .stat-item p {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .cta-wrapper {
  margin-top: 40px;
}

.about .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-cta:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 2px solid transparent;
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.services .service-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  border-left-color: var(--secondary-color);
  box-shadow: 0 12px 36px
    color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .service-card:hover .service-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

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

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

.services .service-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services .service-icon i {
  font-size: 24px;
}

.services h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

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

.services p {
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-link i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 24px 20px;
  }

  .services .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .services .service-icon i {
    font-size: 20px;
  }

  .services h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .services p {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

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

.features .features-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features .features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features .features-card:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .features-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.features .features-card .icon-wrapper i {
  font-size: 32px;
}

.features .features-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.features .features-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-card .features-list {
  margin-bottom: 25px;
}

.features .features-card .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.features .features-card .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.features .features-card .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  margin-top: 3px;
}

.features .features-card .features-list .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.features .features-card .image-container {
  margin-top: auto;
  text-align: center;
}

.features .features-card .image-container img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.features .features-card:hover .image-container img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.portfolio .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 992px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work {
  padding-top: 60px;
  padding-bottom: 40px;
}

.how-we-work .step-item {
  text-align: center;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

.how-we-work .step-item::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent-color), transparent 70%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 90%) 100%
  );
  z-index: 0;
}

.how-we-work .step-item:last-child::after {
  display: none;
}

.how-we-work .step-circle {
  width: 70px;
  height: 70px;
  background-color: 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;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-circle span {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-item:hover .step-circle {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.how-we-work .step-item:hover .step-circle span {
  color: var(--contrast-color);
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.how-we-work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .step-item::after {
    display: none;
  }

  .how-we-work .step-circle {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-circle span {
    font-size: 1.3rem;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-circle {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-circle span {
    font-size: 1.1rem;
  }

  .how-we-work h3 {
    font-size: 1.1rem;
  }

  .how-we-work p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.tabs .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.tabs .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: var(--surface-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px
    color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tabs .tabs-header .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.tabs
  .tabs-header
  .nav-tabs
  .nav-link.active
  .tab-content-preview
  .tab-text
  small {
  color: var(--contrast-color);
}

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

.tabs
  .tabs-header
  .nav-tabs
  .nav-link:hover:not(.active)
  .tab-content-preview
  .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.tabs .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tabs .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.tabs .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area p {
    font-size: 15px;
  }
}

.tabs .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.tabs .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tabs .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.tabs .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.tabs .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.tabs .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.tabs .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.tabs .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .visual-content {
    padding-left: 0;
  }
}

.tabs .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

.tabs .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.tabs
  .tab-content
  .visual-content
  .floating-element
  .floating-card
  .card-info
  span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tabs
  .tab-content
  .visual-content
  .floating-element
  .floating-card
  .card-info
  strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .tabs
    .tab-content
    .visual-content
    .floating-element
    .floating-card
    .card-info
    strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%
  );
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 30%)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%,
    var(--surface-color) 100%
  );
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.pricing .pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing .pricing-card.featured .featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing .pricing-card .plan-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .plan-header .plan-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pricing .pricing-card .plan-header .plan-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.pricing .pricing-card .pricing-display {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .pricing-display .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing .pricing-card .pricing-display .price .currency {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.pricing .pricing-card .pricing-display .price .amount {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.pricing .pricing-card .pricing-display .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-card .features-list {
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .features-list .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.pricing .pricing-card .features-list .feature i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing .pricing-card .features-list .feature span {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.5;
}

.pricing .pricing-card .btn-plan {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.pricing .pricing-card .btn-plan:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.pricing .pricing-card.featured .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.featured .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.pricing .pricing-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-footer .guarantee-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1rem;
}

.pricing .pricing-footer .contact-text {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

.pricing .pricing-footer .contact-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.pricing .pricing-footer .contact-text a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .pricing .pricing-card.featured {
    transform: none;
  }

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

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

  .pricing .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing .pricing-display .price .amount {
    font-size: 2.75rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
  height: 250px;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 240px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-color), transparent 93%) 0%,
    transparent 100%
  );
  pointer-events: none;
}

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

.contact .section-title {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.contact .section-title p {
  max-width: 780px;
  margin-inline: auto;
}

.contact .contact-layout {
  --bs-gutter-x: clamp(24px, 4vw, 46px);
}

.contact .contact-panel {
  height: auto;
  border-radius: clamp(18px, 3vw, 28px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);
  box-shadow: 0 20px 44px rgba(19, 41, 86, 0.08);
  overflow: hidden;
}

.contact .contact-form-container {
  padding: clamp(28px, 3.8vw, 44px);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    color-mix(in srgb, var(--surface-color), #eef4ff 65%) 100%
  );
}

.contact .contact-form-container .form-intro {
  margin-bottom: clamp(22px, 3vw, 32px);
  max-width: 100%;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.contact .contact-form-container .form-intro h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .form-intro p {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.62;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.88;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 20px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 18px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 24px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
  pointer-events: none;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 14px;
  background: #ffffff;
  padding: 26px 14px 10px;
  font-size: 16px;
  color: var(--default-color);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  background: #ffffff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact
  .contact-form-container
  .contact-form
  .form-field
  .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(
      45deg,
      color-mix(in srgb, var(--default-color), transparent 40%) 50%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--default-color), transparent 40%) 50%,
      transparent 50%
    );
  background-position:
    right 12px center,
    right 6px center;
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact
  .contact-form-container
  .contact-form
  .form-field
  select.form-input:invalid {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact
  .contact-form-container
  .contact-form
  .form-field
  select.form-input
  option {
  color: var(--default-color);
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
  padding-top: 28px;
}

.contact .contact-form-container .contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 30px 0;
}

.contact .contact-form-container .contact-form .form-consent .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
}

.contact
  .contact-form-container
  .contact-form
  .form-consent
  input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.contact .contact-form-container .contact-form .form-consent .custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 55%);
  background: var(--surface-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 8px 20px rgba(17, 36, 68, 0.08);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.contact
  .contact-form-container
  .contact-form
  .form-consent
  .custom-checkbox::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(45deg);
  transition: border-color 0.2s ease;
}

.contact
  .contact-form-container
  .contact-form
  .form-consent
  input[type="checkbox"]:checked
  + .custom-checkbox {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(26, 43, 86, 0.18);
  transform: translateY(-1px);
}

.contact
  .contact-form-container
  .contact-form
  .form-consent
  input[type="checkbox"]:checked
  + .custom-checkbox::after {
  border-right-color: var(--contrast-color);
  border-bottom-color: var(--contrast-color);
}

.contact
  .contact-form-container
  .contact-form
  .form-consent
  input[type="checkbox"]:focus-visible
  + .custom-checkbox {
  outline: 2px solid color-mix(in srgb, var(--accent-color), transparent 35%);
  outline-offset: 2px;
}

.contact .contact-form-container .contact-form .form-consent .consent-text {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .contact .contact-form-container .contact-form .form-consent {
    gap: 10px;
  }

  .contact
    .contact-form-container
    .contact-form
    .form-consent
    .custom-checkbox {
    width: 24px;
    height: 24px;
    margin-top: 4px;
  }

  .contact .contact-form-container .contact-form .form-consent .consent-text {
    font-size: 13.5px;
    line-height: 1.5;
  }
}

.contact .contact-form-container .contact-form .send-button {
  background: linear-gradient(135deg, #264793 0%, #2d58bb 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--contrast-color);
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(23, 53, 117, 0.26);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 34px rgba(19, 44, 99, 0.3);
}

.contact
  .contact-form-container
  .contact-form
  .send-button:hover
  .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  background: linear-gradient(180deg, #12244f 0%, #1f3f83 56%, #5b77b1 100%);
  height: auto;
  padding: clamp(26px, 3.4vw, 38px);
  color: #ecf2ff;
  position: sticky;
  top: 106px;
  max-height: calc(100vh - 25px);
  overflow: hidden;
}

.contact .contact-info-panel {
  /* background: linear-gradient(180deg, #12244f 0%, #1f3f83 56%, #5b77b1 100%); */
  background: linear-gradient(180deg, #264793 0%, #264793 56%, #264793 100%);
  padding: 15px clamp(20px, 2.5vw, 30px);
  color: #ecf2ff;
  margin-top: 30px;
}

.contact .contact-info-panel .contact-info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact .contact-info-panel .contact-method-item {
  margin-bottom: 0;
}

.contact .contact-info-panel .connect-section-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
}

.contact .contact-info-panel .connect-section-inline .connect-label {
  font-size: 10px;
  font-weight: 700;
  color: #b8d2ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.contact .contact-info-panel .social-links {
  margin-top: 0;
  display: flex;
  gap: 12px;
}

.contact .contact-info-panel .social-links .social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  padding-top: 4px;
}

.contact .contact-info-panel .social-links .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact .contact-info-panel .social-links .social-link i {
  font-size: 18px;
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 24px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0;
  color: #f1f6ff;
  letter-spacing: 0.02em;
}

/* Location Selector Styles */
.location-selector {
  margin-bottom: 24px;
}

.location-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(198, 216, 248, 0.15);
  color: #d1e1ff;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.location-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(198, 216, 248, 0.3);
  color: #ffffff;
  transform: translateX(4px);
}

.location-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-display {
  margin-bottom: 28px;
}

.location-info {
  display: none;
}

.location-info.active {
  display: block;
  animation: locationFadeIn 0.5s ease forwards;
}

.location-info p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #eef4ff;
  margin-bottom: 16px;
}

.location-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 500px;
}

.location-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.location-info:hover .location-image img {
  transform: scale(1.08);
}

.location-map {
  width: 100%;
  height: 140px;
  border-radius: 16px;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

/* Footer Section for Email/Phone */
.contact-details-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-item .contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8d2ff;
  flex-shrink: 0;
}

.contact-text .method-label {
  font-size: 10px;
  font-weight: 700;
  color: #b8d2ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.contact-text p,
.contact-text .contact-link {
  font-size: 14px;
  color: #eef4ff;
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text .contact-link:hover {
  color: #ffffff;
}

@keyframes locationFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact .contact-sidebar .connect-section {
  border-top: 1px solid rgba(200, 221, 255, 0.26);
  padding-top: 20px;
}

.contact .contact-sidebar .connect-section .connect-label {
  font-size: 11px;
  font-weight: 700;
  color: #c0d9ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.contact .contact-sidebar .connect-section .social-links {
  display: flex;
  gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #eef4ff;
  background: rgba(191, 213, 250, 0.18);
  border: 1px solid rgba(198, 218, 252, 0.26);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-top: 3px;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
  font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
  color: #ffffff;
  background: rgba(90, 133, 209, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 28px;
  }

  .contact .contact-sidebar {
    padding: 26px;
    margin-bottom: 40px;
    position: static;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro {
    margin-bottom: 24px;
    text-align: left;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 0;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 14px;
  }

  .contact .contact-sidebar {
    padding: 20px;
  }

  .contact .contact-sidebar .contact-header,
  .contact .contact-sidebar .contact-methods {
    margin-bottom: 40px;
  }

  .contact .contact-sidebar .contact-method {
    margin-bottom: 12px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 5rem;
  --content-spacing: 4rem;
  --subtle-border: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .project-hero {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-hero .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-hero .project-meta-grid .meta-column {
  text-align: center;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.portfolio-details .visual-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .visual-showcase .main-visual {
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-details .visual-showcase .main-visual .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .visual-showcase .main-visual .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  left: 30px;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next {
  right: 30px;
}

.portfolio-details .content-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .content-section .project-overview {
  text-align: center;
}

.portfolio-details .content-section .project-overview h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details .content-section .project-overview .overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 4rem;
}

.portfolio-details .content-section .project-overview .challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.portfolio-details
  .content-section
  .project-overview
  .challenge-solution
  .challenge-block
  h3,
.portfolio-details
  .content-section
  .project-overview
  .challenge-solution
  .solution-block
  h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details
  .content-section
  .project-overview
  .challenge-solution
  .challenge-block
  p,
.portfolio-details
  .content-section
  .project-overview
  .challenge-solution
  .solution-block
  p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase {
  padding: 4rem 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  margin: var(--section-spacing) -15px;
  border-radius: 8px;
}

.portfolio-details .metrics-showcase .metrics-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .metrics-showcase .metrics-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item {
  text-align: center;
  padding: 1.5rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.4;
}

.portfolio-details .technology-stack {
  margin-bottom: var(--section-spacing);
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .technology-stack h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0;
}

.portfolio-details .technology-stack .tech-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-details
  .technology-stack
  .tech-categories
  .tech-category
  .category-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details
  .technology-stack
  .tech-categories
  .tech-category
  .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details
  .technology-stack
  .tech-categories
  .tech-category
  .tech-list
  .tech-item {
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details
  .technology-stack
  .tech-categories
  .tech-category
  .tech-list
  .tech-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.portfolio-details .process-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .process-gallery h3 {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.portfolio-details .process-gallery .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {
  grid-row: span 2;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details
  .process-gallery
  .gallery-masonry
  .gallery-item
  .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {
  transform: translateY(-5px);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details
  .process-gallery
  .gallery-masonry
  .gallery-item:hover
  .gallery-caption {
  transform: translateY(0);
}

.portfolio-details .key-features-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .key-features-section .features-intro {
  padding-right: 2rem;
}

.portfolio-details .key-features-section .features-intro h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .key-features-section .features-list .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-details
  .key-features-section
  .features-list
  .feature-row:last-child {
  margin-bottom: 0;
}

.portfolio-details
  .key-features-section
  .features-list
  .feature-row
  .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details
  .key-features-section
  .features-list
  .feature-row
  .feature-icon
  i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.portfolio-details
  .key-features-section
  .features-list
  .feature-row
  .feature-content
  h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.portfolio-details
  .key-features-section
  .features-list
  .feature-row
  .feature-content
  p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-details .project-footer {
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-footer .footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details .project-footer .footer-navigation .nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  color: var(--heading-color);
}

.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.prev-project
  .nav-direction,
.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.next-project
  .nav-direction {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.prev-project
  .nav-title,
.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.next-project
  .nav-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.prev-project:hover,
.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.next-project:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  text-align: right;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {
  font-size: 1rem;
}

.portfolio-details
  .project-footer
  .footer-navigation
  .nav-link.all-projects:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-details .content-section .project-overview .challenge-solution {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2.25rem;
  }

  .portfolio-details .metrics-showcase .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .key-features-section .features-intro {
    margin-bottom: 2rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-details {
    --section-spacing: 3rem;
  }

  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-slide img {
    height: 400px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 0.9rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2rem;
  }

  .portfolio-details .project-footer .footer-navigation {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
  .portfolio-details .project-footer .footer-navigation .nav-link.next-project {
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
    order: -1;
  }

  .portfolio-details
    .technology-stack
    .tech-categories
    .tech-category
    .tech-list
    .tech-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .gallery-masonry {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details .gallery-masonry .gallery-item.large {
    grid-row: span 1;
  }

  .portfolio-details .metrics-showcase {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# 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: 20px;
  /* background: linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgba(26, 43, 86, 0) 45%, rgb(58 131 255 / 41%) 100%); */
  /* border-radius: 16px; */
  padding: 24px;
}

.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 .cost-details {
  max-width: 1000px;
  margin: 0 auto 3.5rem;
  margin-top: 60px;
}

.service-details .cost-details-lead {
  text-align: left;
  position: relative;
  font-size: clamp(1.3rem, 1.85vw, 1.7rem);
  line-height: 1.5;
  color: #24385f;
  font-weight: 600;
  margin: 0 auto 5rem;
  max-width: 820px;
  padding: 0 0 35px 0;
}

.service-details .cost-details-lead::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 10px;
}

.service-details .cost-details-eyebrow {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-details .cost-details-title {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: #1d2f61;
  max-width: 860px;
  margin: 0 auto 1.25rem;
  line-height: 1.15;
}

.service-details .cost-details-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495a7a;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.service-details .cost-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-details .cost-details-card {
  text-align: left;
  transition: transform 0.3s ease;
}

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

.service-details .cost-details-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3c516b;
}

.service-cost-optimization {
  background-image: url(/assets/img/shapes_banners/mdabroad_website_whatwedo-cost_banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}

.service-cost-optimization .cost-optimization-header {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .service-cost-optimization .cost-optimization-header {
    gap: 40px;
    margin-bottom: 10px;
  }
}

.service-cost-optimization .cost-optimization-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #1d2f61;
  line-height: 1.15;
  margin-bottom: 24px;
}

.service-cost-optimization .cost-optimization-copy {
  max-width: 45rem;
}

.cost-optimization-diagram {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  /* gap: 32px; */
  align-items: center;
  --diagram-height: clamp(320px, 42vw, 520px);
  --diagram-shift: 0px;
  right: 100px;
}

.service-cost-optimization .cost-optimization-graphic {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: start;
  height: var(--diagram-height);
}

.service-cost-optimization .cost-optimization-graphic picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-cost-optimization .cost-optimization-graphic img {
  position: static;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-cost-optimization .cost-optimization-plus {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.service-cost-optimization .cost-optimization-plus img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(5px 8px 6px rgba(42, 99, 255, 0.4));
}

.service-cost-optimization .cost-optimization-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translateX(var(--diagram-shift));
}

.service-cost-optimization .diagram-line {
  fill: none;
  stroke: #2a63ff;
  stroke-width: 0.9;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
}

.service-cost-optimization .cost-optimization-items {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: var(--diagram-height);
  width: 100%;
  max-width: 360px;
  --icon-size: 28px;
}

.service-cost-optimization .cost-optimization-items li {
  position: absolute;
  left: var(--item-left, 0);
  top: var(--item-top, 50%);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #1b2b56;
}

.service-cost-optimization .cost-optimization-items img {
  width: var(--icon-size);
  height: var(--icon-size);
}

@media (max-width: 992px) {
  .cost-optimization-diagram {
    right: 0px;
  }
}

@media (min-width: 992px) {
  .service-cost-optimization .cost-optimization-items {
    --icon-size: 34px;
  }
}

.service-cost-optimization .cost-optimization-items span {
  white-space: normal;
}

.service-cost-optimization .cost-optimization-items .item-invoice {
  --item-top: 2%;
}

.service-cost-optimization .cost-optimization-items .item-review {
  --item-top: 23%;
}

.service-cost-optimization .cost-optimization-items .item-ucr {
  --item-top: 50%;
}

.service-cost-optimization .cost-optimization-items .item-negotiation {
  --item-top: 70%;
}

.service-cost-optimization .cost-optimization-items .item-settlement {
  --item-top: 97%;
}

.service-cost-optimization .cost-optimization-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-cost-optimization .cost-optimization-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #1d2f61;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: center;
}

.service-cost-optimization .cost-optimization-copy {
  max-width: 800px;
}

.service-cost-optimization .cost-optimization-why h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #1b2b56;
  line-height: 1.22;
  max-width: 600px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: start;
}

.service-cost-optimization .cost-optimization-why h3 span {
  color: #1e5bff;
}

.service-cost-optimization .cost-optimization-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 35px;
  border: 1px solid rgba(226, 232, 240, 0.4);
  box-shadow: 0 15px 35px rgba(10, 31, 68, 0.08);
  width: 100%;
  max-width: 520px;
}

.service-cost-optimization .cost-optimization-card h3 {
  font-size: 1.25rem !important;
  line-height: 1.2;
  text-align: left;
}

.service-cost-optimization .cost-optimization-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-cost-optimization .cost-optimization-card li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #495a7a;
  font-weight: 500;
}

.service-cost-optimization .cost-optimization-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e5bff;
  font-weight: 900;
  font-size: 16px;
}

@media (max-width: 991px) {
  .service-cost-optimization {
    padding: 70px 20px !important;
  }

  .service-cost-optimization .cost-optimization-plus {
    left: 12%;
  }

  .service-cost-optimization .cost-optimization-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .service-cost-optimization .cost-optimization-copy {
    text-align: left;
  }

  .service-cost-optimization .cost-optimization-copy h2 {
    text-align: left;
  }

  .service-cost-optimization .cost-optimization-copy .d-flex {
    justify-content: flex-start !important;
  }

  .cost-optimization-diagram {
    grid-template-columns: 1fr;
    justify-items: start;
    justify-content: flex-start;
    align-self: flex-start;
    width: 100%;
    --diagram-height: clamp(280px, 70vw, 420px);
  }

  .service-cost-optimization .cost-optimization-graphic .main-diagram-picture {
    display: block;
  }

  .service-cost-optimization .cost-optimization-graphic {
    max-width: 500px;
    margin: 0;
    margin-bottom: 1rem;
    height: auto;
    display: flex;
    justify-content: flex-start;
  }

  .service-cost-optimization .cost-optimization-graphic .mdix-mobile-logo {
    display: none !important;
  }
  .service-cost-optimization .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    max-width: 100% !important;
  }

  .cost-optimization-bottom {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
  }

  .service-cost-optimization .cost-optimization-bottom {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
  }

  .service-cost-optimization .cost-optimization-why {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .service-cost-optimization .cost-optimization-items {
    display: none;
  }

  .service-cost-optimization .cost-optimization-items li {
    position: static;
    transform: none;
    flex: none;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
  }

  .service-cost-optimization .cost-optimization-items span {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .service-cost-optimization .cost-optimization-graphic {
    max-width: 420px;
  }

  .service-cost-optimization .cost-optimization-plus {
    left: 5%;
    width: 52px;
    height: 52px;
  }

  .service-cost-optimization .cost-optimization-plus img {
    width: 52px;
    height: 52px;
  }

  .service-cost-optimization .cost-optimization-items li {
    font-size: 0.95rem;
  }

  .service-cost-optimization .cost-optimization-items span {
    max-width: 220px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .service-cost-optimization .cost-optimization-copy h2 {
    font-size: 1.6rem;
  }

  .service-cost-optimization .cost-optimization-why h3 {
    font-size: 1.05rem;
  }

  .service-cost-optimization .cost-optimization-graphic {
    max-width: 360px;
  }

  .service-cost-optimization .cost-optimization-plus {
    left: 5%;
    width: 46px;
    height: 46px;
  }

  .service-cost-optimization .cost-optimization-plus img {
    width: 46px;
    height: 46px;
  }

  .service-cost-optimization .cost-optimization-items {
    --icon-size: 20px;
  }

  .service-cost-optimization .cost-optimization-items span {
    max-width: 190px;
  }
}

@media (max-width: 991px) {
  .service-details .cost-details-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 767px) {
  .service-details .cost-details {
    margin-bottom: 2.5rem;
  }

  .service-details .cost-details-cards {
    grid-template-columns: 1fr;
  }

  .service-details .cost-details-title {
    font-size: 1.7rem;
  }
}

.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 .tpa-highlights-section {
  margin: 2.5rem 0 5rem;
}

.tpa-gradient-band {
  position: relative;
  --background-color: transparent;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 24%,
    #e7eefb 54%,
    #ffffff 86%,
    #ffffff 100%
  );
}

.tpa-gradient-band section,
.tpa-gradient-band .section,
.tpa-gradient-band .tpa-lifecycle-section,
.tpa-gradient-band .tpa-summary-section,
.tpa-gradient-band .faq-banner {
  background: transparent !important;
  background-color: transparent !important;
}

.tpa-summary-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.tpa-summary-panel {
  max-width: 100%;
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 94, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 50, 150, 0.05);
}

.tpa-summary-group + .tpa-summary-group {
  margin-top: 3.5rem;
}

.tpa-summary-title {
  margin: 0;
  color: #1f3161;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tpa-summary-divider {
  margin: 1rem 0 1.5rem;
  border: 0;
  border-top: 2px solid rgba(30, 91, 255, 0.15);
  width: 60px;
  opacity: 1;
}

.tpa-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 2rem;
}

.tpa-summary-list li {
  position: relative;
  display: flex;
  align-items: center;
  color: #304572;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 0.25rem 0;
}

.tpa-summary-list li i {
  color: #1e5bff;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0;
}

.tpa-summary-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 3rem;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, #1e5bff 0%, #1141c7 100%);
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(30, 91, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tpa-summary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(30, 91, 255, 0.35);
  color: #ffffff !important;
}

.tpa-summary-cta i {
  transition: transform 0.3s ease;
}

.tpa-summary-cta:hover i {
  transform: translateX(5px);
}

.service-details .tpa-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  height: 100%;
  min-height: 391px;
}

.tpa-card.feature-image {
  background-color: #e8e9eb;
}

.service-details .tpa-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent-color), transparent 35%);
  margin-bottom: 0.75rem;
}

.service-details .tpa-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.service-details .tpa-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.service-details .tpa-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .tpa-list li i {
  font-size: 1.05rem;
  color: var(--accent-color);
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .service-details .tpa-list-columns {
    columns: 2;
    column-gap: 1.75rem;
  }

  .service-details .tpa-list-columns li {
    break-inside: avoid;
  }
}

@media (max-width: 991px) {
  .tpa-summary-panel {
    max-width: 100%;
  }

  .tpa-summary-group + .tpa-summary-group {
    margin-top: 2.2rem;
  }

  .tpa-summary-title {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
  }

  .tpa-summary-list {
    gap: 0.55rem;
  }

  .tpa-summary-list li {
    font-size: 1rem;
    line-height: 1.32;
  }

  .tpa-summary-cta {
    margin-top: 1.8rem;
  }
}

.tpa-lifecycle-section {
  padding: 0.5rem 0 2rem;
}

.tpa-lifecycle-title {
  margin: 0 0 1.5rem;
  color: #1e5bff;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
}

.tpa-lifecycle-diagram {
  position: relative;
  max-width: 1168px;
  margin: 0 auto;
}

.tpa-lifecycle-diagram .diagram-desktop {
  width: 100%;
  height: auto;
  display: block;
}

.tpa-lifecycle-diagram .diagram-mobile {
  width: 100%;
  height: auto;
  display: none;
}

.tpa-lifecycle-section .diagram-label {
  position: absolute;
  transform: translateX(-50%);
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  color: #2f558c;
  font-size: clamp(0.98rem, 1.3vw, 1.28rem);
  line-height: 1.16;
  width: clamp(108px, 10.6vw, 170px);
  pointer-events: none;
}

.tpa-lifecycle-section .label-intake {
  left: 6.2%;
  top: 39.4%;
  width: 138px;
}

.tpa-lifecycle-section .label-eligibility {
  left: 21%;
  top: 39.4%;
  width: 150px;
}

.tpa-lifecycle-section .label-documentation {
  left: 38.9%;
  top: 39.4%;
  width: 170px;
}

.tpa-lifecycle-section .label-coding {
  left: 57.1%;
  top: 39.4%;
  width: 190px;
}

.tpa-lifecycle-section .label-submission {
  left: 75%;
  top: 39.4%;
  width: 166px;
}

.tpa-lifecycle-section .label-reimbursement {
  left: 92.2%;
  top: 39.4%;
  width: 180px;
}

@media (max-width: 991px) {
  .tpa-lifecycle-section {
    padding: 0.25rem 0 2.6rem;
    overflow: visible;
  }

  .tpa-lifecycle-title {
    margin-bottom: 1rem;
  }

  .tpa-lifecycle-diagram {
    max-width: 230px;
    margin-bottom: 1.15rem;
  }

  .tpa-lifecycle-diagram .diagram-desktop {
    display: none;
  }

  .tpa-lifecycle-diagram .diagram-mobile {
    display: block;
  }

  .tpa-lifecycle-section .diagram-label {
    left: 50%;
    width: 172px;
    font-size: 1.12rem;
    line-height: 1.14;
  }

  .tpa-lifecycle-section .label-intake {
    top: 23%;
  }

  .tpa-lifecycle-section .label-eligibility {
    top: 39.1%;
  }

  .tpa-lifecycle-section .label-documentation {
    top: 55.2%;
  }

  .tpa-lifecycle-section .label-coding {
    top: 70.8%;
  }

  .tpa-lifecycle-section .label-submission {
    top: 86.5%;
  }

  .tpa-lifecycle-section .label-reimbursement {
    top: 99.2%;
  }
}

@media (min-width: 1025px) {
  .service-details .timeline-section {
    position: relative;
  }

  .service-details .timeline-section .timeline {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 1.5rem 1rem 2.75rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .service-details .timeline-section .timeline::before {
    left: var(--timeline-line-left, 28px);
    width: var(--timeline-line-width, 100%);
    top: 44px;
    bottom: auto;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--accent-color), transparent 45%) 18%,
      color-mix(in srgb, var(--accent-color), transparent 20%) 50%,
      color-mix(in srgb, var(--accent-color), transparent 45%) 82%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: timeline-sheen 6s linear infinite;
    z-index: 0;
  }

  .service-details .timeline-section .timeline::after {
    content: "";
    position: absolute;
    left: var(--timeline-line-left, 28px);
    top: 44px;
    height: 2px;
    width: var(--timeline-progress-width, 0px);
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--accent-color), transparent 10%),
      color-mix(in srgb, var(--accent-color), transparent 40%)
    );
    box-shadow: 0 0 10px
      color-mix(in srgb, var(--accent-color), transparent 65%);
    pointer-events: none;
    transition: width 0.15s ease-out;
    z-index: 1;
  }

  .service-details .timeline-section .timeline .timeline-item {
    flex: 0 0 320px;
    padding-left: 0;
    padding-top: 72px;
    margin-bottom: 0;
    scroll-snap-align: start;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
    position: relative;
    z-index: 2;
  }

  .service-details .timeline-section .timeline .timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker {
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    box-shadow: 0 12px 24px rgba(11, 29, 58, 0.15);
    z-index: 3;
  }

  .service-details
    .timeline-section
    .timeline
    .timeline-item
    .timeline-content {
    padding-right: 1rem;
  }

  .service-details .timeline-section .timeline::-webkit-scrollbar {
    height: 0;
  }

  .service-details .timeline-section .timeline::-webkit-scrollbar {
    display: none;
  }
}

@keyframes timeline-sheen {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

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

/*--------------------------------------------------------------
# Global footprint section
--------------------------------------------------------------*/
.global-footprint {
  position: relative;
  overflow: hidden;
  background-image: url(../img//shapes_banners/mdabroad_home_globalfootprint.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #f7fbff;
  padding: 110px 0;
  height: 500px;
  background-position: center;
  display: flex;
  align-items: center;
}

.global-footprint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 70% at 80% 20%,
    rgba(64, 129, 255, 0.25),
    transparent 60%
  );
  opacity: 0.8;
  pointer-events: none;
}

.global-footprint .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}

.global-footprint .footprint-copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.global-footprint h2 {
  color: #fdfdfd;
  font-size: 40px !important;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  text-align: right;
}

.global-footprint .lead {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  text-align: right;
}

.global-footprint .footprint-actions {
  display: flex;
  align-items: center;
  justify-content: end;
}

.global-footprint .btn-primary {
  background: var(--secondary-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px
    color-mix(in srgb, var(--secondary-color), transparent 70%);
  border: 2px solid transparent;
}

.global-footprint .btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.global-footprint .footprint-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.global-footprint .footprint-visual::before {
  content: "";
  position: absolute;
  width: 82%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(126, 193, 255, 0.18),
    rgba(7, 16, 35, 0.1)
  );
  filter: blur(12px);
  z-index: 0;
}

.global-footprint .footprint-visual img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
  filter: saturate(1.05) brightness(1.04);
}

@media (max-width: 991px) {
  .global-footprint {
    text-align: center;
    padding: 80px 0;
  }

  .global-footprint .footprint-copy {
    margin: 0 auto;
  }

  .global-footprint .footprint-actions {
    justify-content: right;
  }

  .global-footprint .footprint-visual img {
    margin: 24px auto 0;
  }
}

@media (max-width: 500px) {
  .global-footprint {
    background-image: url(../img/shapes_banners/mdabroad_home_globalfootprint.jpg);
    background-color: var(--default-color) !important;
  }
}

/*--------------------------------------------------------------
# FAQ banner section
--------------------------------------------------------------*/
.faq-banner {
  background: #ffffff;
  color: #0d1b2d;
  padding: 100px 0;
}

.faq-banner .faq-layout {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.faq-banner .faq-header {
  flex: 0 0 auto;
  width: 240px;
  margin-bottom: 0;
}

.faq-banner .faq-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.title-faq {
  font-size: 40px;
  font-weight: 300 !important;
  color: #1a2b56;
  margin-bottom: 0;
  line-height: 1.2;
}

.faq-banner .faq-accordion-wrapper {
  flex: 1;
  min-width: 0;
}

.faq-banner .faq-accordion {
  margin-top: 0;
}

.faq-banner .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
}

.faq-banner .accordion-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.faq-banner .accordion-button {
  background: transparent;
  color: #1a2b56;
  font-weight: 600;
  padding: 24px 0;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-banner .accordion-button:hover {
  color: var(--secondary-color);
}

.faq-banner .accordion-button:focus {
  box-shadow: none;
}

.faq-banner .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--secondary-color);
}

.faq-banner .accordion-button::after {
  width: 18px;
  height: 12px;
  background-size: 18px 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l8 8 8-8' stroke='%23005eff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

.faq-banner .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-banner .accordion-body {
  color: #4a5e7a;
  padding: 4px 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

.faq-banner .accordion-body ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

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

  .faq-banner .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
  }

  .faq-banner .faq-layout {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }

  .faq-banner .faq-header,
  .faq-banner .faq-accordion-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service
  .tos-content
  .content-section
  .disclaimer-box
  ul
  li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 98%) 100%
  );
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service
  .tos-contact
  .contact-box
  .contact-content
  .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

div[name="termly-embed"][data-type="iframe"] {
  visibility: hidden;
}

div[name="termly-embed"][data-type="iframe"][data-ready="true"] {
  visibility: visible;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 97%) 100%
  );
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Detail Section
--------------------------------------------------------------*/

.container-scroll {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  gap: 64px;
  position: relative;
  align-items: flex-start;
}

.left {
  flex: 1;
  z-index: 1;
}

.feature-item {
  margin-bottom: 15px;
}

.feature-item h2 {
  position: relative;
  padding-left: 24px;
  font-size: clamp(1.1rem, 1.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #24385f;
}

.feature-item h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 95%;
  border-radius: 4px;
  background: color-mix(in srgb, var(--secondary-color), #0b4bff 35%);
}

.feature-item p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #495a7a;
  max-width: 520px;
}

.feature-item img {
  display: block;
  max-width: 22rem;
  height: auto;
  margin: 6px 0 22px;
}

.feature-item ul {
  list-style: none;
  padding: 18px 20px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--secondary-color), transparent 75%);
  /* background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
      color-mix(in srgb, var(--accent-color), transparent 85%) 100%); */
  box-shadow: 0 10px 30px rgba(26, 43, 86, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item ul li {
  position: relative;
  padding-left: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.feature-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--secondary-color), transparent 90%);
  background: var(--secondary-color);
}

.feature-item .button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.feature-item .button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-item-mobile-only {
  display: none;
}

.feature-item-fixed-left {
  position: sticky;
  top: 200px;
  margin-bottom: 0;
  max-width: 560px;
}

.feature-item-static {
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  #service-details,
  #service-details .container,
  #service-details .row,
  #service-details [class*="col-lg-"],
  #service-details [class*="col-xl-"] {
    overflow: visible !important;
  }

  .feature-item-static {
    position: relative;
    z-index: 10;
  }
}

.service-static-features {
  display: flex;
  flex-direction: column;
  gap: 4rem; /* Increased gap for sequential scroll reveal */
  min-height: 350px;
}

@media (min-width: 1200px) {
  .service-static-features {
    display: grid;
    grid-template-areas: "card";
    align-items: start;
    gap: 0;
    padding-bottom: 50px;
  }
}

.feature-static-card {
  padding: 2rem;
  border-radius: 28px;
  background: #f8fbff;
  box-shadow: 0 15px 35px rgba(13, 24, 46, 0.08);
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  .feature-static-card {
    grid-area: card;
    opacity: 0;
    display: none;
  }
}

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

.feature-static-card.no-frame {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.feature-static-card.tpa-card {
  background: #ffffff;
  border: 1px solid rgba(0, 94, 255, 0.1);
}

.feature-static-card.tpa-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f3161;
  margin-bottom: 1.5rem;
}

.feature-static-card .tpa-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  border: none;
  box-shadow: none;
}

.feature-static-card .tpa-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.05rem;
  color: #2c3e66;
}

.feature-static-card .tpa-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1e5bff;
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-item-scroll-spacer {
  min-height: 480px;
  margin-bottom: 40px;
  pointer-events: none;
}

.tpa-note {
  font-size: 1rem;
  color: #495a7a;
  background: #f0f7ff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border-left: 4px solid #1e5bff;
  line-height: 1.6;
  margin-top: 2rem;
}

.tpa-note i {
  color: #1e5bff;
  font-size: 1.2rem;
}

.hero-detail {
  --hero-bg-x: 50%;
  --hero-bg-y: 0%;
  --hero-detail-mask-width: clamp(45%, 52vw, 60%);
  --hero-detail-mask-color: rgba(0, 18, 129, 0.6);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--hero-bg-x) var(--hero-bg-y);
  min-height: 42rem;
  --hero-radius: clamp(35px, 11vw, 100px);
  border-radius: 0 0 var(--hero-radius) var(--hero-radius);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tpa-detail {
  background-image: url(/assets/img/Fotos/px-8204355.jpg);
}

.hero-assistance-detail {
  background-image: url(/assets/img/Fotos/px-44396971-7430578.jpg);
  background-position: bottom;
}

.hero-cost-detail {
  background-image: url(/assets/img/Fotos/pexels-aedrian-10653886.jpg);
}

.hero-provider-detail {
  background-image: url(/assets/img/Fotos/3d609bd6-d45b-41cc-8fe7-6654b897ff07.jpg);
  background-position: 50% 30%;
}

.hero-whitelabel-detail {
  background-image: url(/assets/img/Fotos/8633521.jpg);
  background-position: 50% 30%;
}

.hero-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--hero-detail-mask-width);
  background: var(--hero-detail-mask-color);
  border-radius: 0 0 0 var(--hero-radius);
  pointer-events: none;
  z-index: 0;
}

.hero-cost-detail::before {
  background: #0500158c;
}

.hero-detail > * {
  position: relative;
  z-index: 1;
}

/* ---------- MOBILE ---------- */

@media (max-width: 991px) {
  .container-scroll {
    flex-direction: column;
    padding: 40px 20px;
  }

  .left {
    padding-right: 0;
  }

  .feature-item-scroll-spacer {
    display: none;
  }

  .feature-item-mobile-only {
    display: block;
  }

  .feature-item-fixed-left {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .right {
    display: none;
  }

  .feature-item {
    position: relative;
    padding: 40px 24px 32px;
    margin-bottom: 50px;
    border-radius: 16px;
    background-size: cover;
    background-position: center 0%;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .feature-item,
  .feature-item * {
    box-sizing: border-box;
    max-width: 100%;
  }

  .feature-item img {
    max-width: 100%;
    height: auto;
  }

  .feature-item h2 {
    font-size: clamp(1.5rem, 5.4vw, 2rem);
    word-break: break-word;
  }

  .feature-item p,
  .feature-item li {
    font-size: 1rem;
  }

  .feature-item ul {
    padding: 16px;
  }

  /* difuminado blanco */
  .feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.95) 40%,
      rgba(255, 255, 255, 1) 100%
    );
    z-index: 0;
  }

  .feature-item > * {
    position: relative;
    z-index: 1;
  }

  .hero-detail {
    background-size: cover;
  }

  .hero-detail::before {
    width: 100%;
    border-radius: inherit;
  }
}

.operating-split {
  padding: 70px 0 0;
  min-height: 30rem;
}

.operating-split .container {
  min-height: inherit;
}

.operating-split .operating-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.7fr);
  --operating-radius: clamp(26px, 6vw, 64px);
  border-radius: var(--operating-radius) 0 0 0;
  overflow: hidden;
  /* box-shadow: 0 24px 50px rgba(16, 34, 74, 0.18); */
  height: 100%;
  min-height: inherit;
}

.operating-split .operating-copy {
  background: url("/assets/img/shapes_banners/mdabroad_website_whatwedo-assistance_banner1.png")
    left/cover no-repeat;
  color: #f4f7ff;
  padding: clamp(36px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.operating-copy h3 {
  color: white;
}

.operating-split .operating-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
}

.operating-split .operating-cta {
  align-self: center;
  background: #1e5bff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.operating-split .operating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 91, 255, 0.3);
}

.operating-split .operating-media {
  background: url("/assets/img/Fotos/px-8867425.jpg") center/cover no-repeat;
  min-height: 240px;
  height: 100%;
}

.operating-split--whitelabel {
  padding: 80px 0 90px;
  min-height: auto;
  background: #f2f4f8 !important;
}

.whitelabel-works {
  background: #f2f4f8 !important;
}

.whitelabel-works {
  padding: 70px 0 90px;
  background: #f2f4f8;
}

.whitelabel-works h2 {
  color: #1b2b55;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 36px;
}

.whitelabel-works-diagram {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.whitelabel-works .diagram-desktop {
  width: 100%;
  height: auto;
  display: block;
}

.whitelabel-works .diagram-mobile {
  width: 100%;
  height: auto;
  display: none;
}

.whitelabel-works .diagram-label {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 600;
  color: #1b2b55;
  font-size: clamp(0.72rem, 1.05vw, 1rem);
  line-height: 1.2;
  pointer-events: none;
}

.whitelabel-works .diagram-label.is-inverted {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.whitelabel-works .label-company {
  left: 11%;
  top: 13%;
  width: 160px;
}

.whitelabel-works .label-routing {
  left: 11%;
  top: 60%;
  width: 170px;
}

.whitelabel-works .label-infra {
  left: 37.5%;
  top: 60%;
  width: 190px;
}

.whitelabel-works .label-assistance {
  left: 63%;
  top: 28%;
  width: 130px;
}

.whitelabel-works .label-claims {
  left: 63%;
  top: 60%;
  width: 130px;
}

.whitelabel-works .label-network {
  left: 63%;
  top: 90%;
  width: 130px;
}

.whitelabel-works .label-reports {
  left: 88%;
  top: 60%;
  width: 190px;
}

.whitelabel-benefits {
  padding: 80px 0 70px;
  background: #f2f4f8 !important;
}

.whitelabel-benefits h2 {
  color: #1b2b55;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.whitelabel-benefits .benefits-cta {
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* Vertical line for the timeline */
.benefits-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 17px; /* Centers the line under the 36px wide icon */
  width: 2px;
  background-color: #e2e8f0;
  z-index: 0;
}

.benefits-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 2px solid #2a63ff;
  background-color: #ffffff;
  color: #2a63ff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(42, 99, 255, 0.1);
  margin-top: 0; /* Align perfectly */
}

.benefit-copy {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  border-radius: 8px;
  flex-grow: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.benefit-copy:hover {
  box-shadow: 0 8px 24px rgba(42, 99, 255, 0.08);
  border-color: #d0d9e6;
}

.benefit-title {
  margin: 0;
  color: #1b2b55;
  font-weight: 700;
  font-size: 1.05rem;
}

.benefit-desc {
  margin: 4px 0 0;
  color: #42507a;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

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

.whitelabel-works a {
  display: block;
  text-align: center;
  margin: 24px auto 0;
  color: #2a63ff;
  font-weight: 600;
  text-decoration: underline;
}

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

  .whitelabel-works h2 {
    margin-bottom: 28px;
  }

  .whitelabel-works .diagram-label {
    font-size: 1.2rem;
  }

  .whitelabel-works .diagram-desktop {
    display: none;
  }

  .whitelabel-works .diagram-mobile {
    display: block;
  }

  .whitelabel-works-diagram {
    max-width: 520px;
  }

  /* Reposition labels for vertical mobile diagram */

  .whitelabel-works .label-company {
    left: 50%;
    top: 7%;
    width: 170px;
  }

  .whitelabel-works .label-routing {
    left: 50%;
    top: 24%;
    width: 180px;
  }

  .whitelabel-works .label-infra {
    left: 50%;
    top: 40.5%;
    width: 210px;
  }

  .whitelabel-works .label-assistance {
    left: 50%;
    top: 56.5%;
    width: 160px;
  }

  .whitelabel-works .label-claims {
    left: 50%;
    top: 69%;
    width: 160px;
  }

  .whitelabel-works .label-network {
    left: 50%;
    top: 81.5%;
    width: 160px;
  }

  .whitelabel-works .label-reports {
    left: 50%;
    top: 94.5%;
    width: 220px;
  }
}

.operating-split--whitelabel {
  background-color: #f7faff;
  padding: 110px 0;
}

.operating-split--whitelabel .container {
  min-height: auto;
}

.operating-split--whitelabel .operating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
  margin-bottom: 70px;
}

.operating-split--whitelabel .operating-text {
  display: grid;
  gap: 20px;
}

.operating-split--whitelabel .operating-kicker {
  color: #2a63ff;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.operating-split--whitelabel .operating-text h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.1;
  color: #1b2b55;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.operating-split--whitelabel .operating-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.operating-split--whitelabel .operating-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 500;
}

.operating-split--whitelabel .operating-list li i {
  color: #2a63ff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.operating-split--whitelabel .operating-callout {
  margin-top: 50px;
  width: 100%;
  max-width: none;
  padding: 45px 60px;
  background: #ffffff;
  border: 1px solid rgba(42, 99, 255, 0.15);
  border-left: 5px solid #2a63ff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(33, 72, 155, 0.06);
  position: relative;
}

.operating-split--whitelabel .operating-callout p {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  line-height: 1.5;
  color: #1e293b;
  font-weight: 600;
}

.operating-split--whitelabel .operating-callout .accent {
  color: #2a63ff;
  position: relative;
  display: inline-block;
}

.operating-split--whitelabel .operating-callout .accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(42, 99, 255, 0.08);
  z-index: -1;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .operating-split .operating-card {
    grid-template-columns: 1fr;
  }

  .operating-split .operating-media {
    display: none;
    min-height: 220px;
  }

  .operating-split--whitelabel {
    padding: 60px 0 70px;
  }

  .operating-split--whitelabel .operating-grid {
    grid-template-columns: 1fr;
  }

  .operating-split--whitelabel .operating-list {
    font-size: 1rem;
  }
}

.assistance-flow {
  padding: 80px 0 0px;
}

.assistance-works-header {
  text-align: start;
  margin-bottom: 3rem;
}

.assistance-works-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1b2b55;
}

.assistance-works-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* Video Section Redesign */
.assistance-video-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.assistance-video-card-v2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: url("https://img.youtube.com/vi/vsQkccEG6-8/maxresdefault.jpg")
    center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(27, 43, 85, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 43, 85, 0.8), transparent 70%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.video-brand-logo {
  height: 24px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.video-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.video-content p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.play-button-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #1e5bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(30, 91, 255, 0.4);
}

.play-button-v2:hover {
  background: #0045ff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 15px rgba(30, 91, 255, 0);
}

.video-cta-text {
  background: transparent;
  border: none;
  color: #1e5bff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-cta-text:hover {
  opacity: 0.8;
}

/* Stepper Redesign */
.assistance-stepper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.assistance-stepper::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e1e8f5;
  z-index: 1;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.stepper-marker {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid #1e5bff;
  color: #1e5bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stepper-content {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e1e8f5;
  box-shadow: 0 4px 12px rgba(27, 43, 85, 0.05);
  width: 100%;
  transition: all 0.3s ease;
}

.stepper-content p {
  margin: 0;
  font-size: 1rem;
  color: #24385f;
  font-weight: 600;
  line-height: 1.4;
}

.stepper-item:hover .stepper-marker {
  background: #1e5bff;
  color: #fff;
}

.stepper-item:hover .stepper-content {
  transform: translateX(10px);
  border-color: #1e5bff;
  box-shadow: 0 10px 20px rgba(30, 91, 255, 0.1);
}

@media (max-width: 991px) {
  .assistance-works-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.assistance-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 16, 32, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2100;
  padding: 24px;
}

.assistance-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.assistance-video-modal-content {
  width: min(960px, 92vw);
  aspect-ratio: 16 / 9;
  background: #0b1222;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assistance-video-frame {
  width: 100%;
  height: 100%;
}

.assistance-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.assistance-video-placeholder {
  color: #c9d6ff;
  font-size: 1rem;
  text-align: center;
}

.assistance-video-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

body.is-locked {
  overflow: hidden;
}

@media (max-width: 991px) {
  .assistance-works-grid {
    grid-template-columns: 1fr;
  }

  .assistance-diagram {
    min-height: clamp(360px, 90vw, 520px);
    max-width: 240px;
    justify-self: center;
  }
}

.assistance-value {
  padding: 0;
}

.assistance-value-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1b2b55;
}

.assistance-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.assistance-value-card {
  border-radius: 18px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 30px rgba(18, 35, 74, 0.08);
  min-height: 260px;
}

.core-services {
  background: #1f3e7a
    url("/assets/img/shapes_banners/mdabroad_website_whatwedo-tpa_banner.jpg")
    no-repeat center bottom;
  background-size: cover;
  padding: 60px 0 70px;
  color: #e9efff;
}

.core-services .core-services-card {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
}

.core-services .core-services-title {
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 28px;
  color: #dce6ff;
}

.core-services .core-services-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.core-services .core-services-left {
  display: grid;
  gap: 18px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.core-services .core-services-item {
  color: #c7d6ff;
  font-size: 0.85rem;
  line-height: 1.4;
  padding: 6px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: left;
  width: 100%;
  font: inherit;
  cursor: pointer;
}

.core-services .core-services-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.core-services .core-services-item.is-active {
  color: #fff;
  font-weight:700;
}

.core-services .core-services-item:focus-visible {
  outline: 2px solid rgba(42, 99, 255, 0.6);
  outline-offset: 4px;
  border-radius: 6px;
}

.core-services .core-services-right {
  padding-top: 8px;
}

.core-services .core-services-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  gap: 12px;
}

.core-services .core-services-points.is-active {
  display: grid;
}

.core-services .core-services-points li {
  position: relative;
  padding-left: 24px;
  color: #e9efff;
  font-size: 16px;
}

.core-services .core-services-points p {
  margin: 0;
  color: #e9efff;
  font-size: 18px !important;
  line-height: 1.6;
}

.core-services .core-services-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b8d2ff;
  font-weight: 700;
}

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

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

  .core-services .core-services-left {
    border-right: none;
    padding-right: 0;
  }

  .core-services .core-services-right {
    display: none;
  }

  .core-services .core-services-left.is-accordion {
    gap: 0;
  }

  .core-services .core-services-left.is-accordion .core-services-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .core-services
    .core-services-left.is-accordion
    .core-services-item:last-of-type {
    border-bottom: none;
  }

  .core-services .core-services-left.is-accordion .core-services-mobile-panel {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition:
      max-height 0.45s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .core-services
    .core-services-left.is-accordion
    .core-services-mobile-panel:last-of-type {
    border-bottom: none;
  }

  .core-services
    .core-services-left.is-accordion
    .core-services-mobile-panel.is-open {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro p {
  color: black !important;
}

.hero-detail .page-title {
  background-color: unset;
  padding: 100px 0 50px 0;
  min-height: 40rem;
}

.service-hero {
  display: flex;
}

.service-hero-content {
  padding: 46px 44px;
  color: #f6f8ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
}

.service-hero-content h1 {
  font-family: var(--nav-font);
  text-align: start;
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.service-hero-content p {
  font-size: 1.2rem;
  text-align: start;
  line-height: 1.6;
  color: rgba(245, 248, 255, 0.9);
  margin-bottom: 28px;
}

.service-hero-link {
  font-family: var(--nav-font);
  font-size: 1rem;
  color: rgba(245, 248, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 248, 255, 0.55);
  padding-bottom: 2px;
  width: fit-content;
  padding-top: 2rem;
}

.service-hero-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.service-hero-media {
  position: relative;
  background: transparent;
  min-height: 340px;
}

@media (max-width: 991px) {
  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero-content {
    padding: 40px 28px;
  }

  .service-hero-content h1,
  .service-hero-content p {
    max-width: 100%;
  }

  .service-hero-media {
    min-height: 240px;
  }
}

.aboutus-hero {
  background: linear-gradient(
    180deg,
    rgba(152, 170, 212, 0.95) 0%,
    rgba(244, 246, 248, 0.9) 48%,
    rgba(255, 255, 255, 0.98) 100%
  );
  padding: clamp(30px, 16vw, 100px) 0 0 !important;
  text-align: center;
  padding-bottom: 50px !important;
}

.aboutus-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.aboutus-hero .container + .container {
  margin-top: clamp(30px, 6vw, 75px);
}

.aboutus-hero h1 {
  font-size: 38px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.aboutus-hero h1 span {
  color: #1a2b56;
}

.aboutus-hero p {
  max-width: 900px;
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  color: #1a2b56;
  font-weight: 600;
}

.aboutus-hero p span {
  color: var(--secondary-color);
  font-weight: 700;
}

.aboutus-story {
  margin-top: clamp(35px, 6vw, 80px);
}

.aboutus-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  /* gap: 100px; */
  align-items: center;
  gap: 110px;
    padding-bottom: 50px !important;
}

.aboutus-story-copy h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
}

.aboutus-story-copy p {
  margin: 0 0 25px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1a2b56;
  text-align: left;
  font-weight: 400;
  max-width: 600px;
}

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

.aboutus-story-media {
  margin: 0;
  text-align: left;
}

.aboutus-story-media img {
  width: 100%;
  height: auto;
  display: block;
}

.aboutus-story-media figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #1a2b56;
}


.aboutus-offices h2 {
  text-align: left;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.aboutus-card{
    display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      padding: 32px 24px;
      height: 100%;
      background: #ffffff;
      border: 1px solid rgba(30, 55, 120, 0.08);
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(30, 55, 120, 0.06);
      transition: all 0.35s ease;
      position: relative;
}

.aboutus-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(30, 55, 120, 0.12);
  border-top-color: var(--secondary-color);
}

.aboutus-dna {
  margin-top: 100px;
}

.aboutus-dna-panel {
  --dna-height: clamp(300px, 40vw, 540px);
  /* background: #f2f6ff; */
  border-radius: 0;
  padding: 0 !important;
  color: #1a2b56;
}

.aboutus-dna-panel h2 {
  text-align: center;
  font-size: clamp(1.65rem, 2.7vw, 2.15rem);
  font-weight: 600;
  margin: 0 0 clamp(18px, 4vw, 32px);
  color: #1a2b56;
}

.aboutus-dna-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}

.aboutus-dna-graphic {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--dna-height);
}

.aboutus-dna-graphic img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.aboutus-dna-accordion {
  position: relative;
  height: var(--dna-height);
  overflow: visible;
}

.aboutus-dna-panel .accordion-item {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.aboutus-dna-panel .accordion-item:nth-child(1) {
  top: 2%;
}

.aboutus-dna-panel .accordion-item:nth-child(2) {
  top: 22.5%;
}

.aboutus-dna-panel .accordion-item:nth-child(3) {
  top: calc(48% - 26px);
}

.aboutus-dna-panel .accordion-item:nth-child(4) {
  top: calc(71% - 40px);
}

.aboutus-dna-panel .accordion-item:nth-child(5) {
  top: calc(92% - 43px);
}

.aboutus-dna-panel .accordion-button {
  background: transparent;
  color: #1a2b56;
  font-weight: 600;
  padding: 16px 0;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  box-shadow: none;
  text-align: left;
}

.aboutus-dna-panel .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.aboutus-dna-panel .accordion-button:focus-visible {
  box-shadow: none;
  outline: none;
}

.aboutus-dna-panel .accordion-button:not(.collapsed) {
  background: transparent;
  color: #1a2b56;
}

.aboutus-dna-panel .accordion-button::after {
  width: 18px;
  height: 12px;
  background-size: 18px 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l8 8 8-8' stroke='%233aa0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.aboutus-dna-panel .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.aboutus-dna-panel .accordion-body {
  color: #1a2b56;
  padding: 0px 0 0px;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: left;
}

.aboutus-quote {
  background: #1a2754;
  padding: 0 !important;
}

.aboutus-quote-panel {
  background: #7f93c2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 250px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 1350px) {
  .aboutus-quote-panel {
    gap: 150px;
  }
}

@media (max-width: 1250px) {
  .aboutus-quote-panel {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .aboutus-quote-panel {
    gap: 20px;
  }
}

.aboutus-quote-media {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 600px;
  overflow: hidden;
}

.aboutus-quote-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.aboutus-quote-content {
  padding: clamp(20px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  right: 100px;
}

@media (max-width: 1350px) {
  .aboutus-quote-content {
    right: 0;
  }
}

@media (max-width: 768px) {
  .aboutus-quote-content {
    right: 0;
  }
}

.aboutus-quote-text {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
  color: #f7f9ff;
  font-weight: 600;
  max-width: 500px;
}

.aboutus-quote-text .quote-mark {
  color: #0b4bff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.6;
}

.aboutus-quote-text .quote-mark-end {
  margin-left: 6px;
}

.aboutus-quote-author {
  margin: 0;
  color: #f3f6ff;
  font-size: 1rem;
  line-height: 1.4;
  text-align: right;
  max-width: 500px;
}

.aboutus-journey {
  background: linear-gradient(
    180deg,
    #24376c 0%,
    #5f74a7 36%,
    #7f93c2 46%,
    #a5b4d4 54%,
    #dce3f0 70%,
    #f3f5fa 100%
  );
  padding-bottom: 30px !important;
}

/* Override the generic section background rule with higher specificity */
.aboutus-journey section.aboutus-history,
.aboutus-journey section.aboutus-best {
  background: transparent;
}

.aboutus-history {
  /* Fine alignment controls for the timeline overlay */
  --history-align-x: 0%;
  --history-align-y: 0%;
  --history-years-y: 0px;
  background: transparent;
  color: #f4f7ff;
  padding: clamp(40px, 6vw, 70px) 0 clamp(44px, 6vw, 75px);
  padding-top: 100px !important;
}

.aboutus-history-title {
  margin: 0 0 clamp(32px, 5vw, 54px);
  color: #f4f7ff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
}

.aboutus-history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.aboutus-history-visual {
  min-width: 0;
}

.aboutus-history-graph {
  position: relative;
}

.aboutus-history-graph img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.aboutus-history-active-dot {
  position: absolute;
  left: calc(var(--history-active-x, 6.85%) + var(--history-align-x));
  top: calc(var(--history-active-y, 73.52%) + var(--history-align-y));
  width: clamp(18px, 2.3vw, 28px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b61ff;
  box-shadow: 0 0 0 3px rgba(11, 97, 255, 0.3);
  z-index: 2;
  transition:
    left 0.28s ease,
    top 0.28s ease;
}

.aboutus-history-years {
  position: relative;
  height: clamp(44px, 5vw, 66px);
  margin-top: clamp(10px, 2vw, 18px);
  transform: translateY(var(--history-years-y));
}

.aboutus-history-year {
  position: absolute;
  left: calc(var(--year-x, 50%) + var(--history-align-x));
  bottom: 0;
  transform: translateX(-50%);
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(231, 238, 255, 0.92);
  font-size: clamp(0.9rem, 1.15vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
  min-height: 38px;
  min-width: max-content;
  padding: 6px 6px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.aboutus-history-year.is-active {
  background: #0b61ff;
  color: #ffffff;
}

.aboutus-history-copy {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.aboutus-history-mobile {
  --history-mobile-line-end: clamp(78px, 21vw, 104px);
  --history-mobile-content-gap: 14px;
  display: none;
  position: relative;
  max-width: 780px;
}

.aboutus-history-mobile-list {
  display: grid;
  row-gap: clamp(12px, 3vw, 18px);
}

.aboutus-history-mobile-item {
  --history-mobile-dot-size: 12px;
  --history-mobile-axis-y: max(
    12px,
    calc(var(--history-mobile-dot-size) * 0.52)
  );
  position: relative;
  padding-left: calc(
    var(--history-mobile-line-end) + var(--history-mobile-content-gap)
  );
}

.aboutus-history-mobile-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(
    var(--history-mobile-axis-y) - (var(--history-mobile-dot-size) / 2)
  );
  width: var(--history-mobile-dot-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #8aa0cd;
}

.aboutus-history-mobile-item::after {
  content: "";
  position: absolute;
  left: calc(var(--history-mobile-dot-size) / 2);
  top: var(--history-mobile-axis-y);
  width: calc(
    var(--history-mobile-line-end) - (var(--history-mobile-dot-size) / 2)
  );
  height: 2px;
  border-radius: 2px;
  background: #8ea5d1;
}

.aboutus-history-mobile-trigger {
  position: relative;
  width: 100%;
  padding: max(0px, calc(var(--history-mobile-axis-y) - 11px)) 0 0;
  border: 0;
  background: transparent;
  color: rgba(231, 238, 255, 0.92);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  min-height: max(32px, var(--history-mobile-dot-size));
  cursor: pointer;
  font: inherit;
}

.aboutus-history-mobile-label {
  font-size: clamp(0.95rem, 2.2vw, 1.06rem);
  font-weight: 600;
  line-height: 1.35;
}

.aboutus-history-mobile-year {
  color: inherit;
}

.aboutus-history-mobile-item-title {
  color: inherit;
}

.aboutus-history-mobile-chevron {
  color: rgba(176, 197, 235, 0.95);
  font-size: 0.95rem;
  line-height: 1;
  margin-top: 3px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.aboutus-history-mobile-panel {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(229, 237, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.6;
  padding-right: 4px;
  transition:
    max-height 0.28s ease,
    opacity 0.24s ease,
    margin-top 0.24s ease;
}

.aboutus-history-mobile-item.is-active .aboutus-history-mobile-trigger {
  color: #0b61ff;
}

.aboutus-history-mobile-item.is-active::before,
.aboutus-history-mobile-item.is-active::after {
  background: #0b61ff;
}

.aboutus-history-mobile-item.is-active .aboutus-history-mobile-chevron {
  color: #0b61ff;
  transform: translateY(1px);
}

.aboutus-history-mobile-item.is-active .aboutus-history-mobile-panel {
  max-height: 900px;
  opacity: 1;
  margin-top: 10px;
}

.aboutus-history-copy h3 {
  margin: 0 0 14px;
  color: #d8e3ff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

.aboutus-history-copy p {
  margin: 0;
  color: rgba(237, 243, 255, 0.9);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.5;
}

.aboutus-history-controls {
  margin-top: auto;
  padding-top: clamp(18px, 3vw, 34px);
  transform: translateY(var(--history-years-y));
  display: flex;
  gap: 14px;
}

.aboutus-history-arrow {
  width: clamp(42px, 4.2vw, 56px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0;
  background: rgba(27, 74, 152, 0.88);
  color: #f2f7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 1.9vw, 1.45rem);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.aboutus-history-arrow:hover {
  background: #0b61ff;
  transform: translateY(-1px);
}

.aboutus-history-arrow:focus-visible,
.aboutus-history-year:focus-visible,
.aboutus-history-mobile-trigger:focus-visible {
  outline: 2px solid rgba(168, 208, 255, 0.95);
  outline-offset: 2px;
}

.aboutus-best {
  background: transparent;
  padding: clamp(82px, 11vw, 138px) 0 clamp(72px, 10vw, 118px);
  padding-top: 100px !important;
}

.aboutus-best h2 {
  margin: 0;
  text-align: center;
  color: #1a2b56;
  font-size: 40px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.aboutus-best-grid {
  margin-top: clamp(52px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(22px, 3.6vw, 56px);
  row-gap: clamp(24px, 3.3vw, 44px);
}

.aboutus-best-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1b2b56;
  max-width: 380px;
}

.aboutus-best-item img {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: block;
}

.aboutus-best-item p {
  margin: 0;
  color: #1b2b56;
  font-size: 20px !important;
  line-height: 1.24;
  font-weight: 500;
}

.aboutus-best-cta-wrap {
  margin-top: 20px;
  text-align: center;
}

.aboutus-best-cta {
  color: #0b61ff;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 500;
}

.aboutus-best-cta:hover {
  color: #0a4fd0;
}

.aboutus-compliance h2{
text-align: ce  ;
  font-size: 28px;
  font-weight: 700;
  /* color: var(--secondary-color); */
}

.aboutus-values h2{
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  /* color: var(--secondary-color); */
}

.aboutus-team-panel {
  background: #eef1f7;
  border-radius: 24px;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.aboutus-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(6px, 1.2vw, 14px);
  row-gap: clamp(20px, 3vw, 32px);
  align-items: start;
  justify-items: center;
}

.aboutus-team-heading h2 {
  margin: 0;
  color: #1d2f61;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 700;
}

:lang(es) .aboutus-team-heading h2 {
  position: relative;
  left: 20%;
}

.aboutus-leader-card {
  margin: 0;
  width: 100%;
  max-width: clamp(210px, 18vw, 300px);
  justify-self: center;
}

.aboutus-leader-media {
  --leader-hover-color: #839ac9;
  margin: 0 0 14px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: clamp(64px, 8.5vw, 105px) 0 clamp(64px, 8.5vw, 105px) 0;
  background: #ffffff;
}

.aboutus-leader-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.aboutus-leader-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leader-hover-color);
  -webkit-mask-image: url("../img/shapes_banners/Staff_hover.png");
  mask-image: url("../img/shapes_banners/Staff_hover.png");
  -webkit-mask-size: 100% 40%;
  mask-size: 100% 40%;
  mask-repeat: no-repeat;
  height: 105%;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  transform: translateY(103%);
  transition: transform 0.32s ease;
  z-index: 1;
}

.aboutus-leader-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transform: scale(1.3);
  transform-origin: center 24%;
  transition: transform 0.45s ease;
}

.aboutus-leader-linkedin {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(27, 49, 96, 0.66);
  color: #f7fbff;
  font-size: 0.82rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    background-color 0.2s ease;
  z-index: 2;
}

.aboutus-leader-linkedin:hover {
  background: rgba(20, 42, 92, 0.65);
  color: #f7fbff;
}

.aboutus-leader-card:hover .aboutus-leader-media::after,
.aboutus-leader-card:focus-within .aboutus-leader-media::after {
  transform: translateY(0);
}

.aboutus-leader-card:hover .aboutus-leader-media img,
.aboutus-leader-card:focus-within .aboutus-leader-media img {
  transform: scale(1.24);
}

.aboutus-leader-card:hover .aboutus-leader-linkedin,
.aboutus-leader-card:focus-within .aboutus-leader-linkedin {
  opacity: 1;
  transform: translateY(0);
}

.aboutus-leader-card h3 {
  margin: 0;
  color: #1d2f61;
  font-size: clamp(1.08rem, 1.5vw, 1.46rem);
  line-height: 1.2;
  font-weight: 700;
}

.aboutus-leader-card p {
  margin: 4px 0 0;
  color: #425f97;
  font-size: clamp(0.95rem, 1.15vw, 1.28rem);
  line-height: 1.25;
  font-weight: 500;
}

.aboutus-faq {
  background: #eff2f7;
  padding: clamp(74px, 9vw, 120px) 0 clamp(80px, 10vw, 132px);
}

.aboutus-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.aboutus-faq-heading h2 {
  margin: 0;
  color: #1d2f61;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.aboutus-faq-accordion .accordion-item {
  border: 0;
  border-top: 1px solid #bcc5d6;
  background: transparent;
  border-radius: 0;
}

.aboutus-faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid #bcc5d6;
}

.aboutus-faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 22px 0;
  color: #1d2f61;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.4;
  font-weight: 600;
}

.aboutus-faq-accordion .accordion-button::after {
  width: clamp(17px, 1.4vw, 24px);
  height: clamp(10px, 0.9vw, 14px);
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2.25L12 11.75L22 2.25' stroke='%230b61ff' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.aboutus-faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.aboutus-faq-accordion .accordion-button:not(.collapsed) {
  color: #1d2f61;
  background: transparent;
}

.aboutus-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.aboutus-faq-accordion .accordion-body {
  padding: 10px 0 20px;
  color: #3c516b;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 940px;
}

.aboutus-faq-accordion .accordion-body p {
  margin: 0;
}

.aboutus-faq-accordion .accordion-body p + ul {
  margin: 10px 0;
}

.aboutus-faq-accordion .accordion-body ul {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .aboutus-quote-panel {
    grid-template-columns: 1fr;
  }

  .aboutus-quote-content {
    text-align: left;
  }

  .aboutus-quote-author {
    text-align: left;
  }

  .aboutus-history-layout {
    grid-template-columns: 1fr;
  }

  .aboutus-history-copy {
    max-width: 740px;
  }

  .aboutus-history-controls {
    transform: none;
  }

  .aboutus-history-years {
    height: clamp(42px, 7vw, 56px);
  }

  .aboutus-history-year {
    font-size: clamp(0.92rem, 2.2vw, 1.2rem);
  }

  .aboutus-best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aboutus-team-panel {
    border-radius: 20px;
  }

  .aboutus-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aboutus-team-heading {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .aboutus-team-heading h2 {
    max-width: 520px;
  }

  .aboutus-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .aboutus-faq-heading h2 {
    max-width: 520px;
  }

  .aboutus-faq-accordion .accordion-button {
    font-size: clamp(1.02rem, 2.2vw, 1.14rem);
  }
}

@media (max-width: 1000px) {
  .aboutus-hero {
    padding: 110px 0 140px;
  }

  .aboutus-hero p {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .aboutus-story-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .aboutus-story-media {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    order: -1;
  }

  @media (max-width: 600px) {
    .aboutus-story-media {
      max-width: 100%;
    }
  }

  .aboutus-leader-media::after {
    height: 109%;
    width: 109%;
  }

  .aboutus-story-media figcaption {
    text-align: center;
  }

  .aboutus-dna-panel {
    padding: 32px 24px;
  }

  .aboutus-dna-grid {
    grid-template-columns: 1fr;
  }

  .aboutus-dna-graphic {
    height: auto;
    justify-content: center;
  }

  .aboutus-dna-accordion {
    height: auto;
  }

  .aboutus-dna-panel .accordion-item {
    position: static;
    border-top: 0;
  }

  .aboutus-history-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .aboutus-history-layout {
    display: block;
  }

  .aboutus-history-visual,
  .aboutus-history-copy {
    display: none;
  }

  .aboutus-history-mobile {
    display: block;
  }

  .aboutus-history-mobile-list {
    row-gap: clamp(12px, 3.2vw, 20px);
  }

  .aboutus-best {
    padding: 62px 0 78px;
  }

  .aboutus-best h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .aboutus-best-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
    row-gap: 20px;
  }

  .aboutus-best-item {
    max-width: 100%;
  }

  .aboutus-best-item p {
    font-size: 1.12rem;
  }

  .aboutus-best-cta-wrap {
    margin-top: 42px;
  }

  .aboutus-team {
    padding: 62px 0 80px;
  }

  .aboutus-team-panel {
    border-radius: 16px;
    padding: 30px 18px;
  }

  .aboutus-team-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .aboutus-leader-card {
    max-width: min(296px, 100%);
  }

  .aboutus-team-heading h2 {
    font-size: clamp(2rem, 10vw, 2.95rem);
    max-width: none;
  }

  .aboutus-leader-media {
    border-radius: 46px 0 46px 0;
  }

  .aboutus-faq {
    padding: 64px 0 78px;
  }

  .aboutus-faq-heading h2 {
    font-size: clamp(2rem, 8.6vw, 2.7rem);
  }

  .aboutus-faq-accordion .accordion-button {
    padding: 18px 0;
    font-size: clamp(1rem, 4.8vw, 1.12rem);
  }

  .aboutus-faq-accordion .accordion-body {
    font-size: 1rem;
    padding-bottom: 20px;
  }
}

/* REFINED SIZE AND ALIGNMENT FOR DNA SECTION (800px-1000px) */
@media (min-width: 768px) and (max-width: 1000px) {
  .aboutus-dna-panel {
    --dna-height: 600px !important;
    padding: 30px 0 !important;
    background: transparent;
  }
  .aboutus-dna-panel .container {
    max-width: 88% !important;
  }
  .aboutus-dna-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .aboutus-dna-panel h2 {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }
  .aboutus-dna-panel .accordion-button {
    font-size: 1.1rem !important;
    padding: 10px 0 !important;
  }
  .aboutus-dna-panel .accordion-button::after {
    width: 16px !important;
    height: 12px !important;
    background-size: 16px 12px !important;
  }
  .aboutus-dna-panel .accordion-body {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    padding: 5px 0 !important;
    max-width: 90%;
  }
  /* Precise alignment with DNA lines - Adjusting for better clustering */
  .aboutus-dna-panel .accordion-item:nth-child(1) {
    top: 10% !important;
  }
  .aboutus-dna-panel .accordion-item:nth-child(2) {
    top: 27.5% !important;
  }
  .aboutus-dna-panel .accordion-item:nth-child(3) {
    top: 45% !important;
  }
  .aboutus-dna-panel .accordion-item:nth-child(4) {
    top: 62.5% !important;
  }
  .aboutus-dna-panel .accordion-item:nth-child(5) {
    top: 80% !important;
  }
}
/* --- Assistance Details Redesign --- */
.assistance-narrative-intro {
  text-align: center;
  margin-bottom: 1rem;
}

.assistance-main-title {
  position: relative;
  display: inline-block;
  padding: 0 1.25rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #24385f;
  max-width: 700px;
  margin: 0 auto;
}

.assistance-main-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 4px;
  height: 80%;
  background: #1e5bff;
  border-radius: 10px;
}

.assistance-split-detail {
  position: relative;
  background: rgba(244, 247, 255, 0.4);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-top: 0.5rem;
}

.assistance-subtitle {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: #24385f;
  line-height: 1.3;
}

.assistance-v-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #d1d9e6, transparent);
  margin: 0 auto;
}

.assistance-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #495a7a;
  margin-bottom: 0;
}

.resalt {
  color: #1e5bff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .assistance-main-title::before {
    display: none;
  }
  .assistance-split-detail {
    padding: 1.5rem 1rem;
  }
}

/* --- Assistance Value Section Redesign --- */
.assistance-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .assistance-value-grid {
    grid-template-columns: 1fr;
  }
}

.assistance-value-card {
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.assistance-value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1b2b55;
  margin-bottom: 20px;
  line-height: 1.2;
}

.assistance-value-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.assistance-value-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #495a7a;
  width: 100%;
}

.assistance-value-card ul li::before {
  content: "✓";
  color: #1e5bff;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: -2px;
}

.assistance-value-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* --- Social Proof Bar --- */
.social-proof {
  padding: 60px 0;
  background-color: #f8fbff;
}

.social-proof-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #1b2b55;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

.social-stats-row {
  margin-top: 40px;
}

.social-stat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 32px 24px;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(30, 55, 120, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 55, 120, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.social-stat-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(30, 55, 120, 0.12);
  border-top-color: var(--secondary-color);
}

.social-stat-tile .stat-number {
  font-size: 60px !important;
  font-weight: 700;
  color: #1e5bff;
  margin-bottom: 12px;
  line-height: 1.2;
  height: 75px;
}

.social-stat-tile .stat-label {
  font-size: 1rem;
  color: #495a7a;
  font-weight: 500;
  line-height: 1.5;
  height: 45px;
}

.social-proof-partners-text {
  font-size: 1rem;
  color: #495a7a;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-sub-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #24385f;
  line-height: 1.5;
  max-width: 600px;
}

