/**
* Template Name: Logis
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", 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";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #0d42ff;
  --color-primary-hover: #2756ff;
  --color-secondary: #0e1d34;

  --color-header-background:rgba(14, 29, 52, 0.9);
  --color-header-box-shaddow:rgba(14, 29, 52, 0.1);

  --page-header-background: rgba(14, 29, 52, 0.8);
  --bredc-before-color:#4278cc;

 
  --nav-ul-color:rgba(14, 29, 52, 0.9);
  
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0 20px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.about-section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  position: relative;
}

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

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: var(--page-header-background);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--bredc-before-color);
  content: "/";
}

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

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

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

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  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;
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.sticked {
  background: var(--color-header-background);
  padding: 15px 0;
  box-shadow: 0px 2px 20px var(--color-header-box-shaddow);
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

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

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

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: var(--color-primary-hover);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

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

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

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

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

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

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--nav-ul-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: var(--color-primary-hover);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

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

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

.brokers-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 40px 0;
  animation: scrollLeft 30s linear infinite;
}

.slider-progress-wrap {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
}
.slider-track-bg {
  width: 200px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.slider-fill {
  height: 100%;
  background: #1a6fc4;
  border-radius: 3px;
  pointer-events: none;
  width: 0%;
}
.slider-thumb {
  width: 18px;
  height: 18px;
  background: #1a6fc4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  left: 0%;
  box-shadow: 0 0 0 4px rgba(26, 111, 196, 0.15);
  transition: box-shadow 0.15s;
}
.slider-thumb:active {
  cursor: grabbing;
  box-shadow: 0 0 0 7px rgba(26, 111, 196, 0.2);
}

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

@keyframes scrollLeft {
  form {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.broker-card {
  min-width: 260px;
  max-width: 260px;
  background-color: #f8f9fc;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.broker-arrow {
  position: absolute;
  top: 38px;
  right: 32px;
  color: #333;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.broker-arrow .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
}

.broker-card img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 10px;
}

.broker-card h5 {
  font-size: 16px;
  font-weight: 600;
}

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

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

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

.divider {
  width: 1px;
  height: 16px;
  background: #000000;
}

/*--------------------------------------------------------------
# Skeleton Section
--------------------------------------------------------------*/

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

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/*--------------------------------------------------------------
# AI Tools Section
--------------------------------------------------------------*/
.ai-features {
  padding-top: 20px;
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.ai-feature-card {
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 16px 10px 16px 16px;
  transition: border-color 0.2s;
}

.ai-feature-card:hover {
  transform: translateY(-6px);
  border-color: #001f8d;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ai-feature-icon {
  margin-bottom: 14px;
  width: 42px;
  height: 42px;
  background: #e9edff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #3C3489;
}

.ai-feature-card h5 {
  font-size: 18px;
  font-weight: 600;
}

.ai-tools .container p {
  font-size: 15px;
  color: #132848;
}

.ai-feature-card p {
  font-size: 14px;
  color: #132848;
}

.ai-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.ai-pills span {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f5f5f5;
  border: 0.5px solid #eee;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
}

.featured-services .service-item .icon {
  margin-bottom: 20px;
}

.featured-services .service-item .icon i {
  color: #001f8d;
  font-size: 20px;
  padding: 8px 13px;
  background: #e9edff;
  border-radius: 10px;
  transition: 0.3s;
}

.featured-services .service-item .title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--color-secondary);
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #132848;
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  transition: 0.3s;
  font-weight: 600;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item .readmore:hover{
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .container .about-header h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

.about-content  {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.feature-box h5 {
  font-size: 18px;
  font-weight: 600;
}

.feature-icon {
  padding: 6px 12px;
  background: #e9edff;
  border-radius: 10px;
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 13px;
  display: inline-block;
}

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

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

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #001973;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 80px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
}

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

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}

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

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

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

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

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

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

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 80px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 10px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 30px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
}

.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 52, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}

.horizontal-pricing h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.horizontal-pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

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

.horizontal-pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.horizontal-pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

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

.horizontal-pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

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

