/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "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: #3d4348;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8;
  /* 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: #313336;
  /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca;
  /* 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: #313336;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca;
  /* 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: #f8fbfc;
  --surface-color: #ffffff;
}

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

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

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

.web-push-banner {
  position: fixed;
  left: 50%;
  top: 96px;
  z-index: 9998;
  width: min(520px, calc(100vw - 32px));
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(32, 84, 104, 0.96), rgba(56, 141, 168, 0.92));
  color: #fff;
  box-shadow: 0 24px 60px rgba(24, 63, 80, 0.28);
  transform: translateX(-50%);
}

.web-push-banner__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 22px;
}

.web-push-banner__content {
  flex: 1 1 auto;
}

.web-push-banner__content h5 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.web-push-banner__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
}

.web-push-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.web-push-banner__actions .btn {
  white-space: nowrap;
}

.web-push-banner__actions .btn-link {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.web-push-banner__actions .btn-link:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .web-push-banner {
    left: 16px;
    right: 16px;
    top: 84px;
    width: auto;
    flex-direction: column;
    transform: none;
  }

  .web-push-banner__actions {
    width: 100%;
  }
}

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

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

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

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

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

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

.site-logo {
  width: 45px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header .logo:hover .site-logo {
  transform: rotate(-6deg) scale(1.04);
}

.hide-sitename {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .hide-sitename {
    display: block;
  }
}

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1320px;
  z-index: 999;
  padding: 14px 24px;
  transition: all 0.35s ease;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(195, 205, 255, 0.55);
  border-radius: 24px;

  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

.header.scrolled {
  top: 10px;
  padding: 10px 22px;

  background: rgba(255,255,255,0.92);

  box-shadow:
    0 14px 50px rgba(0,0,0,0.12);
}

.header .logo {
  gap: 8px;
  text-decoration: none;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: #16324f;
  letter-spacing: -0.5px;
}

@media (max-width: 480px) {
  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted {
  gap: 6px;
  border-radius: 18px;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  color: #fff;
  background: linear-gradient(
    135deg,
    #16b8a6,
    #08796e
  );

  box-shadow:
    0 12px 30px rgba(22,184,166,0.28);

  transition: all .3s ease;
}

.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: 12px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  transform: translateY(-3px);
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 18px 35px rgba(22,184,166,0.38);
}

@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);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {

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

    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(215,223,255,0.7);
    border-radius: 999px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    position: relative;
    padding: 12px 20px;
    border-radius: 20px;

    font-size: 15px;
    font-weight: 600;
    color: #5b6879;

    transition: all .3s ease;
  }

  .navmenu a:hover {
    color: #071527;
    background: rgba(22,184,166,0.08);
  }

  .navmenu .active {
    color: #08796e;
    background: rgba(22,184,166,0.12);
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: width .3s ease;
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    width: 40%;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    border-radius: 12px;
    padding: 6px;
    background: rgba(22, 184, 166, 0.08);
    border: 1px solid rgba(22, 184, 166, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    position: relative;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    top: 95px;
    left: 0;
    right: 0;
    padding: 24px 0;
    margin: 0;
    list-style: none;
    border-radius: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  }

  .navmenu a {
    display: flex;
    align-items: center;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #16324f;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .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 {
    color: var(--nav-dropdown-hover-color);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #16324f;
  }

  .mobile-nav-active .navmenu {
    position: relative;
    background: transparent;
  }

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

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

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

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

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

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

.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: 30px;
  height: 30px;
  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 30%);
  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 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-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

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

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

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

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

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

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  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: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Hero Section - Premium SmartPro UI
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 100px;
  background:
    radial-gradient(
      circle at top left,
      rgba(22,184,166,.08),
      transparent 30%
    ),
    #f8f9fc;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.hero-blur-1 {
  width: 320px;
  height: 320px;
  background: rgba(22,184,166,.18);
  top: -100px;
  left: -100px;
}

.hero-blur-2 {
  width: 260px;
  height: 260px;
  background: rgba(56,141,168,.15);
  bottom: -80px;
  right: -80px;
}

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

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22,184,166,.08);
  color: #16b8a6;
  border: 1px solid rgba(22,184,166,.12);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.hero-content h1 {
  margin: 24px 0;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 800;
  color: #071527;
  letter-spacing: -2px;
}

.hero-content h1 span {
  color: #16b8a6;
}

.hero-content p {
  font-size: 19px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions a {
  height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.btn-download {
  background: #16b8a6;
  color: #fff;
  box-shadow:
    0 18px 35px rgba(22,184,166,.25);
}

.btn-download:hover {
  transform: translateY(-3px);
  color: #fff;
}

.btn-watch {
  background: #fff;
  color: #071527;
  border: 1px solid #e7eaf3;
}

.btn-watch:hover {
  transform: translateY(-3px);
  border-color: rgba(22,184,166,.3);
}

.hero-trust {
  display: flex;
  gap: 38px;
  margin-top: 50px;
}

.hero-trust-item strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #071527;
}

.hero-trust-item span {
  color: #7b8794;
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.8),
      rgba(255,255,255,.5)
    );

  border: 1px solid rgba(195,205,255,.95);
  border-radius: 36px;
  padding: 30px;
  backdrop-filter: blur(16px);

  box-shadow:
    0 40px 80px rgba(0,0,0,.08);
}

.hero-image-card img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow:
    0 18px 40px rgba(0,0,0,.08);

  display: flex;
  align-items: center;
  gap: 16px;
}

.card-top {
  top: 24px;
  left: -40px;
}

.card-bottom {
  bottom: 24px;
  right: -30px;
}

.hero-floating-card small {
  color: #7b8794;
  display: block;
  margin-bottom: 4px;
}

.hero-floating-card h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.signal-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #16b8a6;
  box-shadow: 0 0 18px #16b8a6;
}

.signal-strength,
.trend-badge {
  background: rgba(22,184,166,.1);
  color: #16b8a6;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

@media(max-width:991px){

  .hero{
    padding-top:120px;
  }

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

  .hero-content{
    max-width:100%;
    text-align:center;
  }

  .hero-content p{
    margin:auto;
  }

  .hero-actions,
  .hero-trust{
    justify-content:center;
  }

  .hero-content h1{
    font-size:56px;
  }

  .hero-visual{
    margin-top:20px;
  }

  .card-top{
    left:0;
  }

  .card-bottom{
    right:0;
  }
}

@media(max-width:768px){

  .hero{
    padding:120px 0 70px;
  }

  .hero-content h1{
    font-size:40px;
    line-height:1.1;
    letter-spacing:-1px;
  }

  .hero-content p{
    font-size:17px;
  }

  .hero-trust{
    gap:20px;
    flex-wrap:wrap;
  }

  .hero-image-card{
    padding:20px;
    border-radius:28px;
  }

  .hero-floating-card{
    position:relative;
    margin-top:16px;
  }

  .card-top,
  .card-bottom{
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
  }
}

/*--------------------------------------------------------------
# Supported Brokers Section
--------------------------------------------------------------*/

