@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter",  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: "Inter",  sans-serif;
  --nav-font: "Inter",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #004ba8; /* 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: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #004ba8; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #004ba8; /* 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: #ffffff;
  --default-color: rgb(46, 46, 46);
  --heading-color: rgb(46, 46, 46);
  --accent-color: #004ba8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #f7f7f7;
  --default-color: rgb(46, 46, 46);
  --heading-color: rgb(46, 46, 46);
  --accent-color: #004ba8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

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

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* .header {
  --background-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #000000;
  --accent-color: #004ba8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  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: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

.scrolled .header {
  --background-color: #ffffff;
  --default-color: #000000;
  --contrast-color: #ffffff;
} */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  transform: none;
  transform-origin: 50% 50% 0px;
  will-change: auto;
}

.header .container {
  max-width: 1050px;
  height: 64px;
  margin: auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo {
  /* width: 48px; */
  height: auto;
  margin-right: 12px;
  max-height: 36px;
  z-index: 1001;
}

/* .slogan p {
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.slogan small {
  font-size: 0.75rem;
  color: #777;
} */

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 800;
  color: #111;
}

.nav-links li a:hover:not(.cta-btn),
.nav-links li .active:hover:not(.cta-btn) {
  color: #111;
  cursor: pointer;
  text-decoration: underline;
}

/* Remove underline and override color only on .new-badge inside nav links */
.nav-links li a:hover .new-badge,
.nav-links li .active:hover .new-badge {
  text-decoration: none !important;
  color: inherit !important;
}