.horizontal-pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.horizontal-pricing .buy-btn:hover {
  background: #406aff;
  border-color: #406aff;
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

@media (max-width: 767px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.get-a-quote .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
  padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
  padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

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

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.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(--color-primary);
}
.btn-primary{
  background: var(--color-primary);
}

.btn-primary :hover{
  background: var(--color-primary-hover);
}

/*--------------------------------------------------------------
# Modern Homepage Redesign
--------------------------------------------------------------*/
.header {
  padding: 18px 0;
}

.header.sticked {
  backdrop-filter: blur(16px);
}

.header .logo h1 {
  font-size: 24px;
  letter-spacing: 0;
}

@media (min-width: 1280px) {
  .navbar a,
  .navbar a:focus {
    font-size: 14px;
    font-weight: 600;
    padding-left: 24px;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    border-radius: 8px;
    padding: 10px 16px;
  }
}

.home-hero {
  min-height: 100vh;
  padding: 110px 0 36px;
  background:
    linear-gradient(135deg, rgba(7, 16, 39, 0.94), rgba(12, 52, 92, 0.86)),
    url("../img/hero-bg.png") center/cover;
}

.hero-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dce9ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.home-hero h2 {
  max-width: 620px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  text-transform: none;
  margin-bottom: 18px;
}

.home-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
}

.hero-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-ai-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
}

.hero-ai-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero-ai-strip i {
  color: #77d4ff;
  font-size: 18px;
}

.hero-showcase {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-preview {
  width: min(360px, 78vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.phone-preview img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
}

.ai-preview-card {
  position: absolute;
  right: 20px;
  bottom: 44px;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.ai-preview-card span,
.ai-preview-card small {
  display: block;
  color: #5b6780;
  font-size: 12px;
  font-weight: 700;
}

.ai-preview-card strong {
  display: block;
  color: #071527;
  font-size: 18px;
  margin: 3px 0;
}

.hero-brokers-panel {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.hero-brokers-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding: 2px 4px 0;
}

.hero-brokers-head span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brokers-head h3 {
  color: #071527;
  font-size: 22px;
  font-weight: 800;
  margin: 2px 0 0;
}

.hero-brokers-head a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #132848;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.brokers-track {
  gap: 14px;
  padding: 16px 0 10px;
  animation: none;
}

.brokers-slider {
  min-width: 0;
}

.broker-card {
  position: relative;
  min-width: 238px;
  max-width: 238px;
  min-height: 178px;
  border-color: #e5eaf3;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  color: #071527;
}

.broker-card:hover {
  transform: translateY(-5px);
  background: #f8fbff;
}

.broker-arrow {
  top: 18px;
  right: 18px;
}

.slider-progress-wrap {
  padding-top: 6px;
}

.slider-track-bg,
.slider-fill,
.slider-thumb {
  background-color: var(--color-primary);
}

.slider-track-bg {
  width: min(280px, 100%);
  background-color: #d9e2f1;
}

.ai-tools-section {
  padding: 76px 0 42px;
  background: #f6f8fc;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 14px;
  text-align: center;
  color: #41506a;
  font-size: 16px;
  line-height: 1.7;
}

.ai-feature-card {
  border-radius: 8px;
  border-color: #dde5f0;
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(14, 29, 52, 0.05);
}

.ai-feature-icon {
  background: #eaf4ff;
  color: var(--color-primary);
}

.ai-pills {
  flex-wrap: wrap;
}

.featured-services {
  padding-top: 72px;
}

.featured-services .service-item,
.feature-box {
  padding: 22px;
  border: 1px solid #e6edf6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(14, 29, 52, 0.04);
}

.about {
  background: #fbfcff;
}

@media (max-width: 991px) {
  .home-hero {
    padding-top: 96px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .phone-preview {
    width: min(300px, 76vw);
  }

  .ai-preview-card {
    right: 7%;
    bottom: 10px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .home-hero {
    padding-bottom: 24px;
  }

  .hero.home-hero h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero.home-hero p {
    font-size: 16px;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .phone-preview {
    display: none;
  }

  .ai-preview-card {
    position: static;
    width: 100%;
  }

  .hero-brokers-panel {
    padding: 14px;
  }

  .hero-brokers-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .broker-card {
    min-width: 220px;
    max-width: 220px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-primary);
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding: 16px 16px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 12px 24px;
}

.hero form .btn-primary:hover {
  background-color: var(--color-primary-hover);
}

.hero .hero-img {
  text-align: center;
}

.hero .hero-img img {
  max-width: 85%;
  height: auto;
  transition: all 0.3s ease;
}


@media (min-width: 1200px) {
  .hero .hero-img img {
    max-width: 75%;
  }
}


@media (max-width: 992px) {
  .hero .hero-img img {
    max-width: 65%;
  }
}

/*--------------------------------------------------------------
# Animated placeholder
--------------------------------------------------------------*/
.hero form .input-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: transparent;
}

.hero form .form-control::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.placeholder-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100% -32px);
  color: #6c757d;
  font-size: 16px;
  font-family: inherit;
}

.placeholder-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollPlaceholder 8s ease-in-out infinite;
  transform-origin: left center;
}



@keyframes scrollPlaceholder {
  15% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(0);
  }
}

