/* 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd; /* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
}

.header .header-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 6px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scrolled .header {
  padding: 10px 0;
}

.scrolled .header .header-container {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 22px;
  margin: 0;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(13, 131, 253, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(13, 131, 253, 0.35);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0;
    padding: 6px 15px;
    height: 36px;
    font-size: 13px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
  }

  .navmenu a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .navmenu li:hover > a::after,
  .navmenu .active::after {
    transform: scaleX(1);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

/* Move scroll-top above the WhatsApp WATI widget (~60px button + 20px gap) */
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 90px;
}

.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);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
}

.hero:not(.dark-background) {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero:not(.dark-background)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
  padding-bottom: 30px;
  overflow: visible;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
  z-index: 5;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: transparent;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-2 .phone-mockup img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action:not(.dark-background) .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.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 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  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: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats .stats-item span {
    font-size: 32px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .stats .stats-item {
    padding: 20px 15px;
  }

  .stats .stats-item p {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  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 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);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Hero Section - Landing Page Override
--------------------------------------------------------------*/
.hero.dark-background {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: #1a1a2e;
}

.hero.dark-background .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero.dark-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 131, 253, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero.dark-background .container {
  position: relative;
  z-index: 2;
}

.hero.dark-background h1 {
  color: #fff;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero.dark-background p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero.dark-background .badge-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero.dark-background .hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero.dark-background .btn-get-started {
  background: #fff;
  color: var(--accent-color);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero.dark-background .btn-get-started:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero.dark-background .btn-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero.dark-background .btn-watch-video:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero.dark-background .btn-watch-video i {
  font-size: 1.5rem;
}

.hero.dark-background .hero-img img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .hero.dark-background {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero.dark-background h1 {
    font-size: 2rem;
  }

  .hero.dark-background .hero-actions {
    justify-content: center;
  }

  .hero.dark-background .hero-img {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section - Landing Page Override
--------------------------------------------------------------*/
.call-to-action.dark-background {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.call-to-action.dark-background > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.call-to-action.dark-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 131, 253, 0.85);
  z-index: 1;
}

.call-to-action.dark-background .container {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
}

.call-to-action.dark-background h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-to-action.dark-background p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.call-to-action.dark-background .cta-btn,
.call-to-action .cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.call-to-action.dark-background .cta-btn:hover,
.call-to-action .cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Services Section - Landing Page
--------------------------------------------------------------*/
.services .service-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.services .service-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services .service-item .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item:hover .icon {
  background: var(--accent-color);
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 28px;
  transition: 0.3s;
}

.services .service-item:hover .icon i {
  color: #fff;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--heading-color);
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Contact Section - Landing Page Override
--------------------------------------------------------------*/
.contact .info-item i {
  width: 3.5rem;
  height: 3.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: #fff;
}

.contact .info-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.contact .info-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .php-email-form {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 131, 253, 0.15);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 131, 253, 0.3);
}

/*--------------------------------------------------------------
# Smooth Scrolling
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Dark Mode Variables
--------------------------------------------------------------*/
body.dark-mode {
  --background-color: #0f1117;
  --default-color: #d4d4d8;
  --heading-color: #f4f4f5;
  --accent-color: #3b9cff;
  --surface-color: #1a1b23;
  --contrast-color: #ffffff;

  /* Nav overrides — prevents white mobile menu & dropdowns */
  --nav-color: #d4d4d8;
  --nav-hover-color: #3b9cff;
  --nav-mobile-background-color: #1a1b23;
  --nav-dropdown-background-color: #1a1b23;
  --nav-dropdown-color: #d4d4d8;
  --nav-dropdown-hover-color: #3b9cff;
}

/* ---- Preset overrides ---- */
body.dark-mode .light-background {
  --background-color: #13141c;
  --surface-color: #1e1f2a;
  background-color: #13141c !important;
}

body.dark-mode .dark-background {
  --background-color: #111827;
  --surface-color: #1e293b;
}

/* ---- Header & Nav ---- */
body.dark-mode .header {
  background: rgba(15, 17, 23, 0.6);
}

body.dark-mode .header .header-container {
  background: rgba(26, 27, 35, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

body.dark-mode .scrolled .header .header-container {
  background: rgba(26, 27, 35, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.dark-mode .header.scrolled {
  box-shadow: none;
}

@media (max-width: 1199px) {
  body.dark-mode .navmenu {
    background: var(--nav-mobile-background-color);
  }

  body.dark-mode .navmenu a,
  body.dark-mode .navmenu a:focus {
    color: var(--nav-dropdown-color);
  }

  body.dark-mode .navmenu a:hover,
  body.dark-mode .navmenu .active,
  body.dark-mode .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  body.dark-mode .navmenu .dropdown ul {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }

  body.dark-mode .navmenu .dropdown ul ul {
    background-color: rgba(255, 255, 255, 0.06);
  }

  body.dark-mode .navmenu .dropdown > .dropdown-active {
    background-color: rgba(255, 255, 255, 0.04);
  }

  body.dark-mode .mobile-nav-active .navmenu {
    background: rgba(15, 17, 23, 0.96);
  }
}

/* Desktop dropdown */
body.dark-mode .navmenu .dropdown ul {
  background: var(--nav-dropdown-background-color);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .navmenu .dropdown ul a {
  color: var(--nav-dropdown-color);
}

body.dark-mode .navmenu .dropdown ul a:hover {
  color: var(--nav-dropdown-hover-color);
  background-color: rgba(255, 255, 255, 0.04);
}

/* ---- Features Cards — reset hardcoded light colors ---- */
body.dark-mode .features-cards {
  --default-color: #d4d4d8;
  --heading-color: #f4f4f5;
}

body.dark-mode .features-cards .feature-box {
  background: var(--surface-color) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode .features-cards .feature-box.orange,
body.dark-mode .features-cards .feature-box.blue,
body.dark-mode .features-cards .feature-box.green,
body.dark-mode .features-cards .feature-box.red {
  background: var(--surface-color) !important;
}

body.dark-mode .features-cards .feature-box h4 {
  color: var(--heading-color);
}

body.dark-mode .features-cards .feature-box p {
  color: var(--default-color);
}

/* ---- Feature Tabs ---- */
body.dark-mode .features .nav-tabs {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .features .nav-tabs .nav-link {
  color: var(--default-color);
  border-color: transparent;
}

body.dark-mode .features .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-color: rgba(255, 255, 255, 0.08) rgba(255, 255, 255, 0.08) var(--surface-color);
}

body.dark-mode .features .tab-pane h3,
body.dark-mode .features .tab-pane h4 {
  color: var(--heading-color);
}

body.dark-mode .features .tab-pane p {
  color: var(--default-color);
}

/* ---- Features 2 ---- */
body.dark-mode .features-2 .feature-item .feature-icon {
  background-color: rgba(59, 156, 255, 0.12);
}

body.dark-mode .features-2 .feature-item .feature-content h3 {
  color: var(--heading-color);
}

body.dark-mode .features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* ---- Services ---- */
body.dark-mode .service-item,
body.dark-mode .services .service-card {
  background: var(--surface-color);
  border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .service-item:hover,
body.dark-mode .services .service-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(59, 156, 255, 0.1);
}

body.dark-mode .services .service-card h3 {
  color: var(--heading-color);
}

body.dark-mode .services .service-card p {
  color: var(--default-color);
}

/* ---- About ---- */
body.dark-mode .about .about-title {
  color: var(--heading-color);
}

body.dark-mode .about .about-description {
  color: var(--default-color);
}

body.dark-mode .about .contact-info {
  color: var(--default-color);
}

body.dark-mode .about .image-wrapper {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark-mode .about .experience-badge {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* ---- Stats ---- */
body.dark-mode .stats-item {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.dark-mode .stats-item .purecounter {
  color: var(--accent-color);
}

/* ---- FAQ ---- */
body.dark-mode .faq-container .faq-item {
  background: var(--surface-color);
  border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .faq-container .faq-item .faq-toggle {
  color: var(--default-color);
}

body.dark-mode .faq-container .faq-item h3 {
  color: var(--heading-color);
}

body.dark-mode .faq-container .faq-item p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* ---- Contact ---- */
body.dark-mode .contact .contact-form {
  background-color: var(--surface-color);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

body.dark-mode .contact .contact-form h3 {
  color: var(--heading-color);
}

body.dark-mode .contact .contact-form p {
  color: var(--default-color);
}

/* ---- Forms ---- */
body.dark-mode .form-control,
body.dark-mode .form-select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--default-color);
}

body.dark-mode .form-control:focus,
body.dark-mode .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(59, 156, 255, 0.15);
  color: var(--default-color);
}

body.dark-mode .form-control::placeholder,
body.dark-mode .form-select::placeholder {
  color: rgba(212, 212, 216, 0.5);
}

body.dark-mode .php-email-form {
  background: var(--surface-color) !important;
}

/* ---- Modal ---- */
body.dark-mode .modal-content {
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .modal-content .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .modal-content .modal-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .modal-content h5,
body.dark-mode .modal-content label {
  color: var(--heading-color);
}

body.dark-mode .btn-close {
  filter: invert(1);
}

/* ---- CTA Section ---- */
body.dark-mode .call-to-action {
  background-color: #111827;
}

body.dark-mode .call-to-action h3 {
  color: #ffffff;
}

body.dark-mode .call-to-action p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Footer ---- */
body.dark-mode .footer {
  background: #0a0b10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.dark-mode .footer h4 {
  color: var(--heading-color);
}

body.dark-mode .footer a {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

body.dark-mode .footer a:hover {
  color: var(--accent-color);
}

body.dark-mode .footer .copyright {
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* ---- Misc Dark Utilities ---- */
body.dark-mode .about-box span {
  color: var(--default-color);
}

body.dark-mode img {
  opacity: 0.92;
}

body.dark-mode ::selection {
  background: rgba(59, 156, 255, 0.3);
  color: #ffffff;
}

body.dark-mode ::-webkit-scrollbar {
  width: 8px;
}

body.dark-mode ::-webkit-scrollbar-track {
  background: #0f1117;
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: #2a2b35;
  border-radius: 4px;
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: #3b9cff;
}

/* Smooth color transitions */
body,
body .header,
body section,
body .footer,
body .navmenu,
body .navmenu a,
body .form-control,
body .form-select,
body .modal-content,
.feature-box,
.service-card,
.service-item,
.faq-item,
.stats-item,
.contact .contact-form {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/*--------------------------------------------------------------
# Dark Mode Toggle Button
--------------------------------------------------------------*/
.dark-mode-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  color: var(--heading-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.dark-mode-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: rotate(20deg);
}

body.dark-mode .dark-mode-btn i::before {
  content: "\F5A5";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*--------------------------------------------------------------
# Hero Enhancements
--------------------------------------------------------------*/
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles span:nth-child(2) { left: 30%; top: 70%; animation-delay: 2s; animation-duration: 18s; width: 4px; height: 4px; }
.hero-particles span:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; animation-duration: 14s; width: 8px; height: 8px; }
.hero-particles span:nth-child(4) { left: 80%; top: 60%; animation-delay: 1s; animation-duration: 16s; }
.hero-particles span:nth-child(5) { left: 45%; top: 85%; animation-delay: 3s; animation-duration: 20s; width: 5px; height: 5px; }
.hero-particles span:nth-child(6) { left: 90%; top: 15%; animation-delay: 5s; animation-duration: 13s; width: 3px; height: 3px; }

@keyframes float-particle {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

.typed-accent {
  color: #ffd166;
  position: relative;
}

.typed-accent::after {
  content: "|";
  animation: blink-cursor 0.7s step-end infinite;
  margin-left: 2px;
  color: #ffd166;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  margin-left: -10px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.3;
}

.trust-text strong {
  color: #ffd166;
  display: block;
  font-size: 1rem;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img-wrapper > img {
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Carousel inside hero */
.hero-img-wrapper .hero-carousel {
  height: 420px;
}

.hero-img-wrapper .hero-carousel .carousel-main-display {
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-img-wrapper .hero-carousel .carousel-thumbs {
  width: 72px;
}

.hero-img-wrapper .hero-carousel .carousel-thumb {
  width: 72px;
  height: 64px;
  border-radius: 10px;
}

.hero-img-wrapper .hero-carousel .carousel-thumb.active {
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.hero-img-wrapper .hero-carousel .carousel-dot {
  background: rgba(255, 255, 255, 0.5);
}

.hero-img-wrapper .hero-carousel .carousel-dot.active {
  background: #ffffff;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: float-card 4s ease-in-out infinite;
  z-index: 15;
}

body.dark-mode .hero-float-card {
  background: rgba(26, 27, 35, 0.95);
}

body.dark-mode .hero-float-card strong {
  color: var(--heading-color);
}

body.dark-mode .hero-float-card span {
  color: var(--default-color);
}

.hero-float-card.card-1 {
  top: 12%;
  right: 70px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 12%;
  left: -20px;
  animation-delay: 2s;
}

.hero-float-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-float-card strong {
  font-size: 1.1rem;
  color: #1a1a2e;
  display: block;
  line-height: 1.1;
}

.hero-float-card span {
  font-size: 0.75rem;
  color: #6c757d;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .hero-float-card { display: none; }
  .hero-trust { justify-content: center; flex-direction: column; text-align: center; }

  .hero-img-wrapper .hero-carousel {
    height: 340px;
  }

  .hero-img-wrapper .hero-carousel .carousel-thumbs {
    flex-direction: row;
    width: 100%;
    height: auto;
    overflow-x: auto;
    gap: 6px;
    padding-top: 8px;
  }

  .hero-img-wrapper .hero-carousel .carousel-thumb {
    width: 52px;
    height: 44px;
    min-width: 52px;
  }

  .hero-img-wrapper .hero-carousel {
    flex-direction: column;
  }

  .hero-img-wrapper .hero-carousel .carousel-nav-btn {
    opacity: 1;
  }

  .hero-img-wrapper .hero-carousel .carousel-prev,
  .hero-img-wrapper .hero-carousel .carousel-next {
    left: auto;
    transform: none;
    top: 50%;
  }

  .hero-img-wrapper .hero-carousel .carousel-prev {
    left: 8px;
    transform: translateY(-50%);
  }

  .hero-img-wrapper .hero-carousel .carousel-prev i::before {
    content: "\F284";
  }

  .hero-img-wrapper .hero-carousel .carousel-next {
    right: 8px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-img-wrapper .hero-carousel .carousel-next i::before {
    content: "\F285";
  }
}

/*--------------------------------------------------------------
# Header Mobile Responsiveness
--------------------------------------------------------------*/
.header .btn-getstarted.btn-portal .btn-label {
  display: inline;
}

.header .btn-getstarted.btn-portal i.d-xl-none {
  display: none !important;
}

@media (max-width: 575px) {
  .header .header-container {
    padding: 8px 12px;
    border-radius: 16px;
  }

  .header .logo h1 {
    font-size: 18px;
  }

  .header-actions {
    gap: 6px !important;
  }

  .header .btn-getstarted {
    padding: 6px 12px;
    font-size: 12px;
    margin: 0 !important;
    height: 34px;
  }

  .header .btn-getstarted.btn-portal .btn-label {
    display: none;
  }

  .header .btn-getstarted.btn-portal i.d-xl-none {
    display: inline-block !important;
    font-size: 16px;
  }

  .header .btn-getstarted.btn-portal {
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .dark-mode-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .header .header-container {
    padding: 8px 15px;
  }

  .header .btn-getstarted {
    padding: 6px 14px;
    font-size: 13px;
    margin: 0 !important;
    height: 34px;
  }

  .header-actions {
    gap: 6px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header .btn-getstarted {
    padding: 7px 16px;
    font-size: 13px;
    margin: 0 !important;
    height: 36px;
  }

  .header-actions {
    gap: 8px !important;
  }

  .dark-mode-btn {
    width: 36px;
    height: 36px;
  }
}

/* Comfortable sizing for common 1366x768 laptop screens */
@media (min-width: 1200px) and (max-width: 1399px) {
  .header .header-container {
    max-width: 1100px;
    padding: 8px 18px;
  }

  .header .btn-getstarted {
    padding: 7px 18px;
    font-size: 13px;
    height: 38px;
  }

  .header-actions {
    gap: 8px;
  }

  .dark-mode-btn {
    width: 38px;
    height: 38px;
  }
}

/*--------------------------------------------------------------
# Features Tab Animations
--------------------------------------------------------------*/
.features-tabs-animated {
  position: relative;
  overflow: hidden;
}

.features-tabs-animated .nav-link {
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.features-tabs-animated .nav-link .tab-icon {
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.features-tabs-animated .nav-link:hover .tab-icon {
  transform: scale(1.2) rotate(-5deg);
}

.features-tabs-animated .nav-link.active .tab-icon {
  color: var(--contrast-color);
  animation: tab-icon-pop 0.4s ease;
}

@keyframes tab-icon-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Pill sliding indicator */
.features-tabs-animated .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.features-tabs-animated .nav-link.active::before {
  transform: scaleX(1);
}

.features-tabs-animated .nav-link.active {
  background-color: transparent !important;
  z-index: 1;
}

/* Tab content fade + slide animation */
.tab-content-animated .tab-pane {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.tab-content-animated .tab-pane.fade {
  opacity: 0;
  transform: translateY(20px);
}

.tab-content-animated .tab-pane.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile stacked tabs */
@media (max-width: 768px) {
  .features-tabs-animated {
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
    width: 100%;
  }

  .features .nav-item {
    padding: 0;
    margin-bottom: 4px;
  }

  .features .nav-item:last-child {
    margin-bottom: 0;
  }

  .features-tabs-animated .nav-link {
    border-radius: 12px;
    padding: 12px 18px;
    justify-content: flex-start;
    width: 100%;
  }

  .features .tab-pane .row {
    flex-direction: column;
  }

  .features .tab-pane .col-lg-6.order-1 {
    order: 1 !important;
    margin-bottom: 20px;
  }

  .features .tab-pane .col-lg-6.order-2 {
    order: 2 !important;
  }

  .features .tab-pane h3 {
    font-size: 22px;
  }

  .features .tab-pane img {
    max-height: 250px;
    object-fit: contain;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-tabs-animated .nav-link {
    padding: 10px 18px;
  }

  .features-tabs-animated .nav-link h4 {
    font-size: 12px;
  }

  .features-tabs-animated .nav-link .tab-icon {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Vertical Image Carousel (Hero Section)
--------------------------------------------------------------*/
.about-vertical-carousel {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: 420px;
}

.carousel-main-display {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nav Arrows */
.carousel-nav-btn {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-main-display:hover .carousel-nav-btn {
  opacity: 1;
}

.carousel-nav-btn:hover {
  background: var(--accent-color);
  transform: translateX(-50%) scale(1.1);
}

.carousel-prev {
  top: 12px;
}

.carousel-next {
  bottom: 12px;
}

/* Dot Indicators */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

/* Vertical Thumbnails */
.carousel-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.carousel-thumbs::-webkit-scrollbar {
  display: none;
}

.carousel-thumb {
  width: 80px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.carousel-thumb.active {
  border-color: var(--accent-color);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(59, 156, 255, 0.3);
}

.carousel-thumb:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel auto-play progress bar */
.carousel-main-display::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-color);
  z-index: 10;
}

.carousel-main-display.carousel-animating::after {
  animation: carousel-progress 5s linear infinite;
}

@keyframes carousel-progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Mobile carousel */
@media (max-width: 768px) {
  .about-vertical-carousel {
    flex-direction: column;
    height: auto;
  }

  .carousel-main-display {
    height: 280px;
  }

  .carousel-thumbs {
    flex-direction: row;
    width: 100%;
    height: auto;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
  }

  .carousel-thumb {
    width: 60px;
    height: 50px;
    min-width: 60px;
  }

  .carousel-nav-btn {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
  }

  .carousel-prev,
  .carousel-next {
    left: auto;
    transform: none;
    top: 50%;
  }

  .carousel-prev {
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-prev i::before {
    content: "\F284";
  }

  .carousel-next {
    right: 8px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-next i::before {
    content: "\F285";
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .about-vertical-carousel {
    height: 360px;
  }

  .carousel-thumb {
    width: 70px;
    height: 60px;
  }

  .hero-img-wrapper .hero-carousel {
    height: 420px;
  }
}

/* Tab click ripple effect */
.tab-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%) scale(0);
  animation: tab-ripple-anim 0.6s ease forwards;
  pointer-events: none;
  z-index: 5;
}

@keyframes tab-ripple-anim {
  to {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

/* Dark mode carousel */
body.dark-mode .carousel-main-display {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

body.dark-mode .carousel-nav-btn {
  background: rgba(26, 27, 35, 0.8);
}

body.dark-mode .carousel-dot {
  background: rgba(255, 255, 255, 0.25);
}

body.dark-mode .carousel-thumb {
  border-color: transparent;
}

body.dark-mode .carousel-thumb.active {
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(59, 156, 255, 0.25);
}

/*--------------------------------------------------------------
# About Section Enhancements
--------------------------------------------------------------*/
.about .about-box {
  padding: 8px 0;
  transition: transform 0.3s ease;
}

.about .about-box:hover {
  transform: translateX(5px);
}

.about .about-box i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.about .about-box:hover i {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Contact Modal Styles
--------------------------------------------------------------*/
.modal-content {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--heading-color);
}

.modal-body {
  padding: 1rem 1.5rem 1.5rem;
}

.modal-body .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.modal-body .form-control,
.modal-body .form-select {
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(13, 131, 253, 0.1);
}

.btn-modal-submit {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modal-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.3);
}

/*--------------------------------------------------------------
# Welcome First-Visit Popup
--------------------------------------------------------------*/
.welcome-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.welcome-popup {
  background: #fff;
  border-radius: 22px;
  display: flex;
  max-width: 960px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}

.welcome-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
  line-height: 1;
}

.welcome-popup-close:hover {
  background: #e74c3c;
  color: #fff;
  transform: rotate(90deg);
}

/* Left side */
.welcome-popup-left {
  flex: 1;
  background: linear-gradient(145deg, #06102b 0%, #0b3d91 45%, #0d83fd 100%);
  color: #ffffff !important;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.welcome-popup-left::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: -80px;
}

.welcome-popup-left::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -60px;
  left: -60px;
}

.welcome-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
  backdrop-filter: blur(4px);
  color: #ffffff !important;
}

.welcome-popup-badge i {
  font-size: 1rem;
  color: #4ade80;
}

.welcome-popup-left h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.welcome-popup-left > p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95) !important;
  margin: 0;
  position: relative;
  z-index: 1;
}

.welcome-popup-left > p strong {
  color: #ffd166;
}

.welcome-popup-stats {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.welcome-stat {
  text-align: center;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 10px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

.welcome-stat .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffd166;
  line-height: 1.1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.welcome-stat .stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.welcome-popup-trust {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
  z-index: 1;
}

.welcome-popup-trust i {
  color: #ffd166;
  font-size: 0.9rem;
}

.welcome-popup-trust span {
  margin-left: 8px;
  font-weight: 500;
}

/* Right side - form */
.welcome-popup-right {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow-y: auto;
}

.welcome-form-header {
  text-align: center;
}

.welcome-offer-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff6b35, #f7c948);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: 24px;
  margin-bottom: 12px;
  animation: pulse-tag 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes pulse-tag {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.welcome-form-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.3;
}

.welcome-form-header p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.welcome-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.welcome-form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.welcome-form-group label i {
  color: var(--accent-color);
  font-size: 0.85rem;
}

.welcome-form-group input {
  border: 1.5px solid #dde2ea;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  background: #f7f8fb;
  color: #1a1a2e;
}

.welcome-form-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(13, 131, 253, 0.12);
  background: #fff;
}

.welcome-form-group input::placeholder {
  color: #b0b7c3;
}

.welcome-submit-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #0d83fd, #0a5dc2);
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.35);
  margin-top: 6px;
  letter-spacing: 0.2px;
}

.welcome-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.45);
  background: linear-gradient(135deg, #0a6ee0, #084ba5);
}

.welcome-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #9ca3af;
}

.welcome-form-footer i {
  font-size: 0.8rem;
  color: #4ade80;
}

.welcome-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #6d4c00;
  font-weight: 500;
}

.welcome-urgency i {
  font-size: 0.9rem;
  color: #f57c00;
}

/* Welcome popup form status messages */
#welcome-popup-form .loading,
#welcome-popup-form .error-message,
#welcome-popup-form .sent-message {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px;
  border-radius: 8px;
}

#welcome-popup-form .loading {
  color: var(--accent-color);
}

#welcome-popup-form .error-message {
  color: #dc3545;
  background: #fce4e4;
}

#welcome-popup-form .sent-message {
  color: #198754;
  background: #d1f7e0;
}

/* Dark mode for welcome popup */
body.dark-mode .welcome-popup {
  background: #1a1b23;
}

body.dark-mode .welcome-popup-close {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
}

body.dark-mode .welcome-popup-right {
  background: #1a1b23;
}

body.dark-mode .welcome-form-header h3 {
  color: #eee;
}

body.dark-mode .welcome-form-header p {
  color: #999;
}

body.dark-mode .welcome-form-group label {
  color: #ddd;
}

body.dark-mode .welcome-form-group input {
  background: #24252e;
  border-color: #3a3b45;
  color: #eee;
}

body.dark-mode .welcome-form-group input:focus {
  background: #2a2b35;
}

body.dark-mode .welcome-urgency {
  background: #2a2520;
  border-color: #5a4a20;
  color: #f0c040;
}

body.dark-mode .welcome-form-footer {
  color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .welcome-popup-overlay {
    padding: 8px;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .welcome-popup {
    flex-direction: column;
    max-height: none;
    overflow: visible;
    border-radius: 16px;
    margin: auto 0;
  }

  .welcome-popup-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    z-index: 10;
  }

  /* Left side - compact on mobile */
  .welcome-popup-left {
    padding: 24px 20px 18px;
    gap: 10px;
    border-radius: 16px 16px 0 0;
  }

  .welcome-popup-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    gap: 5px;
  }

  .welcome-popup-badge i {
    font-size: 0.85rem;
  }

  .welcome-popup-left h2 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .welcome-popup-left > p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .welcome-popup-stats {
    gap: 8px;
    margin-top: 2px;
  }

  .welcome-stat {
    padding: 10px 6px;
    border-radius: 10px;
  }

  .welcome-stat .stat-number {
    font-size: 1.15rem;
  }

  .welcome-stat .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.3px;
  }

  .welcome-popup-trust {
    font-size: 0.72rem;
    gap: 2px;
  }

  .welcome-popup-trust i {
    font-size: 0.72rem;
  }

  .welcome-popup-trust span {
    margin-left: 4px;
    font-size: 0.72rem;
  }

  /* Right side - form compact */
  .welcome-popup-right {
    padding: 20px;
    gap: 10px;
  }

  .welcome-offer-tag {
    font-size: 0.68rem;
    padding: 5px 14px;
    margin-bottom: 6px;
  }

  .welcome-form-header h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .welcome-form-header p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .welcome-form-group label {
    font-size: 0.72rem;
    gap: 4px;
  }

  .welcome-form-group label i {
    font-size: 0.75rem;
  }

  .welcome-form-group input {
    padding: 10px 12px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .welcome-submit-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 40px;
  }

  .welcome-form-footer {
    font-size: 0.65rem;
    gap: 4px;
  }

  .welcome-urgency {
    padding: 8px 12px;
    font-size: 0.75rem;
    border-radius: 10px;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .welcome-popup-overlay {
    padding: 5px;
  }

  .welcome-popup-left {
    padding: 20px 16px 14px;
    gap: 8px;
  }

  .welcome-popup-left h2 {
    font-size: 1.1rem;
  }

  .welcome-popup-left > p {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .welcome-stat .stat-number {
    font-size: 1rem;
  }

  .welcome-stat .stat-label {
    font-size: 0.55rem;
  }

  .welcome-popup-right {
    padding: 16px 14px;
    gap: 8px;
  }

  .welcome-form-header h3 {
    font-size: 1rem;
  }

  .welcome-form-group input {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .welcome-submit-btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Mobile Sticky CTA Bar
--------------------------------------------------------------*/
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  background: var(--surface-color, #fff);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 8px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

body.dark-mode .mobile-cta-bar {
  background: #1a1b23;
  border-top-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1199.98px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 60px; }
}

.mobile-cta-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-cta-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.mobile-cta-btn.whatsapp:hover {
  background: #1fbe59;
}

.mobile-cta-btn.primary {
  background: var(--accent-color);
  color: #fff;
}

.mobile-cta-btn.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
}

/*--------------------------------------------------------------
# Enhanced Section Transitions
--------------------------------------------------------------*/
.section {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title:hover h2::after {
  width: 80px;
}

/*--------------------------------------------------------------
# Services Enhancement
--------------------------------------------------------------*/
.services .service-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 131, 253, 0.1);
}

.services .service-item .icon {
  transition: all 0.4s ease;
}

.services .service-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/*--------------------------------------------------------------
# Feature Cards Enhancement
--------------------------------------------------------------*/
.features-cards .feature-box {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.features-cards .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.features-cards .feature-box i {
  transition: transform 0.4s ease;
}

.features-cards .feature-box:hover i {
  transform: scale(1.15) rotate(8deg);
}

/*--------------------------------------------------------------
# Stats Enhancement
--------------------------------------------------------------*/
.stats .stats-item {
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 20px;
}

.stats .stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 131, 253, 0.1);
}

/*--------------------------------------------------------------
# FAQ Enhancement
--------------------------------------------------------------*/
.faq .faq-item {
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Scroll Reveal Animations
--------------------------------------------------------------*/
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Preloader Enhancement
--------------------------------------------------------------*/
#preloader {
  background: var(--background-color);
  transition: opacity 0.5s ease;
}

#preloader:before {
  border-top-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Global Transition for Dark Mode
--------------------------------------------------------------*/
body,
body *:not(script):not(style):not(.hero-bg):not(.hero-particles span) {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/*--------------------------------------------------------------
# Responsive Mobile Refinements
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero.dark-background {
    padding: 100px 0 50px;
  }

  .hero.dark-background h1 {
    font-size: 1.75rem;
  }

  .hero.dark-background p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .hero-actions .btn-get-started,
  .hero-actions .btn-watch-video {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .features .nav-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .features .nav-tabs .nav-item {
    width: 100%;
  }

  .features .nav-tabs .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .faq .content {
    padding: 0 1rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .faq-container {
    padding: 0 1rem !important;
  }

  .contact .info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer .row {
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .footer-links ul {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .hero.dark-background h1 {
    font-size: 1.5rem;
  }

  .badge-label {
    font-size: 0.75rem !important;
    padding: 0.3rem 1rem !important;
  }

  .stats .row {
    gap: 0;
  }

  .service-item {
    padding: 20px !important;
  }

  .call-to-action.dark-background h3 {
    font-size: 1.5rem;
  }

  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-content {
    border-radius: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Floating Side Buttons (VLibras-style expanding)
--------------------------------------------------------------*/
.floating-side-btns {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-side-btn {
  height: 44px;
  border-radius: 22px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  padding: 0;
  /* Collapsed: only icon visible */
  width: 44px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background 0.3s ease;
}

.float-btn-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.float-btn-label {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--default-font);
  letter-spacing: 0.02em;
  padding: 0;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s ease 0s,
              max-width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* Expanded state on hover */
.float-side-btn:hover {
  width: auto;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
}

.float-side-btn:hover .float-btn-label {
  opacity: 1;
  max-width: 200px;
  padding-left: 14px;
  padding-right: 8px;
  transition: opacity 0.3s ease 0.1s,
              max-width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-side-btn:active {
  transform: scale(0.96);
}

/* Shimmer overlay on hover */
.float-side-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.float-side-btn:hover::before {
  left: 100%;
}

/* Form button - blue */
.float-btn-form {
  background: linear-gradient(135deg, #0d83fd, #0a5ecf);
}

.float-btn-form.is-open {
  background: linear-gradient(135deg, #dc3545, #b52a37);
}

.float-btn-form.is-open .float-btn-icon i::before {
  content: "\f659"; /* bi-x-lg */
}

.float-btn-form.is-open .float-btn-label {
  display: none;
}

/* Terms button - slate/dark */
.float-btn-terms {
  background: linear-gradient(135deg, #495057, #343a40);
}

/* Pulse animation on form button */
@keyframes floatBtnPulse {
  0%, 100% { box-shadow: 0 3px 12px rgba(13, 131, 253, 0.3); }
  50% { box-shadow: 0 3px 22px rgba(13, 131, 253, 0.55); }
}

.float-btn-form:not(.is-open):not(:hover) {
  animation: floatBtnPulse 2.5s ease-in-out infinite;
}

/* Dark mode */
body.dark-mode .float-btn-form {
  background: linear-gradient(135deg, #4dabff, #2b8aed);
}

body.dark-mode .float-btn-form.is-open {
  background: linear-gradient(135deg, #e85d6c, #dc3545);
}

body.dark-mode .float-btn-terms {
  background: linear-gradient(135deg, #6c757d, #565e64);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-side-btns {
    right: 10px;
    gap: 8px;
  }

  .float-side-btn {
    width: 38px;
    height: 38px;
    border-radius: 19px;
  }

  .float-btn-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.95rem;
  }

  .float-btn-label {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# LGPD Cookie Consent Banner
--------------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: rgba(26, 27, 35, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
  animation: cookieSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cookie-text i {
  font-size: 1.4rem;
  color: #4dabff;
  margin-top: 2px;
  flex-shrink: 0;
}

.cookie-text p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cookie-text a {
  color: #4dabff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: #fff;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: var(--default-font);
}

.cookie-accept {
  background: linear-gradient(135deg, #0d83fd, #0a5ecf);
  color: #fff;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #0a6ee0, #084ba5);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(13, 131, 253, 0.4);
}

.cookie-essential {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-essential:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 16px;
  }

  .cookie-consent-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .cookie-text {
    justify-content: center;
  }

  .cookie-text i {
    display: none;
  }

  .cookie-text p {
    font-size: 0.78rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

/*--------------------------------------------------------------
# Focus Visible Styles (Accessibility)
--------------------------------------------------------------*/
:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

body.dark-mode :focus-visible {
  outline-color: #4dabff;
}

/*--------------------------------------------------------------
# Cookie Banner Visible — push bottom-right elements up
--------------------------------------------------------------*/
body.cookie-banner-visible .scroll-top.active {
  bottom: 160px;
}

/* Starter Section Section */
.starter-section {
  /* Add your styles here */
}