.nav-links .cta-btn {
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links li a.cta-btn:hover  {
  background-color: #007bff; /* if you want hover effect */
}

.new-badge {
  background: gold;
  color: #111;
  padding: 2px 6px;
  font-size: 0.65rem;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: top;
  display: inline-block;
}

/* Menu Toggle */
.menu-toggle {
  width: 26px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #090909;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  top: 16px;
}

/* Active State (X) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  background: #fff;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}

/* Ensure phone icon only shows on mobile */
.phone-icon {
  display: none;
  width: 32px;
  height: 32px;
  background-color: #f4f4f4; /* Light grey fill */
  border-radius: 50%; /* Makes it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  z-index: 1001;
  transition: background-color 0.3s, color 0.3s;
}

.phone-icon:hover {
  color: var(--accent-color); /* Optional accent on hover */
}

/* Align phone icon and burger side-by-side */
.mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Full screen height */
  background: linear-gradient(to bottom,#333, #000);
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  text-align: right;
  padding: 100px 20px 70% 20px;
  z-index: 999; 
}

.mobile-menu.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Make icon white when menu is open */
body.menu-open .phone-icon {
  background-color: #fff;
  color: #000;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  text-decoration: underline;
  color: #fff;
  font-weight: 900;
}

.mobile-socials {
  margin-top: 40px;
}

.mobile-socials a {
  color: white;
  font-size: 1.4rem;
  margin-left: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-only {
    display: block;
    margin-left: 15px;
  }

  .phone-icon {
    display: flex;
    align-items: center;
  }

  .mobile-actions {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

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

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

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

/* Extended Dropdown 1 - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown-1 ul {
    min-width: 300px;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .extended-dropdown-1 ul li {
    min-width: auto;
    border-bottom: none;
    margin-bottom: 4px;
  }

  .extended-dropdown-1 ul li:last-child {
    margin-bottom: 0;
  }

  .extended-dropdown-1 ul a {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-dropdown-color);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 12px;
  }

  .extended-dropdown-1 ul a .icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .extended-dropdown-1 ul a .icon-wrapper i {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-blue {
    background-color: #4285f4;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-purple {
    background-color: #9c27b0;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-orange {
    background-color: #ff9800;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-green {
    background-color: #4caf50;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-red {
    background-color: #f44336;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-teal {
    background-color: #009688;
  }

  .extended-dropdown-1 ul a i.toggle-dropdown {
    width: auto;
    margin-left: auto;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 12px;
  }

  .extended-dropdown-1 ul a span {
    flex: 1;
    font-weight: 500;
  }

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

  .extended-dropdown-1 ul a:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-blue {
    background-color: color-mix(in srgb, #4285f4, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-purple {
    background-color: color-mix(in srgb, #9c27b0, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-orange {
    background-color: color-mix(in srgb, #ff9800, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-green {
    background-color: color-mix(in srgb, #4caf50, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-red {
    background-color: color-mix(in srgb, #f44336, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-teal {
    background-color: color-mix(in srgb, #009688, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover i.toggle-dropdown {
    color: var(--accent-color);
    transform: rotate(90deg);
  }
}

/* Extended Dropdown 1 - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown-1 ul {
    background-color: var(--nav-dropdown-background-color);
    border-radius: 6px;
    padding: 12px 0;
  }

  .extended-dropdown-1 ul a {
    padding: 12px 20px;
    gap: 16px;
  }

  .extended-dropdown-1 ul a .icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .extended-dropdown-1 ul a .icon-wrapper i {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-blue {
    background-color: #4285f4;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-purple {
    background-color: #9c27b0;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-orange {
    background-color: #ff9800;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-green {
    background-color: #4caf50;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-red {
    background-color: #f44336;
  }

  .extended-dropdown-1 ul a .icon-wrapper.bg-teal {
    background-color: #009688;
  }

  .extended-dropdown-1 ul a i.toggle-dropdown {
    width: 30px;
    height: 30px;
    margin-left: auto;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .extended-dropdown-1 ul a i.toggle-dropdown:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .extended-dropdown-1 ul a span {
    flex: 1;
    font-weight: 500;
  }

  .extended-dropdown-1 ul a:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper {
    transform: scale(1.05);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-blue {
    background-color: color-mix(in srgb, #4285f4, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-purple {
    background-color: color-mix(in srgb, #9c27b0, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-orange {
    background-color: color-mix(in srgb, #ff9800, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-green {
    background-color: color-mix(in srgb, #4caf50, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-red {
    background-color: color-mix(in srgb, #f44336, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover .icon-wrapper.bg-teal {
    background-color: color-mix(in srgb, #009688, #000000 15%);
  }

  .extended-dropdown-1 ul a:hover i.toggle-dropdown {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .extended-dropdown-1 ul .active i.toggle-dropdown {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(90deg);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #0d0d0d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #004ba8;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

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

.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 .footer-contact a {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --background-color: rgba(0, 0, 0, 0);
  background-color: rgb(28, 28, 28);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #004ba8;
  --surface-color: #2d465e;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-top: 31px;
}

.hero .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
  flex: none;
  height: 86vh;
  max-height: 800px;
  width: 100%;
  z-index: 1;
  padding-top: 31px;
}

/* Default: hide mobile video */
.hero .hero-container .video-mobile {
  display: none;
}

/* Show mobile video only on small screens */
/* @media screen and (max-width: 768px) {
  .hero .hero-container .video-desktop {
    display: none;
  }

  .hero .hero-container .video-mobile {
    display: block;
  }
} */

.hero .hero-container {
  position: relative;
  height: 86.5vh;
  width: 100%;
  max-height: 800px;
  display: flex;
  align-items: center;
  padding: 180px 0 80px 0;
}

.hero .overlay {
  z-index: 1;
  background: linear-gradient(0deg,#000000fa 5%,#0000 54.94897240990991%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Align to bottom */
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.hero .hero-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 850px;
  width: 90%;
  color: white;
  text-align: left;
  z-index: 2;
}

.hero .hero-content h1 {
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 900;
  text-align: left;
  letter-spacing: -2.5px;
  white-space: normal;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-content h1 span {
  display: inline;
  /* white-space: nowrap; */
}

.hero .hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: -1px;
  line-height: 1.4em;
  color: #ffffff;
}

.hero .action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.hero .btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.hero .btn-white {
  background: #fff;
  color: #000;
}

.hero .btn-blue {
  background: var(--accent-color);
  color: #fff;
}

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

.hero .hero-logos img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero .action-row .phone {
  font-size: 0.7rem;
  color: #ccc;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {

  /* .hero {
    padding-top: 45px;
  } */
  
  .hero .overlay {
    background:#000000a5;
  }

  .hero .hero-container {
    height: 62vh;
  }

  .hero .hero-content {
    /* align-content: center; */
    align-items: center;
    display: flex;
    /* flex: none; */
    flex-direction: column;
    flex-wrap: nowrap;
    /* gap: 24px; */
    height: min-content;
    justify-content: flex-start;
    left: 50%;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* width: 363px; */
  }

  .hero .hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -2.8px;
    white-space: normal;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero .hero-content p {
    font-size: 16px;
    text-align: center;
    margin-bottom: -10px;
  }

  .hero .action-row {
    flex-direction: column;
  }

  .hero .hero-buttons {
    flex-direction: row;
    align-items: center;
  }

  .hero .btn {
    padding: 5px 10px;
    font-size: 14px;
  }

  .hero .phone {
    display: none;
    visibility: hidden;
  }

  .hero .hero-logos {
    display: none;
    visibility: hidden;
  }
  
}


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

.clients-3 .clients-slider {
  /* position: relative;
  width: 100%;
  overflow: hidden; */
  /* padding: 5px 0; */

  display: flex;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  place-items: center;
  margin: 0px;
  padding: 10px;
  list-style-type: none;
  opacity: 1;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
}

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

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

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

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

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

.clients-3 .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients-3 .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.clients-3 .clients-slide:hover {
  transform: translateY(-5px);
}

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

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

.clients-3 .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(-2000px);
  }
}

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

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

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

  @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-3 .clients-slide {
    width: 150px;
    height: 60px;
    margin: 0 0px;
  }

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

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

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

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

/*--------------------------------------------------------------
# Results Overview Section
--------------------------------------------------------------*/
.results-overview {
  padding-top: 80px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  /* Make first card span all columns on large screens */
}

.results-overview h1 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  /* font-size: 2.5rem; */
  font-size: 70px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  letter-spacing: -2.5px;
  white-space: normal;
  line-height: 1.1;
}

.results-overview .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.results-overview .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.results-overview .btn:hover {
  transform: translateY(-2px);
}

.results-overview .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.results-overview .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.results-overview .results-section {
  padding: 80px 20px;
  text-align: center;
}

.results-overview .results-section .btn {
  padding: 10px 22px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 40px;
}

.results-overview .results-section .btn:hover {
  background: #333;
}

.results-overview .results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  /* grid-auto-rows: minmax(450px, auto); */
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  width: 100%;
}