@media (max-width: 420px){
  @keyframes scrollPlaceholder {
    65% {
      transform: translateX(-65%);
    }
  }
}

@media (min-width: 420px) and (max-width: 576px) {
  @keyframes scrollPlaceholder {
    65% {
      transform: translateX(-40%);
    }
  }
}

@media (min-width: 992px) {
  @keyframes scrollPlaceholder {
    65% {
      transform: translateX(-30%);
    }
  }
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 575px) {
.hero-img{
    display : None;
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

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

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.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;
  color: rgba(13, 66, 255, 0.8);
  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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

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

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/* Full homepage modernization pass. */
body {
  background: #f7f9fc;
}

main {
  background: #f7f9fc;
}

section {
  padding: 84px 0;
}

.section-header {
  padding: 0 0 34px;
}

.section-header span {
  display: none;
}

.section-header h2 {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 16px;
  color: #071527;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  text-transform: none;
}

.section-header h2:after {
  width: 72px;
  height: 4px;
  border-radius: 99px;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ai-console {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 22px;
  margin: 34px 0 12px;
  padding: 28px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(9, 22, 48, 0.98), rgba(13, 66, 255, 0.82)),
    url("../img/hero-bg.png") center/cover;
  color: #fff;
  box-shadow: 0 28px 70px rgba(13, 66, 255, 0.14);
}

.ai-console .mini-label {
  color: #8ed8ff;
  margin-bottom: 10px;
}

.ai-console h3 {
  max-width: 560px;
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.08;
}

.ai-console p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  line-height: 1.7;
}

.ai-console-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ai-console-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.ai-console-stats span,
.ai-console-stats small {
  display: block;
}

.ai-console-stats span {
  font-size: 28px;
  font-weight: 800;
}

.ai-console-stats small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.featured-services {
  background: #fff;
}

.featured-services .row {
  align-items: stretch;
}

.featured-services .service-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.featured-services .service-item:hover {
  transform: translateY(-6px);
  border-color: #cdddf4;
  box-shadow: 0 24px 55px rgba(14, 29, 52, 0.08);
}

.featured-services .service-item .icon i,
.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
}

.featured-services .service-item .readmore {
  margin-top: auto;
}

.about {
  padding: 92px 0;
}

.about .about-header {
  margin-bottom: 24px;
}

.about .container .about-header h3 {
  max-width: 620px;
  margin: 8px 0 0;
  color: #071527;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.about .content > p {
  color: #41506a;
  font-size: 17px;
  line-height: 1.8;
}

.about img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 12px !important;
  box-shadow: 0 22px 60px rgba(14, 29, 52, 0.14);
}

.about-content {
  margin-top: 26px;
}

.feature-box {
  height: 100%;
}

.feature-box h5 {
  color: #071527;
}

.feature-box p {
  color: #586477;
  line-height: 1.55;
}

.faq {
  padding: 92px 0;
  background: #fff;
}

.faq .accordion {
  display: grid;
  gap: 12px;
}

.faq .accordion-item {
  overflow: hidden;
  border: 1px solid #e4ebf5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(14, 29, 52, 0.04);
}

.faq .accordion-button {
  min-height: 64px;
  padding: 18px 22px;
  color: #071527;
  font-size: 16px;
  font-weight: 800;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: #f4f8ff;
  box-shadow: none;
}

.faq .accordion-body {
  padding: 0 22px 22px 58px;
  color: #526074;
  line-height: 1.65;
}

