
/* 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: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  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: #52413a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #31221c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f85d23; /* 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: #52413a;  /* The default color of the main navmenu links */
  --nav-hover-color: #f85d23; /* 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: #52413a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f85d23; /* 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: #f8f5f4;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(244, 239, 237, 0.95);
}

/*--------------------------------------------------------------
# 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,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    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;
    width: 100%;
    height: 2px;
    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;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

/* 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;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

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

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

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

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

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

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

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
}

.hero .hero-content {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
  }
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero .hero-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

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

.hero .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
}

.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 575px) {
  .hero .hero-image-wrapper {
    padding: 0;
  }

  .hero .hero-image-wrapper .stat-card {
    position: relative;
  }

  .hero .hero-image-wrapper .stat-card.top-right,
  .hero .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #ffffff;
}

.about .section-heading {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 15px;
  color: #111111;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
}

.about .section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 10px;
}

.about .lead {
  max-width: 760px;
  margin: 0 0 26px;
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.about .feature-box {
  position: relative;
  height: 100%;
  padding: 28px 22px;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), rgba(248, 93, 35, 0.14));
}

.about .feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 93, 35, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.about .feature-box .icon-container {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 27px;
  background: rgba(248, 93, 35, 0.10);
  border-radius: 15px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about .feature-box:hover .icon-container {
  color: #ffffff;
  background: var(--accent-color);
  transform: scale(1.05);
}

.about .feature-box h4 {
  margin: 0 0 11px;
  color: #111111;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
}

.about .feature-box p {
  margin: 0;
  color: #444444;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.8;
}

.about .about-content-box {
  padding: 12px 10px 12px 20px;
}

.about .about-content-box .about-subtitle {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.about .about-content-box h3 {
  margin: 0 0 18px;
  color: #111111;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
}

.about .about-content-box p {
  margin: 0 0 18px;
  color: #222222;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.9;
}

.about .about-content-box .progress-item {
  margin-bottom: 18px;
}

.about .about-content-box .progress-title {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
}

.about .about-content-box .progress-percent {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
}

.about .about-content-box .progress {
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(248, 93, 35, 0.10);
  border-radius: 10px;
}

.about .about-content-box .progress-bar {
  background: var(--accent-color);
  border-radius: 10px;
}

.about .about-content-box .btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 11px 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent-color);
  border: 0;
  border-radius: 9px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.about .about-content-box .btn-discover::before {
  display: none;
}

.about .about-content-box .btn-discover:hover {
  color: #ffffff;
  background: #dc4c17;
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(248, 93, 35, 0.22);
}

.about .about-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about .about-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}

@media (max-width: 991.98px) {
  .about {
    padding: 65px 0;
  }

  .about .about-content-box {
    padding: 0;
    margin-top: 20px;
  }

  .about .about-image-wrapper {
    justify-content: center;
    margin: 0 auto 30px;
  }

  .about .about-image {
    width: 90%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .about {
    padding: 55px 0;
  }

  .about .section-heading {
    font-size: 28px;
  }

  .about .lead {
    font-size: 15px;
  }

  .about .feature-box {
    padding: 23px 18px;
  }

  .about .about-content-box h3 {
    font-size: 25px;
  }

  .about .about-content-box p {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .about .about-image-wrapper {
    justify-content: center;
    margin: 0 auto 25px;
    padding: 0 10px;
  }

  .about .about-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 14px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-overview {
  height: 100%;
  padding: 30px;
}

.stats .stats-overview h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.stats .stats-overview h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .stats .stats-overview h3::after {
    margin: 0;
  }
}

.stats .stats-overview p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.stats .stats-card {
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats .stats-card .stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.stats .stats-card .stats-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stats-card .stats-content {
  flex-grow: 1;
}

.stats .stats-card .stats-content .stats-number {
  display: flex;
  align-items: baseline;
}

.stats .stats-card .stats-content .stats-number .purecounter {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.stats .stats-card .stats-content .stats-number .plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 2px;
}

.stats .stats-card .stats-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 0;
  font-weight: 500;
  font-family: var(--heading-font);
}

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

  .stats .stats-card {
    padding: 15px;
  }

  .stats .stats-card .stats-icon {
    width: 50px;
    height: 50px;
  }

  .stats .stats-card .stats-icon i {
    font-size: 20px;
  }

  .stats .stats-card .stats-content .stats-number .purecounter {
    font-size: 28px;
  }

  .stats .stats-card .stats-content .stats-number .plus {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 30px;
}

.services .services-row {
  position: relative;
}

.services .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

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

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }

  .services .services-image-container .services-image {
    height: 350px;
  }

  .services .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients .clients-slide:hover::before {
  left: 100%;
}

.clients .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.how-we-work .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.how-we-work .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.how-we-work .step-item:last-child {
  margin-bottom: 0;
}

.how-we-work .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.how-we-work .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.how-we-work .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info:hover {
  transform: translateY(-5px);
}

.how-we-work .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.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: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .steps-wrapper::before {
    left: 25px;
  }

  .how-we-work .step-item .step-content {
    flex-direction: row !important;
  }

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

  .how-we-work .step-icon i {
    font-size: 24px;
  }

  .how-we-work .step-info {
    padding: 20px;
  }

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

@media (max-width: 767px) {
  .how-we-work .step-content {
    gap: 20px;
  }

  .how-we-work .step-icon {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-icon i {
    font-size: 20px;
  }

  .how-we-work .step-info {
    padding: 15px;
  }

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .cta-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.call-to-action .cta-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .call-to-action .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-buttons {
    justify-content: center;
  }

  .call-to-action .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action .cta-content p {
    font-size: 1rem;
  }

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 40px;
  }
}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
}

.contact .container {
  max-width: 1200px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

.service-details .service-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.hero .hero-image-wrapper video.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: right center;
}

.dropdown-logout-button {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    border: 0;
    text-align: left;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    cursor: pointer;
}

    .dropdown-logout-button:hover {
        color: var(--nav-dropdown-hover-color);
    }
.header .ncv-brand-name,
.footer .ncv-brand-name {
    font-family: "Montserrat", sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: -1.5px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--heading-color) !important;
}

    .header .ncv-brand-name .vest,
    .footer .ncv-brand-name .vest {
        color: var(--accent-color) !important;
        font-family: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        letter-spacing: inherit !important;
    }

@media (max-width: 768px) {
    .header .ncv-brand-name,
    .footer .ncv-brand-name {
        font-size: 24px !important;
    }
}


    .footer .footer-links ul li i {
        font-size: 14px;
        color: var(--accent-color);
        flex-shrink: 0;
    }

.footer .footer-contact i {
    color: var(--accent-color);
    font-size: 18px;
}

/* ==============================
   News Section
============================== */