.brokers-slider-container {
  border: 1px solid rgba(195, 205, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  background: #f8f9fc;

  display: flex;
  gap: 40px;
  align-items: center;
}

.brokers-slider-leftpanel {
  flex: 0 0 320px;
}

.brokers-slider-span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.brokers h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin: 20px 0;
}

.brokers p {
  font-size: 18px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.brokers-slider-wrapper {
  flex: 1;
  min-width: 0;
}

.brokers-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.brokers-slider-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  transition: transform 0.4s ease;
  will-change: transform;
}

.broker-card {
  flex: 0 0 260px;
  width: 260px;
  height: 260px;
  background-color: #f8f9fc;
  border: 1px solid #e7eaf3;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(13, 66, 255, 0.24), rgba(22, 184, 166, 0.2)) border-box;
  border: 1px solid transparent;
}

.broker-card:hover {
  color: #071527;
  transform: translateY(-6px);
  background: rgba(234, 247, 245, 0.147);
  border-color: rgba(22, 184, 166, 0.42);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.broker-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.broker-logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(218, 228, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 14px 24px rgba(7, 21, 39, 0.08),
    inset 0 1px 0 #fff;
}

.broker-card .broker-logo-wrapper img {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  object-fit: cover;
  background: transparent;
}

.broker-card h5 {
  font-size: 18px;
  font-weight: 850;
  margin-top: 0;
  letter-spacing: 0;
}

.broker-card p {
  font-size: 13px;
  color: #526176;
}

.broker-arrow {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(22, 184, 166, 0.22);
  border-radius: 999px;
  color: #08796e;
  background: rgba(234, 247, 245, 0.9);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.broker-card:hover .broker-arrow {
  color: #fff;
  background: #16b8a6;
  transform: translate(2px, -2px);
}

.broker-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.broker-footer .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 9px !important;
  border-radius: 999px;
  line-height: 1;
}

.server-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.divider {
  width: 1px;
  height: 18px;
  background: #d9e3ef;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #edf2f7;
}

.skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.brokers-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  justify-content: flex-end;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #dbe4ff;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.slider-btn:hover {
  color: #fff;
  background: #16b8a6;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .brokers-slider-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .brokers-slider-leftpanel {
    flex: unset;
    width: 100%;
  }

  .brokers-slider-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .brokers-slider-viewport {
    width: 100%;
    overflow: hidden;
  }

  .broker-card {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    min-width: unset;
    height: auto;
  }

  .mobile-nav {
    justify-content: center;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .brokers-slider-container {
    padding: 24px;
  }

  .brokers h2 {
    font-size: 30px;
  }

  .broker-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: unset;
    height: auto;
    min-height: 180px;
  }

  .brokers-slider-track {
    gap: 16px;
  }
}