.footer {
  background:
    linear-gradient(135deg, rgba(7, 16, 39, 0.98), rgba(10, 32, 58, 0.96)),
    url("../img/hero-bg.png") center/cover;
}

.footer .footer-info .logo span {
  letter-spacing: 0;
}

.footer .footer-info p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer .social-links a {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-top {
  border-radius: 8px;
}

@media (max-width: 991px) {
  section {
    padding: 68px 0;
  }

  .ai-console {
    grid-template-columns: 1fr;
  }

  .ai-console-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  section {
    padding: 56px 0;
  }

  .ai-console {
    padding: 22px;
  }

  .ai-console-stats {
    grid-template-columns: 1fr;
  }

  .faq .accordion-button {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }

  .faq .accordion-body {
    padding-left: 22px;
  }

  .about img {
    min-height: 260px;
  }
}

/* Keep the homepage redesign above the template defaults. */
.hero.home-hero {
  align-items: flex-start !important;
  min-height: auto;
  padding: 118px 0 70px;
  background:
    linear-gradient(135deg, rgba(7, 16, 39, 0.94), rgba(12, 52, 92, 0.86)),
    url("../img/hero-bg.png") center/cover;
}

.hero.home-hero h2 {
  max-width: 620px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  text-transform: none;
  margin-bottom: 18px;
}

.hero.home-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero.home-hero .broker-card p {
  width: auto;
  max-width: 100%;
  color: #586477;
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
  overflow-wrap: normal;
}

.hero.home-hero .btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.hero.home-hero .btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.hero.home-hero [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 991px) {
  .hero.home-hero {
    padding-top: 96px;
  }
}

@media (max-width: 575px) {
  .hero.home-hero h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero.home-hero p {
    font-size: 16px;
  }

  .hero.home-hero .container,
  .hero.home-hero .row,
  .hero.home-hero [class*="col-"] {
    min-width: 0;
    max-width: 100%;
  }

  .hero.home-hero h2,
  .hero.home-hero p {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    overflow-wrap: anywhere;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-ai-strip,
  .ai-preview-card,
  .hero-brokers-panel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero.home-hero .broker-card p {
    width: auto;
    max-width: 100%;
  }
}

/* Premium visual polish. */
:root {
  --color-ink: #071527;
  --color-muted: #556277;
  --color-surface: #ffffff;
  --color-line: #dfe7f2;
  --color-accent: #16b8a6;
  --color-warm: #ffb84d;
}

.header {
  padding: 14px 0;
}

.header .container-xl {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 8px 14px;
  transition: 0.25s ease;
}

.header.sticked .container-xl {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(7, 21, 39, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.header .logo img {
  max-height: 44px;
  border-radius: 8px;
}

.hero.home-hero {
  background:
    linear-gradient(145deg, rgba(5, 15, 31, 0.97) 0%, rgba(7, 31, 54, 0.93) 58%, rgba(11, 63, 78, 0.9) 100%),
    url("../img/hero-bg.png") center/cover;
}

.hero-eyebrow {
  border-color: rgba(129, 225, 214, 0.28);
  background: rgba(22, 184, 166, 0.12);
  color: #dffcf8;
}

.hero-eyebrow i,
.hero-ai-strip i {
  color: var(--color-accent);
}

.hero.home-hero h2 {
  letter-spacing: 0;
}

.hero.home-hero h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-warm));
}

.hero-actions .btn-primary {
  box-shadow: 0 16px 36px rgba(13, 66, 255, 0.28);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 0 0 14px;
}

.hero-proof div {
  padding: 12px 14px;
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 14px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.hero-ai-strip div {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-preview {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
}

.ai-preview-card {
  border-left: 4px solid var(--color-accent);
}

.hero-brokers-panel {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(248, 251, 255, 0.96);
}

.broker-head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.broker-head-actions > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #eaf7f5;
  color: #08796e;
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.broker-card {
  border-radius: 10px;
  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 img {
  width: 44px;
  height: 44px;
  padding: 4px;
  border: 1px solid #edf1f7;
  background: #fff;
}

.broker-card .text-bg-success {
  background-color: #08796e !important;
}

.slider-fill,
.slider-thumb {
  background: var(--color-accent);
}

.slider-thumb {
  box-shadow: 0 0 0 6px rgba(22, 184, 166, 0.14);
}

.ai-tools-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 46%, #f7f9fc 100%);
}

.section-header h2:after {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.ai-console {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(5, 15, 31, 0.98), rgba(13, 66, 255, 0.83) 64%, rgba(22, 184, 166, 0.86));
}

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

.ai-console-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ai-console-stats div:nth-child(1) {
  border-left: 4px solid var(--color-accent);
}

.ai-console-stats div:nth-child(2) {
  border-left: 4px solid var(--color-warm);
}

.ai-console-stats div:nth-child(3) {
  border-left: 4px solid #fff;
}

.ai-feature-card,
.featured-services .service-item,
.feature-box,
.faq .accordion-item {
  border-radius: 10px;
}

.ai-feature-card:hover,
.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 184, 166, 0.34);
  box-shadow: 0 24px 56px rgba(7, 21, 39, 0.08);
}

.ai-feature-icon,
.featured-services .service-item .icon i,
.feature-icon {
  background: #eaf7f5;
  color: #08796e;
}

.ai-pills span {
  border-color: #e3ebe9;
  background: #f5faf9;
  color: #314b48;
}

.about {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.about .play-btn {
  background: radial-gradient(var(--color-accent) 50%, rgba(22, 184, 166, 0.34) 52%);
}

.faq {
  background: #f7f9fc;
}

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

  .broker-head-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .header .container-xl {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-proof {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .broker-head-actions {
    gap: 8px;
  }
}

/* FAQ refinements. */
.faq {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.faq .section-intro {
  margin-top: -16px;
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq .accordion-item {
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 21, 39, 0.05);
}

.faq .accordion-button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 16px 56px 16px 18px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(22, 184, 166, 0.13);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-ink);
  background: linear-gradient(90deg, #f4fbfa, #ffffff);
}

.faq .question-icon {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eaf7f5;
  color: #08796e;
  font-size: 18px;
}

.faq .accordion-button:after {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-size: 18px;
}

.faq .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
}

.faq .accordion-body {
  padding: 0 56px 24px 76px;
  border: 0;
  background: linear-gradient(90deg, #f4fbfa, #ffffff);
  color: #556277;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .faq {
    padding: 64px 0;
  }

  .faq .accordion-button {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 66px;
    padding: 14px 48px 14px 14px;
    font-size: 15px;
  }

  .faq .question-icon {
    width: 38px;
    height: 38px;
  }

  .faq .accordion-body {
    padding: 0 18px 20px 64px;
  }
}

/* Final fixes: FAQ alignment, mobile nav layering, and card polish. */
.faq .accordion-button {
  position: relative;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr);
}

.faq .accordion-button > span:last-of-type {
  min-width: 0;
  padding-right: 8px;
}

.faq .question-icon {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  z-index: 1;
  flex: 0 0 auto;
}

.faq .question-icon i {
  margin: 0;
  line-height: 1;
}

@media (max-width: 767px) {
  .faq .accordion-button {
    grid-template-columns: 40px minmax(0, 1fr);
    padding-right: 48px;
  }

  .faq .question-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1279px) {
  .header {
    z-index: 10020;
  }

  .header,
  .header.sticked {
    background: rgba(5, 15, 31, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    color: #fff;
    z-index: 10040;
  }

  .navbar {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 400px);
    max-width: none;
    height: 100dvh;
    right: -110vw;
    bottom: auto;
    z-index: 10035;
    pointer-events: none;
    visibility: hidden;
    transition: right 0.28s ease, visibility 0.28s ease;
  }

  .navbar ul {
    display: block;
    list-style: none;
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 92px 18px 26px;
    margin: 0;
    background:
      linear-gradient(180deg, rgba(5, 15, 31, 0.98), rgba(7, 31, 54, 0.98));
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    z-index: 2;
  }

  .navbar li {
    list-style: none;
  }

  .navbar a,
  .navbar a:focus {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding: 14px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.78);
    white-space: normal;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    margin: 14px 0 0;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  }

  .mobile-nav-active .navbar {
    right: 0;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-nav-active::before {
    content: none !important;
    display: none !important;
  }

  .mobile-nav-active .navbar:before {
    content: none !important;
    display: none !important;
  }

  .mobile-nav-active .mobile-nav-hide {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10050;
  }
}

@media (max-width: 1279px) {
  body.mobile-nav-active::before,
  body.mobile-nav-active::after,
  body.mobile-nav-active .navbar::before,
  body.mobile-nav-active .navbar::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    backdrop-filter: none !important;
    pointer-events: none !important;
  }

  body.mobile-nav-active .header,
  body.mobile-nav-active .header.sticked {
    backdrop-filter: none !important;
  }

  body.mobile-nav-active .navbar {
    background: #06172a !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.34);
  }

  body.mobile-nav-active .navbar ul {
    background: #06172a !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
  }
}