.news-section {
    padding: 80px 0;
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }

.news-image-link {
    display: block;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.news-date {
    display: block;
    margin-bottom: 12px;
    color: #777777;
    font-size: 13px;
}

.news-title {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

    .news-title a {
        color: #1f2937;
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .news-title a:hover {
            color: var(--accent-color);
        }

.news-description {
    margin-bottom: 20px;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

    .news-read-more i {
        transition: transform 0.25s ease;
    }

    .news-read-more:hover i {
        transform: translateX(4px);
    }

@media (max-width: 767.98px) {
    .news-section {
        padding: 55px 0;
    }

    .news-image {
        height: 210px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 18px;
    }
}

/* =========================================================
   Vestinex - Legal Pages
   Privacy Policy / Risk Disclosure / Terms of Use
========================================================= */

/* Shared legal-page headers */
.policy-header,
.terms-header {
  width: 100%;
  margin: 0;
  padding: 35px 0 12px;
}

.policy-header .section-title,
.terms-header .section-title {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
}

.policy-header .section-title h2,
.terms-header .section-title h2 {
  width: 100%;
  margin: 0 auto 8px !important;
  text-align: center !important;
  color: #111111;
  font-size: 32px;
  font-weight: 800;
}

.policy-header .section-title p,
.terms-header .section-title p {
  max-width: 750px;
  margin: 0 auto !important;
  text-align: center !important;
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
}

/* Shared main layout */
.policy-page,
.terms-page {
  margin: 0 !important;
  padding: 8px 0 80px !important;
}

.policy-content,
.terms-content {
  width: 100%;
  max-width: 100%;
  color: #111111;
}

/* Effective / updated date */
.policy-date,
.terms-date {
  display: inline-block;
  margin: 0 0 30px;
  padding: 9px 15px;
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  background: #fff7f0;
  border: 1px solid rgba(255, 106, 0, 0.30);
  border-radius: 8px;
}

/* Introduction */
.policy-intro,
.terms-intro {
  margin-bottom: 30px;
}

.policy-intro p,
.terms-intro p {
  margin: 0 0 16px;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

/* Shared cards */
.policy-item,
.terms-item {
  position: relative;
  margin-top: 24px;
  padding: 26px 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.policy-item::before,
.terms-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #ff7a00,
    rgba(255, 106, 0, 0.15)
  );
}

.policy-item:hover,
.terms-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
}

/* Card titles */
.policy-item-title,
.terms-item-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.policy-item-title h4,
.terms-item-title h4 {
  margin: 0;
  color: #111111;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1px;
}

/* Section numbers */
.policy-number,
.terms-number {
  min-width: 52px;
  display: inline-block;
  color: #ff7a00 !important;
  -webkit-text-fill-color: #ff7a00;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 10px rgba(255, 106, 0, 0.20);
}

/* Paragraphs */
.policy-item p,
.terms-item p {
  margin: 0 0 15px;
  color: #111111 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.policy-item p:last-child,
.terms-item p:last-child {
  margin-bottom: 0;
}

/* Lists */
.policy-list,
.terms-list {
  margin: 15px 0 8px;
  padding: 0;
  list-style: none;
}

.policy-list li,
.terms-list li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 29px;
  color: #111111 !important;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.8;
}

.policy-list li::before,
.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a00;
  font-size: 11px;
  font-weight: 900;
  background: rgba(255, 106, 0, 0.12);
  border-radius: 50%;
}

/* Links */
.policy-content a,
.terms-content a {
  color: #ff6a00;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-content a:hover,
.terms-content a:hover {
  color: #111111;
}

/* Bottom legal notice / acceptance */
.policy-notice,
.terms-acceptance {
  position: relative;
  margin-top: 35px;
  padding: 23px 25px 23px 65px;
  color: #111111;
  background: #fff8f2;
  border: 1px solid rgba(255, 106, 0, 0.30);
  border-radius: 14px;
}

.policy-notice::before,
.terms-acceptance::before {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  background: #ff6a00;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(255, 106, 0, 0.30);
}

.policy-notice p,
.terms-acceptance p {
  margin: 0;
  color: #111111 !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

/* Responsive legal pages */
@media (max-width: 767.98px) {
  .policy-header,
  .terms-header {
    padding: 28px 0 10px;
  }

  .policy-header .section-title h2,
  .terms-header .section-title h2 {
    font-size: 27px;
  }

  .policy-header .section-title p,
  .terms-header .section-title p {
    max-width: 90%;
    font-size: 14px;
    line-height: 1.7;
  }

  .policy-page,
  .terms-page {
    padding: 6px 0 55px !important;
  }

  .policy-date,
  .terms-date {
    margin-bottom: 22px;
  }

  .policy-item,
  .terms-item {
    margin-top: 18px;
    padding: 21px 18px;
    border-radius: 12px;
  }

  .policy-item-title,
  .terms-item-title {
    align-items: flex-start;
    gap: 11px;
  }

  .policy-number,
  .terms-number {
    min-width: 42px;
    font-size: 24px;
  }

  .policy-item-title h4,
  .terms-item-title h4 {
    padding-top: 1px;
    font-size: 18px;
  }

  .policy-item p,
  .terms-item p {
    font-size: 15px;
  }

  .policy-list li,
  .terms-list li {
    font-size: 14.5px;
  }

  .policy-notice,
  .terms-acceptance {
    padding: 62px 20px 20px;
    text-align: center;
  }

  .policy-notice::before,
  .terms-acceptance::before {
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================================================
   Contact Page
========================================================= */

.contact-page {
    padding: 8px 0 80px;
}

.contact-card {
    position: relative;
    margin-bottom: 18px;
    padding: 24px 26px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

    .contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient( to bottom, #ff7a00, rgba(255, 106, 0, 0.15) );
    }

.contact-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-number {
    min-width: 45px;
    color: #ff6a00;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.contact-info h4 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
}

.contact-info p {
    margin: 0;
    color: #111111;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}


/* Contact Form */

.contact-form-box {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

    .contact-form-box h4 {
        margin-bottom: 25px;
        color: #111111;
        font-size: 22px;
        font-weight: 800;
    }

    .contact-form-box .form-label {
        color: #111111;
        font-weight: 600;
    }

    .contact-form-box .form-control {
        min-height: 48px;
        color: #111111;
        background: #ffffff;
        border: 1px solid #dedede;
        border-radius: 9px;
    }

    .contact-form-box textarea.form-control {
        min-height: 150px;
    }

    .contact-form-box .form-control:focus {
        border-color: #ff6a00;
        box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.10);
    }

.contact-submit {
    padding: 11px 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: #ff6a00;
    border: none;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .contact-submit:hover {
        background: #e85f00;
        transform: translateY(-1px);
    }


@media (max-width: 767.98px) {

    .contact-page {
        padding: 6px 0 55px;
    }

    .contact-card {
        padding: 20px 18px;
    }

    .contact-number {
        min-width: 40px;
        font-size: 23px;
    }

    .contact-info h4 {
        font-size: 18px;
    }

    .contact-info p {
        font-size: 14.5px;
    }

    .contact-form-box {
        padding: 22px 18px;
    }
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 14px 16px;
    color: #1c6b3c;
    font-size: 14px;
    font-weight: 600;
    background: #f0faf4;
    border: 1px solid #ccebd8;
    border-radius: 9px;
}

    .contact-success i {
        color: #28a45f;
        font-size: 18px;
    }

.contact-validation {
    margin-bottom: 15px;
    color: #c62828;
    font-size: 14px;
    font-weight: 600;
}

.contact-field-error {
    display: block;
    margin-top: 5px;
    color: #c62828;
    font-size: 12.5px;
    font-weight: 500;
}

.contact-submit i {
    margin-left: 7px;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.contact-submit:hover i {
    transform: translateX(3px);
}

/* =========================================================
   Vestinex - FAQ Page
========================================================= */

.faq-header {
    width: 100%;
    margin: 0;
    padding: 35px 0 12px;
}

    .faq-header .section-title {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

        .faq-header .section-title h2 {
            width: 100%;
            margin: 0 auto 8px !important;
            color: #111111;
            font-size: 32px;
            font-weight: 800;
            text-align: center !important;
        }

        .faq-header .section-title p {
            max-width: 760px;
            margin: 0 auto !important;
            color: #555555;
            font-size: 15px;
            line-height: 1.7;
            text-align: center !important;
        }


/* Main page */

.faq-page {
    margin: 0;
    padding: 18px 0 80px;
}


/* Category navigation */

.faq-category-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
}

.faq-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .faq-category-link:hover {
        color: #ffffff;
        background: #ff6a00;
        border-color: #ff6a00;
        transform: translateY(-2px);
    }


/* FAQ groups */

.faq-group {
    margin-bottom: 52px;
    scroll-margin-top: 100px;
}

    .faq-group:last-of-type {
        margin-bottom: 35px;
    }

.faq-group-heading {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

    .faq-group-heading > span {
        min-width: 50px;
        color: #ff6a00;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 28px;
        font-weight: 900;
        line-height: 1;
        text-shadow: 0 2px 10px rgba(255, 106, 0, 0.18);
    }

    .faq-group-heading h3 {
        margin: -4px 0 5px;
        color: #111111;
        font-size: 23px;
        font-weight: 800;
        line-height: 1.35;
    }

    .faq-group-heading p {
        margin: 0;
        color: #666666;
        font-size: 14.5px;
        font-weight: 500;
        line-height: 1.7;
    }


/* Accordion */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 13px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.055);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .faq-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient( to bottom, #ff7a00, rgba(255, 106, 0, 0.12) );
    }

    .faq-item:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 106, 0, 0.28);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.085);
    }


/* Question button */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 22px;
    color: #111111;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.faq-question-check {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
    font-size: 15px;
    font-weight: 900;
    background: rgba(255, 106, 0, 0.12);
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.faq-question:not(.collapsed) .faq-question-check {
    color: #ffffff;
    background: #ff6a00;
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .faq-question-check {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
        font-size: 13px;
    }
}

.faq-question-text {
    flex: 1;
    color: #111111;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.55;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    background: #ff6a00;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
}


/* Answer */

.faq-answer {
    padding: 0 65px 21px 70px;
    color: #222222;
}

    .faq-answer p {
        margin: 0;
        color: #222222;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.9;
    }

    .faq-answer a {
        color: #ff6a00;
        font-weight: 700;
        text-decoration: none;
    }

        .faq-answer a:hover {
            color: #111111;
        }


/* Support box */

.faq-support-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 45px;
    padding: 25px 27px;
    background: #fff8f2;
    border: 1px solid rgba(255, 106, 0, 0.28);
    border-radius: 15px;
}

.faq-support-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 23px;
    background: #ff6a00;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.23);
}

.faq-support-content {
    flex: 1;
}

    .faq-support-content h3 {
        margin: 0 0 5px;
        color: #111111;
        font-size: 19px;
        font-weight: 800;
    }

    .faq-support-content p {
        margin: 0;
        color: #444444;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.7;
    }

.faq-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    background: #ff6a00;
    border-radius: 9px;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .faq-support-button:hover {
        color: #ffffff;
        background: #e85f00;
        transform: translateY(-1px);
    }

    .faq-support-button i {
        transition: transform 0.2s ease;
    }

    .faq-support-button:hover i {
        transform: translateX(3px);
    }


/* Mobile */

@media (max-width: 767.98px) {

    .faq-header {
        padding: 28px 0 10px;
    }

        .faq-header .section-title h2 {
            font-size: 27px;
        }

        .faq-header .section-title p {
            max-width: 90%;
            font-size: 14px;
        }

    .faq-page {
        padding: 12px 0 55px;
    }

    .faq-category-nav {
        justify-content: flex-start;
        margin-bottom: 34px;
    }

    .faq-category-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .faq-group {
        margin-bottom: 42px;
    }

    .faq-group-heading {
        gap: 11px;
    }

        .faq-group-heading > span {
            min-width: 42px;
            font-size: 24px;
        }

        .faq-group-heading h3 {
            margin-top: -3px;
            font-size: 20px;
        }

        .faq-group-heading p {
            font-size: 13.5px;
        }

    .faq-question {
        gap: 9px;
        padding: 17px 15px;
    }

    .faq-question-number {
        min-width: 28px;
        font-size: 14px;
    }

    .faq-question-text {
        font-size: 14.5px;
    }

    .faq-toggle-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        font-size: 12px;
    }

    .faq-answer {
        padding: 0 18px 18px 52px;
    }

        .faq-answer p {
            font-size: 14px;
        }

    .faq-support-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .faq-support-button {
        width: 100%;
    }
}
/* =========================================================
   Vestinex - Security Page
========================================================= */

.security-header {
    width: 100%;
    margin: 0;
    padding: 35px 0 12px;
}

    .security-header .section-title {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

        .security-header .section-title h2 {
            width: 100%;
            margin: 0 auto 8px !important;
            color: #111111;
            font-size: 32px;
            font-weight: 800;
            text-align: center !important;
        }

        .security-header .section-title p {
            max-width: 760px;
            margin: 0 auto !important;
            color: #555555;
            font-size: 15px;
            line-height: 1.7;
            text-align: center !important;
        }

.security-page {
    margin: 0;
    padding: 18px 0 80px;
}

.security-intro {
    margin-bottom: 30px;
    padding: 24px 26px;
    background: #fff8f2;
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 14px;
}

    .security-intro p {
        margin: 0 0 12px;
        color: #111111;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.9;
    }

        .security-intro p:last-child {
            margin-bottom: 0;
        }

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.security-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 100%;
    padding: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .security-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient( to bottom, #ff7a00, rgba(255, 106, 0, 0.15) );
    }

    .security-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 106, 0, 0.30);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
    }

.security-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
    font-size: 22px;
    background: rgba(255, 106, 0, 0.11);
    border-radius: 12px;
}

.security-content h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
}

.security-content p {
    margin: 0;
    color: #222222;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.8;
}

.security-guidelines {
    margin-top: 30px;
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.06);
}