.results-overview .result-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 425px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-overview .result-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s ease;
}

.results-overview .result-card:hover img {
  transform: scale(1.05);
}

.results-overview .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.results-overview .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 5px 35px;
  z-index: 2;
}

.results-overview .logo1 {
  max-width: 142px;
  max-height: 112px;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%) brightness(2); /* makes logos white */
  object-fit: contain;
  object-position: center center;
  transition: transform 0.1s ease;
  box-sizing: border-box;      /* Ensures padding doesn't break container */
}

.results-overview .logo2 {
  width: 100%;                   /* Full width of container */
  height: auto;                  /* Maintain aspect ratio */
  max-width: 126px;              /* Limits very wide logos */
  max-height: 112px;             /* Still caps overly tall logos */
  scale: 0.85;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  object-fit:fill;
  object-position: center center;
  transition: transform 0.1s ease;
  box-sizing: border-box;      /* Ensures padding doesn't break container */
}

.results-overview .logo3 {
  width: 100%;                   /* Full width of container */
  height: auto;                  /* Maintain aspect ratio */
  max-width: 197px;              /* Limits very wide logos */
  max-height: 108px;             /* Still caps overly tall logos */
  scale: 0.75;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  object-fit:fill;
  object-position: center center;
  transition: transform 0.1s ease;
  box-sizing: border-box;      /* Ensures padding doesn't break container */
}