@media (max-width: 767px) {
  body.mobile-nav-active .navbar {
    width: 100vw;
  }
}

.ai-feature-card,
.featured-services .service-item,
.feature-box,
.broker-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ai-feature-card::before,
.featured-services .service-item::before,
.feature-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-warm));
  opacity: 0.85;
}

.ai-feature-card:hover,
.featured-services .service-item:hover,
.feature-box:hover,
.broker-card:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 184, 166, 0.42);
  box-shadow: 0 28px 70px rgba(7, 21, 39, 0.12);
}

.ai-feature-icon,
.featured-services .service-item .icon i,
.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(22, 184, 166, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #eaf7f5, #f3f8ff);
  color: #08796e;
  box-shadow: 0 12px 24px rgba(8, 121, 110, 0.08);
}

.ai-feature-card h5,
.featured-services .service-item .title,
.feature-box h5,
.broker-card h5 {
  color: var(--color-ink);
  letter-spacing: 0;
}

.ai-feature-card p,
.featured-services .service-item .description,
.feature-box p,
.broker-card p {
  color: var(--color-muted);
}

.broker-card {
  min-height: 194px;
}

.broker-card img {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 21, 39, 0.06);
}

.broker-arrow {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f8fb;
  color: #08796e;
  opacity: 1;
}