.security-guidelines-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.security-guidelines-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    background: #ff6a00;
    border-radius: 11px;
}

.security-guidelines-title h3 {
    margin: 0 0 5px;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
}

.security-guidelines-title p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

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

    .security-list li {
        position: relative;
        margin-bottom: 11px;
        padding-left: 29px;
        color: #111111;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.8;
    }

        .security-list li:last-child {
            margin-bottom: 0;
        }

        .security-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 3px;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6a00;
            font-size: 11px;
            font-weight: 900;
            background: rgba(255, 106, 0, 0.12);
            border-radius: 50%;
        }

.security-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 22px;
    padding: 23px 25px;
    background: #fff5e7;
    border: 1px solid #f3d7ae;
    border-radius: 14px;
}

.security-alert-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 19px;
    background: #ff7a00;
    border-radius: 11px;
}

.security-alert h3 {
    margin: 0 0 6px;
    color: #5f3500;
    font-size: 18px;
    font-weight: 800;
}

.security-alert p {
    margin: 0;
    color: #6d420b;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.8;
}

.security-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
    padding: 25px 27px;
    background: #fff8f2;
    border: 1px solid rgba(255, 106, 0, 0.28);
    border-radius: 14px;
}

    .security-support h3 {
        margin: 0 0 6px;
        color: #111111;
        font-size: 19px;
        font-weight: 800;
    }

    .security-support p {
        margin: 0;
        color: #444444;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.7;
    }