.results-overview .stat {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 1s ease, transform 0.4s ease;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 12px;
}

.results-overview .stat h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -2px;
  white-space: normal;
  line-height: 1.2;
  margin: 0px;
  padding: 0px;
}

.results-overview .stat h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.5px;
  white-space: normal;
  line-height: 1.2;
  margin: 0px;
  padding: 0px;
}

/* Default hover overlay (for desktop) */
.results-overview .result-card:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Always show overlay on mobile */
@media (max-width: 750px) {
  .results-overview .overlay {
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Default hover for desktop */
.results-overview .result-card:hover .logo1,
.results-overview .result-card:hover .logo2,
.results-overview .result-card:hover .logo3 {
  transform: translateY(-60px);
}

/* Always lift logo on mobile */
@media (max-width: 750px) {
  .results-overview .logo1,
  .results-overview .logo2,
  .results-overview .logo3 {
    transform: translateY(-85px) !important;
  }
}

/* Default hover for desktop */
.results-overview .result-card:hover .stat {
  opacity: 1;
  transform: translateY(40px);
}

/* Always show stat on mobile */
@media (max-width: 750px) {
  .results-overview .stat {
    opacity: 1 !important;
    transform: translateY(40px) !important;
  }
}


@media (min-width: 1000px) {
  .results-overview .results-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (min-width: 750px) and (max-width: 999px) {
  .results-overview .results-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 749px) {
  .results-overview {
  padding-top: 50px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  }

  .results-overview h1 {
    /* font-size: 1.8rem;
    font-weight: 700; */
    font-size: 47px;
    font-weight: 750;
    text-align: center;
    letter-spacing: -2.5px;
    white-space: normal;
    line-height: 1.1;
    margin: 0px;
    padding: 0px;
  }

  .results-overview .logo1,
  .results-overview .logo2,
  .results-overview .logo3 {
    font-size: 1rem;
    padding: 10px 4px;
  }

  .results-overview .results-grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
    column-gap:0px;
    display: grid;
  }

}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  isolation: isolate;
}

.call-to-action .container {
  position: relative;
}

.call-to-action h1 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  /* font-size: 2.5rem; */
  font-size: 70px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  letter-spacing: -2.5px;
  white-space: normal;
  line-height: 1.1;
}

.call-to-action .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.call-to-action .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.call-to-action .btn:hover {
  transform: translateY(-2px);
}

.call-to-action .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.call-to-action .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.call-to-action .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}

.call-to-action .scribble-1::before {
  clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
}

.call-to-action .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.call-to-action .scribble-2::before {
  clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
}

.call-to-action .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}

.call-to-action .scribble-3::before {
  clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

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

@media (max-width: 1399px) {
  .call-to-action .scribble {
    visibility: hidden;
    overflow: none;
  }
}

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

  .call-to-action h1 {
    font-size: 47px;
    font-weight: 750;
    text-align: center;
    letter-spacing: -2.5px;
    white-space: normal;
    line-height: 1.1;
    margin: 0px;
    padding: 0px;
  }

  .call-to-action h2 {
    font-size: 2.5rem;
  }

  .call-to-action .lead {
    font-size: 1.1rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding-top: 60px;
  padding-bottom: 60px;
}
.testimonials h1 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  /* font-size: 2.5rem; */
  font-size: 50px;
  font-style: normal;
  font-weight: 1000;
  text-align: center;
  letter-spacing: -2.5px;
  white-space: normal;
  line-height: 1.1;
}


/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.history .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.history .about-content p {
  margin-bottom: 30px;
}

.history .about-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.history .about-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.history .about-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.history .about-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.history .about-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.history .about-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.history .about-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

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