/* Modern supported brokers module. */
.hero-showcase {
  min-height: 360px;
}

.phone-preview {
  width: min(390px, 82vw);
  border: 1px solid rgba(129, 225, 214, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.hero-brokers-panel {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(129, 225, 214, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 251, 0.96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.hero-brokers-head {
  align-items: center;
  padding: 0 2px 14px;
  border-bottom: 1px solid rgba(7, 21, 39, 0.08);
}

.hero-brokers-head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf7f5;
  color: #08796e;
  font-size: 11px;
  letter-spacing: 0;
}

.hero-brokers-head h3 {
  max-width: 640px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

.broker-head-actions > span {
  margin: 0;
  border: 1px solid rgba(22, 184, 166, 0.18);
  box-shadow: 0 10px 22px rgba(8, 121, 110, 0.08);
}

.broker-head-actions a {
  padding: 10px 12px;
  border-radius: 999px;
  background: #071527;
  color: #fff;
  transition: 0.2s ease;
}

.broker-head-actions a:hover {
  background: var(--color-primary);
  color: #fff;
}

.brokers-slider {
  margin-top: 18px;
  border-radius: 14px;
}

.brokers-track {
  gap: 16px;
  padding: 2px 0 12px;
}

.broker-card {
  min-width: 246px;
  max-width: 246px;
  min-height: 208px;
  padding: 18px;
  border: 1px solid rgba(13, 66, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(22, 184, 166, 0.12), transparent 34%),
    #fff;
  box-shadow: 0 14px 34px rgba(7, 21, 39, 0.06);
}

.broker-card:hover {
  background:
    radial-gradient(circle at top right, rgba(22, 184, 166, 0.18), transparent 36%),
    #fff;
}

.broker-card img {
  width: 50px;
  height: 50px;
  padding: 5px;
  border: 1px solid #e6eef6;
  border-radius: 14px;
}

.broker-card h5 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 850;
}

.broker-card p {
  min-height: 58px;
  font-size: 13px;
  line-height: 1.45;
}

.broker-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
}

.broker-footer .badge {
  border-radius: 8px;
  font-size: 12px;
}

.server-count {
  color: #22324a;
  font-weight: 700;
}

.broker-arrow {
  top: 18px;
  right: 18px;
  background: #edf9f7;
}

.slider-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0 0;
}

.slider-track-bg {
  width: min(320px, 100%);
  height: 8px;
  border-radius: 999px;
  background: #dfeaf5;
}

.slider-fill {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.slider-thumb {
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  box-shadow: 0 0 0 7px rgba(22, 184, 166, 0.14);
}

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

  .hero-brokers-panel {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .hero-brokers-panel {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .hero-brokers-head {
    gap: 12px;
    padding-bottom: 12px;
  }

  .broker-head-actions a {
    padding: 8px 10px;
  }

  .broker-card {
    min-width: 218px;
    max-width: 218px;
    min-height: 222px;
    padding: 16px;
  }
}

/* Hero device and hand-scrollable MT5 broker carousel. */
.hero-showcase {
  align-items: center;
  min-height: 420px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  width: min(520px, 86vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(22, 184, 166, 0.2), rgba(13, 66, 255, 0.1) 48%, transparent 70%);
  filter: blur(8px);
}

.phone-preview {
  position: relative;
  width: min(430px, 82vw);
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: heroPhoneFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

.phone-preview img {
  position: relative;
  z-index: 1;
}

@keyframes heroPhoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.6deg);
  }

  50% {
    transform: translateY(-16px) rotate(0.6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-preview {
    animation: none;
  }
}

.brokers-slider-wrap {
  position: relative;
}

.brokers-slider {
  overflow-x: auto !important;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding: 12px 0 16px;
}

.brokers-slider:active {
  cursor: grabbing;
}

.brokers-slider::-webkit-scrollbar {
  height: 0;
}

.brokers-track {
  transform: none !important;
  width: max-content;
}

.broker-card {
  scroll-snap-align: start;
}

.broker-nav {
  position: static;
  z-index: 1;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 184, 166, 0.22);
  border-radius: 999px;
  background: #071527;
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 21, 39, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.broker-nav:hover {
  background: var(--color-accent);
  transform: scale(1.04);
}

.broker-nav i {
  font-size: 20px;
}

.navbar .nav-signin,
.navbar .nav-signin:focus {
  padding: 10px 16px;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.navbar .nav-signin:hover,
.navbar .nav-signin:focus:hover {
  border-color: rgba(22, 184, 166, 0.52);
  background: rgba(22, 184, 166, 0.14);
  color: #fff;
}

/* Modern broker card polish. */
.broker-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #071527;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94)) padding-box,
    linear-gradient(145deg, rgba(13, 66, 255, 0.24), rgba(22, 184, 166, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 18px 36px rgba(7, 21, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.broker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 86% 12%, rgba(22, 184, 166, 0.2), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(13, 66, 255, 0.08), transparent 36%);
  opacity: 0.9;
}

.broker-card:hover {
  color: #071527;
  transform: translateY(-6px);
  box-shadow:
    0 26px 54px rgba(7, 21, 39, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

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

.broker-logo-wrap {
  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-wrap img {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  object-fit: cover;
  background: transparent;
}

.broker-card h5 {
  margin-top: 0;
  letter-spacing: 0;
}

.broker-card p {
  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: var(--color-accent);
  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;
}

@media (max-width: 991px) {
  .phone-preview {
    width: min(340px, 76vw);
  }
}

@media (max-width: 767px) {
  .hero.home-hero .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero.home-hero h2 {
    width: auto;
    max-width: min(330px, calc(100vw - 40px));
    font-size: 30px !important;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .hero.home-hero p {
    width: auto;
    max-width: min(330px, calc(100vw - 40px));
  }

  .hero-showcase {
    min-height: 0;
  }

  .phone-preview {
    display: none;
  }

  .hero-brokers-panel {
    padding-bottom: 18px;
  }

  .hero-brokers-head h3 {
    max-width: min(320px, calc(100vw - 56px));
    font-size: 22px;
  }

  .broker-head-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .broker-head-actions > span,
  .broker-head-actions a {
    max-width: 100%;
    font-size: 11px;
    white-space: nowrap;
  }

  .slider-track-bg {
    flex: 1 1 auto;
    max-width: 200px;
    min-width: 0;
  }

  .broker-nav {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .navbar .nav-signin,
  .navbar .nav-signin:focus {
    margin: 10px 0 0;
    justify-content: center;
    border-radius: 10px;
  }
}