.security-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 11px 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    background: #ff6a00;
    border-radius: 9px;
}

    .security-support-button:hover {
        color: #ffffff;
        background: #e85f00;
    }

    .security-support-button i {
        transition: transform 0.2s ease;
    }

    .security-support-button:hover i {
        transform: translateX(3px);
    }

@media (max-width: 767.98px) {

    .security-header {
        padding: 28px 0 10px;
    }

        .security-header .section-title h2 {
            font-size: 27px;
        }

        .security-header .section-title p {
            max-width: 90%;
            font-size: 14px;
        }

    .security-page {
        padding: 12px 0 55px;
    }

    .security-intro {
        padding: 20px 18px;
    }

        .security-intro p {
            font-size: 15px;
        }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .security-card {
        padding: 20px 18px;
    }

    .security-content h3 {
        font-size: 18px;
    }

    .security-content p {
        font-size: 14px;
    }

    .security-guidelines {
        padding: 22px 18px;
    }

    .security-alert {
        padding: 20px 18px;
    }

    .security-support {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 19px;
    }

    .security-support-button {
        width: 100%;
    }
}

/* =========================================================
   Vestinex Footer
========================================================= */

.footer .footer-about p {
    max-width: 480px;
    color: color-mix(in srgb,var(--default-color),transparent 20%);
    font-size: 14px;
    line-height: 1.9;
}