.history .about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history .about-image .mission-vision {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

@media (max-width: 768px) {
  .history .about-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.history .about-image .mission-vision .mission,
.history .about-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.history .about-image .mission-vision .mission h3,
.history .about-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.history .about-image .mission-vision .mission h3:before,
.history .about-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.history .about-image .mission-vision .mission p,
.history .about-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.history .core-values {
  margin-top: 30px;
}

.history .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.history .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.history .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.history .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.history .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.history .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership .section-subtitle {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.leadership .section-heading {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.leadership .section-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.leadership .about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.leadership .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership .stats-container {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 20px;
}

.leadership .stats-container .stat-item {
  text-align: center;
  padding: 15px 0;
}

.leadership .stats-container .stat-item h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.leadership .stats-container .stat-item p {
  color: var(--default-color);
  font-size: 0.9rem;
  margin: 0;
}

.leadership .leadership-team {
  margin-top: 4rem;
}

.leadership .leadership-team .leader-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.leadership .leadership-team .leader-card:hover .social-links {
  opacity: 1;
}

.leadership .leadership-team .leader-card .leader-image {
  position: relative;
  overflow: hidden;
}

.leadership .leadership-team .leader-card .leader-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.leadership .leadership-team .leader-card .leader-image .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px 0 10px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.leadership .leadership-team .leader-card .leader-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: background-color 0.3s;
}

.leadership .leadership-team .leader-card .leader-image .social-links a:hover {
  background-color: var(--accent-color);
}

.leadership .leadership-team .leader-card .leader-info {
  padding: 20px;
  text-align: center;
}

.leadership .leadership-team .leader-card .leader-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.leadership .leadership-team .leader-card .leader-info .position {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.leadership .leadership-team .leader-card .leader-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .leadership .section-heading {
    font-size: 2rem;
  }

  .leadership .about-image {
    margin-top: 2rem;
    height: 400px;
  }

  .leadership .leadership-team {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .leadership .about-image {
    height: 300px;
  }

  .leadership .stat-item {
    margin-bottom: 15px;
  }
}

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

.services-2 .img {
  border-radius: 8px;
  overflow: hidden;
}

.services-2 .img img {
  transition: 0.6s;
}

.services-2 .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services-2 .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-2 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-2 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-2 .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  padding-top: 62px;
  padding-bottom: 60px;
  /* Responsive Styles */
}

.steps .timeline-container {
  position: relative;
  padding: 30px 0;
}

.steps .timeline-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.steps .timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.steps .timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.steps .timeline-item:last-child {
  margin-bottom: 0;
}

.steps .timeline-item.left .timeline-content {
  padding-right: 50px;
  text-align: right;
}

.steps .timeline-item.left .timeline-content .timeline-marker {
  right: -35px;
}

.steps .timeline-item.right .timeline-content {
  padding-left: 50px;
  margin-left: 50%;
}

.steps .timeline-item.right .timeline-content .timeline-marker {
  left: -35px;
}

.steps .timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.steps .timeline-item:hover .timeline-marker .step-icon {
  color: var(--contrast-color);
}

.steps .timeline-item:hover .timeline-body {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps .timeline-content {
  position: relative;
  width: 50%;
}

.steps .timeline-marker {
  position: absolute;
  top: 15px;
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps .timeline-marker .step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  border: 3px solid var(--surface-color);
}

.steps .timeline-marker .step-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.steps .timeline-body {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.steps .timeline-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

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

@media (max-width: 991px) {
  .steps .timeline-track::before {
    left: 30px;
  }

  .steps .timeline-item.left .timeline-content,
  .steps .timeline-item.right .timeline-content {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .steps .timeline-item.left .timeline-content .timeline-marker,
  .steps .timeline-item.right .timeline-content .timeline-marker {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  .steps .timeline-item {
    margin-bottom: 50px;
  }

  .steps .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .steps .timeline-marker .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .steps .timeline-marker .step-icon {
    font-size: 1.3rem;
  }

  .steps .timeline-body {
    padding: 20px;
  }

  .steps .timeline-body h3 {
    font-size: 1.2rem;
  }

  .steps .timeline-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .steps .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .steps .timeline-marker .step-icon {
    font-size: 1.1rem;
  }

  .steps .timeline-item.left .timeline-content,
  .steps .timeline-item.right .timeline-content {
    padding-left: 70px;
  }
}

/*--------------------------------------------------------------
# Results Overview 2 Section
--------------------------------------------------------------*/
.results-overview-2 {
  padding-top: 126px;
  padding-bottom: 91px;
  /* Make first card span all columns on large screens */
}

.results-overview-2 h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-size: 2.5rem;
}

.results-overview-2 .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.results-overview-2 .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.results-overview-2 .btn:hover {
  transform: translateY(-2px);
}

.results-overview-2 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.results-overview-2 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.results-overview-2 .results-section {
  padding: 80px 20px;
  text-align: center;
}

.results-overview-2 .results-section .btn {
  padding: 10px 22px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 40px;
}

.results-overview-2 .results-section .btn:hover {
  background: #333;
}

.results-overview-2 .results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-auto-rows: 320px;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.results-overview-2 .result-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-overview-2 .result-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.results-overview-2 .result-card:hover img {
  transform: scale(1.05);
}

.results-overview-2 .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.results-overview-2 .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.results-overview-2 .logo {
  max-width: 140px;
  max-height: 50px;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  /* makes logos white */
  object-fit: contain;
  transition: transform 0.4s ease;
}

.results-overview-2 .stat {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.4s ease;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 12px;
}

.results-overview-2 .result-card:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.results-overview-2 .result-card:hover .logo {
  transform: translateY(-20px);
}

.results-overview-2 .result-card:hover .stat {
  opacity: 1;
  transform: translateY(20px);
}

.results-overview-2 .results-grid .result-card:first-child {
  grid-column: span 2;
}

@media (min-width: 900px) {
  .results-overview-2 .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-overview-2 .results-grid .result-card:first-child {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .results-overview-2 .results-section h2 {
    font-size: 1.8rem;
  }

  .results-overview-2 .logo {
    font-size: 1rem;
    padding: 4px 10px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

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

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 1199px) {
  .features .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image image" "left right";
  }

  .features .features-grid .center-image {
    grid-area: image;
    justify-self: center;
  }

  .features .features-grid .left-column {
    grid-area: left;
  }

  .features .features-grid .right-column {
    grid-area: right;
  }
}

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

.features .features-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.features .feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 16px;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.features .feature-card .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.features .feature-card .content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

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

.features .center-image {
  position: relative;
  align-self: center;
}

.features .center-image .device-wrapper {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.features .center-image .device-wrapper img {
  max-height: 550px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.features .center-image .device-wrapper .shape-decoration {
  position: absolute;
  width: 150%;
  height: 70%;
  top: 15%;
  left: -25%;
  background: linear-gradient(140deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

@media (max-width: 991px) {
  .features .feature-card {
    padding: 1.5rem;
  }

  .features .feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

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

  .features .feature-card .content h3 {
    font-size: 17px;
  }

  .features .center-image .device-wrapper img {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .features .features-column {
    gap: 1.5rem;
  }

  .features .center-image {
    margin: 2rem 0;
  }

  .features .center-image .device-wrapper img {
    max-height: 400px;
  }

  .features .center-image .shape-decoration {
    width: 120%;
    height: 60%;
  }
}

/*--------------------------------------------------------------
# Hero2 Section
--------------------------------------------------------------*/
.hero2 {
  padding-top: 60px;
  padding-bottom: 0px;
}

.hero2 .hero2 {
  position: relative;
  text-align: center;
  color: white;
}

.hero2 .hero2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero2 .hero2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.hero2 .hero2-overlay h1 {
  font-size: 2rem;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Results Overviewundefined 2 Section
--------------------------------------------------------------*/
.results-overviewundefined-2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.results-overviewundefined-2 h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-size: 2.5rem;
}

.results-overviewundefined-2 .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.results-overviewundefined-2 .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.results-overviewundefined-2 .btn:hover {
  transform: translateY(-2px);
}

.results-overviewundefined-2 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.results-overviewundefined-2 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.results-overviewundefined-2 .results-section {
  padding: 80px 20px;
  text-align: center;
}

.results-overviewundefined-2 .results-section .btn {
  padding: 10px 22px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 40px;
}

.results-overviewundefined-2 .results-section .btn:hover {
  background: #333;
}

.results-overviewundefined-2 .results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-auto-rows: 320px;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.results-overviewundefined-2 .result-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-overviewundefined-2 .result-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.results-overviewundefined-2 .result-card:hover img {
  transform: scale(1.05);
}

.results-overviewundefined-2 .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.results-overviewundefined-2 .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.results-overviewundefined-2 .logo {
  max-width: 140px;
  max-height: 50px;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  /* makes logos white */
  object-fit: contain;
  transition: transform 0.4s ease;
}

.results-overviewundefined-2 .stat {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.4s ease;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 12px;
}

.results-overviewundefined-2 .result-card:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.results-overviewundefined-2 .result-card:hover .logo {
  transform: translateY(-20px);
}

.results-overviewundefined-2 .result-card:hover .stat {
  opacity: 1;
  transform: translateY(20px);
}

@media (min-width: 900px) {
  .results-overviewundefined-2 .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .results-overviewundefined-2 .results-section h2 {
    font-size: 1.8rem;
  }

  .results-overviewundefined-2 .logo {
    font-size: 1rem;
    padding: 4px 10px;
  }
}

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

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .terms-hero {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}

.terms-of-service .terms-hero .badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.terms-of-service .terms-hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-of-service .terms-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto 30px;
}

.terms-of-service .terms-hero .terms-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .terms-hero .terms-highlights {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.terms-of-service .terms-hero .terms-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}

.terms-of-service .terms-hero .terms-highlights .highlight-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-hero .terms-highlights .highlight-item span {
  font-weight: 500;
}

.terms-of-service .terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .terms-of-service .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .terms-of-service .terms-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .terms-grid .terms-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.terms-of-service .terms-grid .terms-card:hover {
  transform: translateY(-10px);
}

.terms-of-service .terms-grid .terms-card:hover .header-icon {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.terms-of-service .terms-grid .terms-card:hover .header-icon i {
  color: var(--contrast-color);
}

.terms-of-service .terms-grid .terms-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-grid .terms-card .card-header .header-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service .terms-grid .terms-card .card-header .header-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service .terms-grid .terms-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.terms-of-service .terms-grid .terms-card .card-content {
  padding: 30px;
}

.terms-of-service .terms-grid .terms-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list {
  display: grid;
  gap: 15px;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .terms-points {
  margin-bottom: 70px;
  text-align: center;
}

.terms-of-service .terms-points h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.terms-of-service .terms-points .points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .terms-of-service .terms-points .points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .terms-of-service .terms-points .points-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .terms-points .point-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}

.terms-of-service .terms-points .point-item:hover {
  transform: translateY(-5px);
}

.terms-of-service .terms-points .point-item:hover .point-icon {
  background-color: var(--accent-color);
}

.terms-of-service .terms-points .point-item:hover .point-icon i {
  color: var(--contrast-color);
}

.terms-of-service .terms-points .point-item .point-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service .terms-points .point-item .point-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service .terms-points .point-item .point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-points .point-item .point-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.terms-of-service .terms-notices {
  margin-bottom: 70px;
}

.terms-of-service .terms-notices .notice-wrapper {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
}

.terms-of-service .terms-notices .notice-items {
  display: grid;
  gap: 25px;
}

.terms-of-service .terms-notices .notice-items .notice-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--background-color);
  border-radius: 15px;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .terms-contact .contact-wrapper {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text {
  margin-bottom: 30px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions {
    flex-direction: column;
    align-items: center;
  }
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding-top: 100px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
  padding-bottom: 100px;
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

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

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}