/*--------------------------------------------------------------
# AI Tools
--------------------------------------------------------------*/
.ai-tools {
  padding: 90px 0;
}

.ai-header {
  max-width: 860px;
  margin: auto;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ai-header h2 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  margin: 18px 0;
  color: var(--heading-color);
}

.section-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
}

.ai-console {
  background: linear-gradient(
    135deg,
    #071527,
    #0f2747
  );

  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.ai-console::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(22,184,166,.08);
  border-radius: 50%;
  top: -120px;
  right: -80px;
}

.mini-label {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.ai-console-main h3 {
  color: #fff;
  font-size: 42px;
  margin: 22px 0;
}

.ai-console-main p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.ai-console-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-console-tags span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}

.ai-console-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.console-stat {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
}

.console-stat span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.console-stat small {
  color: rgba(255,255,255,.75);
}

.ai-features {
  --bs-gutter-y: 1.5rem;
}

.ai-feature-card {
  height: 100%;
  background: #f8f9fc;
  border: 1px solid rgba(195,205,255,.95);
  border-radius: 28px;
  padding: 32px;
  transition: .35s ease;
}

.ai-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
  border-color: rgba(22,184,166,.25);
}

.ai-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(22,184,166,.08);
  color: #16b8a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.ai-feature-card h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ai-feature-card p {
  color: #6b7280;
  line-height: 1.8;
}

.ai-pills {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-pills span {
  background: rgba(22,184,166,.08);
  color: #08796e;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

@media(max-width:991px){
  .ai-console{
    grid-template-columns:1fr;
  }

  .ai-header h2{
    font-size:42px;
  }
}

@media(max-width:768px){
  .ai-header h2{
    font-size:32px;
  }

  .ai-console{
    padding:28px;
    border-radius:24px;
  }

  .ai-console-main h3{
    font-size:30px;
  }

  .ai-feature-card{
    padding:24px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 28px;
}

.about-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 420px;
}

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

.about-floating-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 75%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 184, 166, 0.12);
  color: #16b8a6;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.about-floating-card h4 {
  margin: 18px 0 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
}

.about-floating-card p {
  margin: 0;
  color: #6b7280;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-small-img {
  border-radius: 22px;
  overflow: hidden;
  height: 220px;
}

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

.about-content {
  background: #fbfbfd;
  border: 1px solid #e7eaf3;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.about-label {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.15;
  margin: 20px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.about-description {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: #fff;
  border: 1px solid #e7eaf3;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all .3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  min-width: 110px;
}

.stat-card h5 {
  margin: 0;
  font-weight: 600;
}

.stat-card p {
  margin: 4px 0 0;
  color: #7b8794;
  font-size: 14px;
}

.about-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: .3s ease;
}

.about-btn i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-btn:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    padding: 20px;
  }

  .about-image-main {
    height: 300px;
  }

  .about-floating-card {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-small-img {
    height: 180px;
  }

  .about-content {
    padding: 28px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .stat-number {
    font-size: 32px;
    min-width: 90px;
  }

  .stat-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

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

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

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

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

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

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

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

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact-wrapper {
  background: #f8f9fc;
  border: 1px solid rgba(195, 205, 255, 0.95);
  border-radius: 28px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 28px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  color: var(--accent-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.contact-content h2 {
  font-size: 52px;
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.contact-description {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 520px;
}

.contact-trust {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 184, 166, 0.12);
  color: #16b8a6;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.contact-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 15px 24px;
  background: #16b8a6;
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22,184,166,.25);
  color: #fff;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e7eaf3;
  border-radius: 22px;
  padding: 26px;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.06);
  border-color: rgba(22,184,166,.28);
}

.contact-card-highlight {
  border-color: rgba(22,184,166,.35);
  background: linear-gradient(
    180deg,
    rgba(22,184,166,.04),
    rgba(22,184,166,.02)
  );
}

.contact-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: rgba(22,184,166,.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 28px;
  color: #16b8a6;
}

.contact-card-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #7b8794;
}

.contact-card h4 {
  margin: 8px 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  color: #6b7280;
}

.contact-arrow {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22,184,166,.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #16b8a6;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 24px;
  }

  .contact-content h2 {
    font-size: 32px;
  }

  .contact-card {
    padding: 20px;
    align-items: flex-start;
  }

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

  .contact-icon {
    width: 58px;
    height: 58px;
  }

  .contact-arrow {
    display: none;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