.footer .footer-links ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer .footer-links ul li i {
        color: var(--accent-color);
        font-size: 12px;
    }

.footer .footer-links ul a {
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

    .footer-legal-links a {
        color: color-mix(in srgb,var(--default-color),transparent 30%);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: .25s;
    }

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

.footer-legal-separator {
    color: color-mix(in srgb,var(--default-color),transparent 70%);
    font-size: 11px;
}

.footer .footer-about p {
    max-width: 480px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
    line-height: 1.9;
}

.footer .footer-links ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer .footer-links ul li i {
        flex: 0 0 auto;
        color: var(--accent-color);
        font-size: 12px;
    }

.footer .footer-links ul a {
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

    .footer-legal-links a {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 13px;
        font-weight: 500;
    }

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

.footer-legal-separator {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 11px;
}
/* =========================================================
   Footer Mobile
========================================================= */

@media (max-width: 767.98px) {

    .footer .footer-top {
        padding-top: 38px;
    }

    .footer .footer-about,
    .footer .footer-links {
        text-align: left;
    }

        .footer .footer-about .logo {
            justify-content: flex-start;
        }

        .footer .footer-about p {
            max-width: 100%;
            margin-right: 0;
            margin-left: 0;
        }

    .footer .footer-links {
        margin-bottom: 12px;
    }

        .footer .footer-links h4 {
            text-align: left;
        }

        .footer .footer-links ul {
            width: 100%;
        }

            .footer .footer-links ul li {
                justify-content: flex-start;
                text-align: left;
            }

            .footer .footer-links ul a {
                text-align: left;
            }

    .footer-legal-links {
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 767.98px) {

    .footer .footer-about {
        margin-bottom: 12px;
    }

    .footer .footer-links + .footer-links {
        margin-top: 4px;
    }
}

/* =========================================================
   Vestinex - Live Crypto Market
========================================================= */

.market-section {
    padding: 70px 0;
    background: #ffffff;
}

    .market-section .section-title {
        padding-bottom: 35px;
    }

        .market-section .section-title h2 {
            margin-bottom: 12px;
            color: #111111;
            font-size: 32px;
            font-weight: 800;
        }

        .market-section .section-title p {
            max-width: 720px;
            margin: 0 auto;
            color: #5f5f5f;
            font-size: 15px;
            line-height: 1.8;
        }

.market-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.market-card {
    position: relative;
    padding: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .market-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient( to bottom, #ff7a00, rgba(255, 106, 0, 0.18) );
    }

    .market-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 106, 0, 0.35);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
    }

.market-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

.market-coin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.market-coin-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    overflow: hidden;
    background: linear-gradient( 145deg, #ffffff, #f5f5f5 );
    border: 1px solid #ececec;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.10);
}

    .market-coin-icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

.market-coin-icon-fallback::before {
    content: "●";
    color: #ff6a00;
    font-size: 22px;
}

.market-coin-info h3 {
    margin: 0 0 3px;
    color: #111111;
    font-size: 17px;
    font-weight: 800;
}

.market-coin-info span {
    color: #777777;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.market-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    font-size: 12.5px;
    font-weight: 800;
    border-radius: 8px;
}

.market-change-positive {
    color: #167d44;
    background: #edf9f2;
}

.market-change-negative {
    color: #b3261e;
    background: #fff0ef;
}

.market-price {
    margin-bottom: 20px;
    color: #111111;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.market-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

    .market-meta > div {
        padding: 11px 12px;
        background: #fafafa;
        border: 1px solid #eeeeee;
        border-radius: 10px;
    }

    .market-meta span {
        display: block;
        margin-bottom: 5px;
        color: #777777;
        font-size: 11.5px;
        font-weight: 600;
    }

    .market-meta strong {
        display: block;
        color: #222222;
        font-size: 13px;
        font-weight: 800;
    }

.market-loading,
.market-error {
    padding: 18px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
}

.market-loading {
    color: #6b6b6b;
    background: #f7f7f7;
    border: 1px solid #ebebeb;
}

.market-error {
    color: #a33a2a;
    background: #fff2ef;
    border: 1px solid #f1c9c1;
}

.market-updated {
    margin-top: 20px;
    color: #777777;
    font-size: 12.5px;
    font-weight: 500;
    text-align: center;
}

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

@media (max-width:991px) {

    .market-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 575.98px) {
    .market-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

        .market-meta > div {
            padding: 10px 8px;
        }

        .market-meta strong {
            font-size: 12px;
        }
}
/* =========================================================
   Vestinex - Programs Page
========================================================= */

.programs-hero {
    position: relative;
    padding: 85px 0 70px;
    overflow: hidden;
    background: radial-gradient( circle at 85% 25%, rgba(248, 93, 35, 0.14), transparent 32% ), linear-gradient( 135deg, #ffffff 0%, #fff8f4 100% );
}

    .programs-hero::before {
        content: "";
        position: absolute;
        top: -130px;
        right: -130px;
        width: 330px;
        height: 330px;
        border: 1px solid rgba(248, 93, 35, 0.15);
        border-radius: 50%;
    }

.programs-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 13px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    background: rgba(248, 93, 35, 0.10);
    border-radius: 30px;
}

.programs-hero h1 {
    max-width: 650px;
    margin: 0 0 20px;
    color: #111111;
    font-size: 48px;
    font-weight: 850;
    line-height: 1.15;
}

    .programs-hero h1 span {
        display: block;
        color: var(--accent-color);
    }

.programs-hero p {
    max-width: 630px;
    margin: 0 0 28px;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
}

.programs-hero-actions,
.programs-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.programs-primary-button,
.programs-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 750;
    border-radius: 9px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.programs-primary-button {
    color: #ffffff;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
}

    .programs-primary-button:hover {
        color: #ffffff;
        background: #d94b16;
        border-color: #d94b16;
        transform: translateY(-2px);
    }

.programs-secondary-button {
    color: #111111;
    background: #ffffff;
    border: 1px solid #dcdcdc;
}

    .programs-secondary-button:hover {
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
    }

.programs-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .programs-hero-image img {
        display: block;
        width: 100%;
        max-width: 550px;
        height: auto;
        object-fit: contain;
    }


/* Main page */

.programs-page {
    padding: 75px 0 85px;
    background: #ffffff;
}

    .programs-page .section-title {
        padding-bottom: 30px;
    }

        .programs-page .section-title h2 {
            margin-bottom: 12px;
            color: #111111;
            font-weight: 800;
        }

        .programs-page .section-title p {
            max-width: 720px;
            margin: 0 auto;
            color: #555555;
            font-size: 15px;
            line-height: 1.8;
        }


/* Category bar */

.programs-category-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

    .programs-category-bar span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 14px;
        color: #333333;
        font-size: 12.5px;
        font-weight: 700;
        background: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 30px;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
    }

    .programs-category-bar i {
        color: var(--accent-color);
    }


/* Program card */

.program-card {
    position: relative;
    height: 100%;
    min-height: 475px;
    padding: 27px 25px 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.065);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .program-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient( to bottom, var(--accent-color), rgba(248, 93, 35, 0.10) );
    }

    .program-card:hover {
        transform: translateY(-5px);
        border-color: rgba(248, 93, 35, 0.35);
        box-shadow: 0 17px 40px rgba(0, 0, 0, 0.10);
    }

.program-card-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(248, 93, 35, 0.18);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 37px;
    font-weight: 900;
    line-height: 1;
}

.program-card-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--accent-color);
    font-size: 27px;
    background: rgba(248, 93, 35, 0.10);
    border-radius: 15px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.program-card:hover .program-card-icon {
    color: #ffffff;
    background: var(--accent-color);
    transform: scale(1.05);
}

.program-card h3 {
    margin: 0 0 13px;
    color: #111111;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
}

.program-card > p {
    min-height: 106px;
    margin: 0 0 20px;
    color: #333333;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.8;
}

.program-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.program-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 10px;
    color: #222222;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.6;
}

    .program-card li:last-child {
        margin-bottom: 0;
    }

    .program-card li i {
        flex: 0 0 auto;
        margin-top: 2px;
        color: var(--accent-color);
        font-size: 15px;
    }

.program-status {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 25px;
    display: block;
    padding-top: 14px;
    color: #777777;
    font-size: 11.5px;
    font-weight: 700;
    border-top: 1px solid #eeeeee;
}


/* Program note */

.programs-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 35px;
    padding: 24px 26px;
    background: #fff8f4;
    border: 1px solid rgba(248, 93, 35, 0.25);
    border-radius: 14px;
}

.programs-note-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 19px;
    background: var(--accent-color);
    border-radius: 12px;
}

.programs-note h3 {
    margin: 0 0 7px;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
}

.programs-note p {
    margin: 0;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}


/* CTA */

.programs-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 25px;
    padding: 34px;
    background: linear-gradient( 135deg, #111111, #242424 );
    border-radius: 17px;
}

    .programs-cta > div:first-child {
        max-width: 680px;
    }

    .programs-cta span {
        display: block;
        margin-bottom: 7px;
        color: var(--accent-color);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    .programs-cta h2 {
        margin: 0 0 10px;
        color: #ffffff;
        font-size: 27px;
        font-weight: 800;
    }

    .programs-cta p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14.5px;
        font-weight: 500;
        line-height: 1.8;
    }

    .programs-cta .programs-secondary-button {
        color: #ffffff;
        background: transparent;
        border-color: rgba(255, 255, 255, 0.35);
    }

        .programs-cta .programs-secondary-button:hover {
            color: #ffffff;
            border-color: var(--accent-color);
        }


/* Responsive */

@media (max-width: 991.98px) {
    .programs-hero {
        padding: 70px 0 60px;
    }

        .programs-hero h1 {
            font-size: 40px;
        }

    .programs-hero-image img {
        max-width: 500px;
    }

    .programs-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .programs-hero {
        padding: 55px 0;
    }

        .programs-hero h1 {
            font-size: 33px;
        }

        .programs-hero p {
            font-size: 15px;
        }

    .programs-hero-actions {
        align-items: stretch;
    }

    .programs-primary-button,
    .programs-secondary-button {
        flex: 1 1 auto;
    }

    .programs-hero-image img {
        width: 90%;
        margin: 0 auto;
    }

    .programs-page {
        padding: 60px 0;
    }

    .program-card {
        min-height: auto;
        padding: 24px 21px 80px;
    }

        .program-card > p {
            min-height: 0;
        }

    .programs-note {
        padding: 21px 18px;
    }

    .programs-cta {
        padding: 27px 21px;
    }

        .programs-cta h2 {
            font-size: 23px;
        }

    .programs-cta-actions {
        width: 100%;
    }

        .programs-cta-actions a {
            width: 100%;
        }
}

@media (max-width: 575.98px) {
    .programs-category-bar {
        justify-content: flex-start;
    }

        .programs-category-bar span {
            padding: 8px 11px;
            font-size: 11.5px;
        }

    .programs-hero-actions {
        flex-direction: column;
    }

        .programs-hero-actions a {
            width: 100%;
        }
}
/* =========================================================
   Programs Process
========================================================= */

.programs-process {
    position: relative;
    padding: 75px 0;
    overflow: hidden;
    background: #fff8f4;
}

    .programs-process .section-title {
        padding-bottom: 38px;
    }

        .programs-process .section-title h2 {
            margin-bottom: 12px;
            color: #111111;
            font-weight: 800;
        }

        .programs-process .section-title p {
            max-width: 720px;
            margin: 0 auto;
            color: #555555;
            font-size: 15px;
            line-height: 1.8;
        }

.programs-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

    .programs-process-grid::before {
        content: "";
        position: absolute;
        top: 45px;
        right: 10%;
        left: 10%;
        height: 2px;
        background: linear-gradient( to right, transparent, rgba(248, 93, 35, 0.35), rgba(248, 93, 35, 0.35), transparent );
    }

.programs-process-item {
    position: relative;
    z-index: 1;
    min-height: 265px;
    padding: 27px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.055);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .programs-process-item:hover {
        transform: translateY(-4px);
        border-color: rgba(248, 93, 35, 0.35);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    }

.programs-process-number {
    position: absolute;
    top: 17px;
    right: 19px;
    color: rgba(248, 93, 35, 0.20);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
}

.programs-process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 29px;
    background: #fff2eb;
    border: 6px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(248, 93, 35, 0.15);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.programs-process-item:hover .programs-process-icon {
    color: #ffffff;
    background: var(--accent-color);
    transform: scale(1.05);
}

.programs-process-item h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}

.programs-process-item p {
    margin: 0;
    color: #444444;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .programs-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .programs-process-grid::before {
            display: none;
        }
}

@media (max-width: 575.98px) {
    .programs-process {
        padding: 58px 0;
    }

    .programs-process-grid {
        grid-template-columns: 1fr;
    }

    .programs-process-item {
        min-height: auto;
        padding: 24px 20px;
    }
}

/*=============================
404
==============================*/

.error404-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
}

.error404-wrapper {
    max-width: 700px;
    margin: auto;
}

.error404-code {
    display: block;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}

.error404-wrapper h1 {
    margin-bottom: 18px;
    color: #111;
    font-size: 42px;
    font-weight: 800;
}

.error404-wrapper p {
    max-width: 520px;
    margin: 0 auto 35px;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

.error404-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media(max-width:768px) {

    .error404-section {
        padding: 90px 0;
    }

    .error404-code {
        font-size: 90px;
    }

    .error404-wrapper h1 {
        font-size: 32px;
    }

    .error404-wrapper p {
        font-size: 15px;
    }

    .error404-buttons {
        flex-direction: column;
    }

        .error404-buttons a {
            width: 100%;
        }
}
.header .container-fluid {
    flex-wrap: nowrap;
}

.header .logo {
    order: 1;
    flex: 0 0 auto;
}

.header .navmenu {
    order: 2;
}


@media (max-width: 1199.98px) {

    .header .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .logo {
        order: 1;
        margin-right: auto !important;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 575.98px) {

    .header .logo img {
        max-height: 34px;
    }

    .header .ncv-brand-name {
        font-size: 19px;
    }
}
/* =========================================================
   NCV HEADER
========================================================= */

.header {
    position: relative;
    z-index: 997;
    padding: 15px 0;
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.3s ease;
}

.ncv-header-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 44px;
}

.ncv-header-logo {
    order: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
    line-height: 1;
    white-space: nowrap;
}

    .ncv-header-logo img {
        display: block;
        width: auto;
        max-height: 36px;
        margin: 0;
    }

    .ncv-header-logo .ncv-brand-name {
        margin: 0;
        color: var(--heading-color);
        font-size: 26px;
        font-weight: 700;
        line-height: 1;
    }

    .ncv-header-logo .vest {
        color: var(--accent-color);
    }

.ncv-header-nav {
    order: 2;
    flex: 0 1 auto;
}

.ncv-header-actions {
    order: 3;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 24px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 24px;
    margin: 0;
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .header .btn-getstarted:hover {
        color: var(--contrast-color);
        background: #dd4e19;
        border-color: #dd4e19;
        transform: translateY(-1px);
    }

.ncv-logout-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.header .btn-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 19px;
    margin: 0;
    color: var(--heading-color);
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--heading-color), transparent 75%);
    border-radius: 50px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .header .btn-logout:hover,
    .header .btn-logout:focus {
        color: #ffffff;
        background: #111111;
        border-color: #111111;
        transform: translateY(-1px);
    }

.header .mobile-nav-toggle {
    order: 4;
    flex: 0 0 auto;
}

/* =========================================================
   DESKTOP HEADER
========================================================= */

@media (min-width: 1200px) {

    .ncv-header-nav {
        margin-left: auto;
    }

    .header .mobile-nav-toggle {
        display: none;
    }
}

/* =========================================================
   TABLET AND MOBILE HEADER
========================================================= */

@media (max-width: 1199.98px) {

    .header {
        padding: 12px 0;
    }

    .ncv-header-container {
        justify-content: flex-start;
    }

    .ncv-header-logo {
        order: 1;
        margin-right: auto;
    }

    .ncv-header-nav {
        order: 4;
        flex: 0 0 auto;
        margin: 0;
    }

    .ncv-header-actions {
        order: 2;
        margin: 0 10px 0 auto;
        gap: 8px;
    }

    .header .mobile-nav-toggle {
        order: 3;
        position: static;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 40px;
        margin: 0;
        padding: 0;
        color: var(--nav-color);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        z-index: 9999;
    }

    .header .btn-getstarted,
    .header .btn-logout {
        min-height: 38px;
        padding: 7px 16px;
        font-size: 13px;
    }

    .mobile-nav-active .mobile-nav-toggle {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        margin: 0;
        color: #ffffff;
        font-size: 32px;
        z-index: 10000;
    }
}

/* =========================================================
   SMALL MOBILE HEADER
========================================================= */

@media (max-width: 575.98px) {

    .header {
        padding: 10px 0;
    }

    .ncv-header-logo {
        gap: 6px;
        min-width: 0;
    }

        .ncv-header-logo img {
            max-height: 32px;
        }

        .ncv-header-logo .ncv-brand-name {
            font-size: 19px;
        }

    .ncv-header-actions {
        margin-right: 6px;
        gap: 6px;
    }

    .header .btn-getstarted {
        min-height: 36px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .header .btn-logout {
        width: 36px;
        min-width: 36px;
        min-height: 36px;
        padding: 0;
        overflow: hidden;
        color: transparent;
        font-size: 0;
    }

        .header .btn-logout::before {
            content: "\F1C3";
            color: var(--heading-color);
            font-family: "bootstrap-icons";
            font-size: 17px;
            line-height: 1;
        }

        .header .btn-logout:hover::before,
        .header .btn-logout:focus::before {
            color: #ffffff;
        }

    .header .mobile-nav-toggle {
        width: 31px;
        height: 36px;
        font-size: 26px;
    }
}

/* =========================================================
   VERY SMALL MOBILE HEADER
========================================================= */

@media (max-width: 390px) {

    .ncv-header-logo .ncv-brand-name {
        display: none;
    }

    .header .btn-getstarted {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 11px;
    }
}