/**
* Template Name: Aventro
* Template URL: https://bootstrapmade.com/aventro-bootstrap-template/
* Updated: Oct 31 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Fonts */

:root {
  --default-font: 'Roboto', system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --heading-font: 'Ubuntu', 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: #091121;
  /* Background color for the entire website, including individual sections */
  --default-color: #f3f6f4;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e1eff9;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #279ae4;
  /* 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: #151d2d;
  /* 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: #f3f6f4;
  /* The default color of the main navmenu links */
  --nav-hover-color: #279ae4;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0a152a;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #10192b;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f3f6f4;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #279ae4;
  /* 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: #141f33;
  --surface-color: #141f35;
}

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

/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

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

/* Global Header on Scroll
------------------------------*/

.scrolled .header {
  --background-color: rgba(13, 22, 39, 0.9);
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

/* Index Page Header
------------------------------*/

.index-page .header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

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

/* Desktop Navigation */

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: '';
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 10px 0;
    margin: 0;
    /* border-radius: 6px; */
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

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

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 400;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title nav 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: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 57px;
  }
}

/*--------------------------------------------------------------
# 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:before {
  content: '';
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  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;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px 0;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--background-color), transparent 20%) 0%,
    color-mix(in srgb, var(--background-color), transparent 10%) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 40px 15px;
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color);
}

.hero .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  color: var(--accent-color);
}

.hero .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-visual {
  position: relative;
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: calc(50% - 10px);
}

.hero .feature-card:hover {
  transform: translateY(-5px);
}

.hero .feature-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.hero .feature-card span {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .feature-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    margin-top: 60px;
  }
  .hero .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero .hero-stats {
    gap: 24px;
  }
  .hero .feature-card {
    padding: 16px;
  }
  .hero .feature-card i {
    font-size: 24px;
  }
  .hero .feature-card span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero .hero-visual {
    margin-top: 40px;
  }
  .hero .feature-card {
    padding: 12px;
    margin-bottom: 12px;
  }
  .hero .feature-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .hero .feature-card span {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .about-content h2 {
  font-size: 2.25rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
}

.about .about-content .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .about-content .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  font-weight: 600;
  padding: 0.75rem 2.2rem;
  border-radius: 2rem;
  box-shadow: 0 2px 12px
    color-mix(in srgb, var(--accent-color) 30%, transparent 85%);
  transition: background 0.3s, box-shadow 0.3s;
}

.about .about-content .btn-primary:hover,
.about .about-content .btn-primary:focus {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--accent-color), #212529 30%);
  color: var(--contrast-color);
}

.about .about-card {
  background: var(--surface-color);
  border-radius: 1.25rem;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 20px 0
    color-mix(in srgb, var(--accent-color) 9%, transparent 95%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.about .about-card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px 0
    color-mix(in srgb, var(--accent-color) 15%, transparent 90%);
  transition: background 0.3s, color 0.3s;
}

.about .about-card h5 {
  font-size: 1.22rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about .about-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  margin-bottom: 0;
}

.about .about-card:hover,
.about .about-card:focus-within {
  box-shadow: 0 8px 28px 0
    color-mix(in srgb, var(--accent-color) 23%, transparent 80%);
  transform: translateY(-5px) scale(1.03);
}

.about .about-card:hover .icon-wrap,
.about .about-card:focus-within .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .about .about-content h2 {
    font-size: 2rem;
  }
  .about .about-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.6rem;
  }
  .about .about-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover::before {
  height: 100%;
}

.services .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.services .service-item:hover .link-item i {
  transform: translateX(5px);
}

.services .service-item .icon {
  margin-bottom: 1.5rem;
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all 0.3s ease-in-out;
}

.services .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.services .service-item .card-links {
  margin-top: auto;
}

.services .service-item .card-links .link-item {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.services .service-item .card-links .link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.services .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991px) {
  .services .card-item {
    padding: 1.75rem;
  }
  .services .card-item h3 {
    font-size: 1.35rem;
  }
  .services .card-item .icon i {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .services .card-item {
    padding: 1.5rem;
  }
  .services .card-item h3 {
    font-size: 1.25rem;
  }
  .services .card-item .icon i {
    font-size: 2rem;
  }
  .services .card-item:hover {
    transform: translateY(-3px);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features .features-intro {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .features .features-intro {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

.features .features-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.features .features-intro .intro-badge i {
  font-size: 16px;
}

.features .features-intro h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .features .features-intro h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .features .features-intro h2 {
    font-size: 32px;
  }
}

.features .features-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
}

.features .features-intro .metrics-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .features .features-intro .metrics-display {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.features .features-intro .metrics-display .metric-card .metric-value {
  font-size: 28px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.features .features-intro .metrics-display .metric-card .metric-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.features .features-intro .link-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent-color);
  transition: all 0.4s ease;
  padding: 4px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .features-intro .link-explore i {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.features .features-intro .link-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-bottom-color: var(--accent-color);
}

.features .features-intro .link-explore:hover i {
  transform: translateX(6px);
}

.features .features-collection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features .features-collection .feature-item {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

@media (max-width: 576px) {
  .features .features-collection .feature-item {
    padding: 24px;
  }
}

.features .features-collection .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(8px);
}

.features .features-collection .feature-item .feature-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.features
  .features-collection
  .feature-item
  .feature-header
  .feature-icon-wrapper {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.features
  .features-collection
  .feature-item
  .feature-header
  .feature-icon-wrapper
  i {
  font-size: 24px;
  color: var(--accent-color);
}

.features .features-collection .feature-item .feature-header .feature-meta {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 576px) {
  .features .features-collection .feature-item .feature-header .feature-meta {
    flex-direction: column;
    gap: 8px;
  }
}

.features .features-collection .feature-item .feature-header .feature-meta h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.2px;
}

.features
  .features-collection
  .feature-item
  .feature-header
  .feature-meta
  .feature-tag {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.features
  .features-collection
  .feature-item
  .feature-header
  .feature-meta
  .feature-tag.active {
  background-color: color-mix(in srgb, #198754, transparent 88%);
  color: #198754;
}

.features
  .features-collection
  .feature-item
  .feature-header
  .feature-meta
  .feature-tag.beta {
  background-color: color-mix(in srgb, #0d6efd, transparent 88%);
  color: #0d6efd;
}

.features
  .features-collection
  .feature-item
  .feature-header
  .feature-meta
  .feature-tag.upcoming {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-collection .feature-item p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  padding-left: 68px;
}

@media (max-width: 576px) {
  .features .features-collection .feature-item p {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/

.tabs .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.tabs .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: var(--surface-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px
    color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tabs .tabs-header .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.tabs
  .tabs-header
  .nav-tabs
  .nav-link.active
  .tab-content-preview
  .tab-text
  small {
  color: var(--contrast-color);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.tabs
  .tabs-header
  .nav-tabs
  .nav-link:hover:not(.active)
  .tab-content-preview
  .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.tabs .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tabs .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.tabs .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area p {
    font-size: 15px;
  }
}

.tabs .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.tabs .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tabs .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.tabs .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.tabs .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.tabs .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.tabs .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.tabs .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .visual-content {
    padding-left: 0;
  }
}

.tabs .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

.tabs .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.tabs
  .tab-content
  .visual-content
  .floating-element
  .floating-card
  .card-info
  span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tabs
  .tab-content
  .visual-content
  .floating-element
  .floating-card
  .card-info
  strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .tabs
    .tab-content
    .visual-content
    .floating-element
    .floating-card
    .card-info
    strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action {
  padding: 80px 0;
}

.call-to-action .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .call-to-action .content-wrapper {
    padding-right: 0;
    margin-bottom: 48px;
  }
}

.call-to-action .section-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.call-to-action h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 28px;
  }
}

.call-to-action .content-wrapper > p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.call-to-action .trust-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .call-to-action .trust-metrics {
    flex-direction: column;
    gap: 20px;
  }
}

.call-to-action .trust-metrics .metric-item .metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.call-to-action .trust-metrics .metric-item .metric-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.call-to-action .certifications {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-to-action .certifications img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.call-to-action .certifications img:hover {
  opacity: 1;
}

.call-to-action .cta-box {
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 32px 24px;
  }
}

.call-to-action .cta-header {
  margin-bottom: 32px;
}

.call-to-action .cta-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .call-to-action .cta-header h3 {
    font-size: 24px;
  }
}

.call-to-action .cta-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.call-to-action .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .call-to-action .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.call-to-action .benefit-item {
  display: flex;
  gap: 16px;
}

.call-to-action .benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 6px;
}

.call-to-action .benefit-item .benefit-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.call-to-action .benefit-item .benefit-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.call-to-action .benefit-item .benefit-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

.call-to-action .action-area {
  padding-top: 32px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-to-action .action-area .btn-primary,
.call-to-action .action-area .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.call-to-action .action-area .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
}

.call-to-action .action-area .btn-secondary {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

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

@media (min-width: 576px) {
  .call-to-action .action-area {
    flex-direction: row;
    align-items: center;
  }
  .call-to-action .action-area .btn-primary,
  .call-to-action .action-area .btn-secondary {
    flex: 1;
  }
}

.call-to-action .action-area .contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 8px;
}

@media (min-width: 576px) {
  .call-to-action .action-area .contact-info {
    margin-top: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
}

.call-to-action .action-area .contact-info i {
  font-size: 16px;
  color: var(--accent-color);
}

.call-to-action .action-area .contact-info strong {
  color: var(--default-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}

.pricing .pricing-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.featured .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.pricing .pricing-card.featured .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.pricing .plan-header {
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.pricing .plan-header .plan-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.pricing .plan-header .plan-subtitle {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.pricing .plan-pricing {
  margin-bottom: 32px;
}

.pricing .plan-pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing .plan-pricing .price-wrapper.custom {
  justify-content: flex-start;
}

.pricing .plan-pricing .price-wrapper.custom .custom-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.pricing .plan-pricing .price-wrapper .currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}

.pricing .plan-pricing .price-wrapper .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .price-wrapper .amount.annual-price {
  display: none;
}

.pricing .plan-pricing .price-wrapper .period {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .plan-pricing .billing-info {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.pricing .plan-pricing .billing-info.annual-billing {
  display: none;
}

.pricing .plan-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing .plan-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--default-color);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .plan-features .features-list li:last-child {
  border-bottom: none;
}

.pricing .plan-features .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing .plan-features .features-list li span {
  flex: 1;
}

.pricing .plan-action {
  text-align: center;
}

.pricing .plan-action .btn-plan {
  display: block;
  width: 100%;
  padding: 14px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}

.pricing .plan-action .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.pricing .plan-action .trial-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 12px 0 0;
}

.pricing .pricing-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.pricing .pricing-footer .footer-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.pricing .pricing-footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing .pricing-footer .footer-links a {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.pricing .pricing-footer .footer-links a:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.pricing .pricing-footer .footer-links .divider {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .pricing .pricing-toggle {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .pricing .pricing-toggle .toggle-option {
    font-size: 14px;
  }
  .pricing .pricing-card {
    padding: 24px;
  }
  .pricing .plan-pricing .price-wrapper .amount {
    font-size: 40px;
  }
  .pricing .plan-pricing .price-wrapper .currency {
    font-size: 18px;
  }
  .pricing .plan-pricing .price-wrapper .period {
    font-size: 14px;
  }
  .pricing .plan-pricing .price-wrapper.custom .custom-text {
    font-size: 28px;
  }
  .pricing .plan-features .features-list li {
    font-size: 14px;
  }
  .pricing .plan-features .features-list li i {
    font-size: 16px;
  }
  .pricing .pricing-footer .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .pricing .pricing-footer .footer-links .divider {
    display: none;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-wrapper {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 0;
}

.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease-in-out;
}

.faq .faq-item:last-child {
  border-bottom: none;
}

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

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
  font-weight: 600;
}

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

.faq .faq-item.faq-active .faq-header .faq-icon i {
  transform: rotate(180deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
}

.faq .faq-item .faq-header:hover .faq-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 4px;
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-icon i {
  transition: transform 0.3s ease;
}

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

.faq .faq-item .faq-content .content-inner {
  padding: 0 32px 24px 32px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px 24px;
    gap: 16px;
  }
  .faq .faq-item .faq-header h4 {
    font-size: 16px;
  }
  .faq .faq-item .faq-header .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .faq .faq-item .faq-content .content-inner {
    padding: 0 24px 20px 24px;
  }
  .faq .faq-item .faq-content .content-inner p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 18px 20px;
    gap: 12px;
  }
  .faq .faq-item .faq-header h4 {
    font-size: 15px;
  }
  .faq .faq-item .faq-header .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px 18px 20px;
  }
  .faq .faq-item .faq-content .content-inner p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
}

@media (max-width: 991px) {
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }
  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .team .team-header p {
    margin: 0 auto;
  }
  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

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

.team .team-controls .team-control-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

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

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

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

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  background: linear-gradient(
    180deg,
    var(--background-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 98%) 100%
  );
  position: relative;
}

.contact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(
    ellipse at top,
    color-mix(in srgb, var(--accent-color), transparent 94%),
    transparent
  );
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .quick-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact .contact-card {
  background: var(--surface-color);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  box-shadow: 0 4px 20px
    color-mix(in srgb, var(--default-color), transparent 96%);
  transition: all 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-card:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

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

.contact .contact-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

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

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

.contact .contact-card .contact-detail {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1.5;
}

.contact .contact-card .availability {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact .contact-card .availability:before {
  content: '';
  width: 6px;
  height: 6px;
  background: color-mix(in srgb, var(--accent-color), #10b981 50%);
  border-radius: 50%;
  display: inline-block;
}

.contact .trust-indicators {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact .trust-indicators .indicator-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 14px;
}

.contact .trust-indicators .indicator-item .indicator-icon {
  width: 42px;
  height: 42px;
  background: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .trust-indicators .indicator-item .indicator-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact .trust-indicators .indicator-item .indicator-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact .trust-indicators .indicator-item .indicator-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact .trust-indicators .indicator-item .indicator-text span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .main-form-container {
  background: var(--surface-color);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 40px
    color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .form-intro {
  margin-bottom: 36px;
}

.contact .form-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 92%),
    color-mix(in srgb, var(--accent-color), transparent 96%)
  );
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact .form-intro .intro-badge i {
  font-size: 14px;
}

.contact .form-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.contact .form-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact .modern-form .form-control,
.contact .modern-form .form-select {
  height: 58px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  background: var(--surface-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.contact .modern-form .form-control:focus,
.contact .modern-form .form-select:focus {
  border-color: var(--accent-color);
  background: var(--surface-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 94%);
  outline: none;
}

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

.contact .modern-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 12px;
  padding-right: 48px;
}

.contact .modern-form textarea.form-control {
  height: auto !important;
  min-height: 140px;
  padding: 16px 20px;
  resize: none;
}

.contact .modern-form .form-extras {
  margin-top: 20px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 12px;
}

.contact .modern-form .form-extras .form-check {
  margin-bottom: 0;
}

.contact .modern-form .form-extras .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .modern-form .form-extras .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .modern-form .form-extras .form-check .form-check-input:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .modern-form .form-extras .form-check .form-check-label {
  font-size: 14px;
  color: var(--default-color);
  margin-left: 8px;
  cursor: pointer;
}

.contact .modern-form .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 24px;
  box-shadow: 0 4px 16px
    color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .modern-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .modern-form .btn-submit:hover i {
  transform: translateX(4px);
}

.contact .modern-form .btn-submit:active {
  transform: translateY(0);
}

.contact .modern-form .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .modern-form .form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .modern-form .form-footer-note i {
  font-size: 14px;
  color: var(--accent-color);
}

.contact .social-proof {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .social-proof .proof-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact .social-proof .proof-stats .stat-box {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 14px;
}

.contact .social-proof .proof-stats .stat-box .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.contact .social-proof .proof-stats .stat-box .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.contact .social-proof .social-channels {
  text-align: center;
}

.contact .social-proof .social-channels p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.contact .social-proof .social-channels .channel-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact .social-proof .social-channels .channel-links .channel-link {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact .social-proof .social-channels .channel-links .channel-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px
    color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .social-proof .social-channels .channel-links .channel-link i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .contact .quick-contact-wrapper {
    margin-bottom: 32px;
  }
  .contact .main-form-container {
    padding: 36px 28px;
  }
  .contact .main-form-container .form-intro h2 {
    font-size: 28px;
  }
  .contact .social-proof .proof-stats {
    gap: 12px;
  }
  .contact .social-proof .proof-stats .stat-box {
    padding: 16px 12px;
  }
  .contact .social-proof .proof-stats .stat-box .stat-value {
    font-size: 20px;
  }
  .contact .social-proof .proof-stats .stat-box .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .contact .main-form-container {
    padding: 28px 20px;
  }
  .contact .main-form-container .form-intro h2 {
    font-size: 24px;
  }
  .contact .main-form-container .form-intro p {
    font-size: 15px;
  }
  .contact .social-proof .proof-stats {
    flex-direction: column;
    gap: 12px;
  }
  .contact .trust-indicators .indicator-item {
    padding: 14px 16px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/

.service-details .service-content .content-header .service-meta .badge {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 90%
  ) !important;
  color: var(--accent-color) !important;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.85rem;
}

.service-details .service-content .content-header .service-meta .divider {
  width: 2px;
  height: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 1px;
}

.service-details .service-content .content-header .service-title {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-details .service-content .content-header .service-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 90%;
}

.service-details .service-content .visual-showcase .image-container {
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.service-details .service-content .visual-showcase .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-details
  .service-content
  .visual-showcase
  .image-container
  .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, black, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-details
  .service-content
  .visual-showcase
  .image-container
  .play-button {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.service-details
  .service-content
  .visual-showcase
  .image-container:hover
  .image-overlay {
  opacity: 1;
}

.service-details
  .service-content
  .visual-showcase
  .image-container:hover
  .play-button {
  transform: scale(1);
}

.service-details .service-content .visual-showcase .image-container:hover img {
  transform: scale(1.05);
}

.service-details .service-content .section-heading {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
}

.service-details .service-content .section-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-details .service-content .process-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-left: 2px solid
    color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-left: 20px;
  padding-left: 2rem;
  position: relative;
}

.service-details .service-content .process-steps .step-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.service-details .service-content .process-steps .step-item:last-child {
  border-left-color: transparent;
}

.service-details .service-content .process-steps .step-item .step-number {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), blue 20%)
  );
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details
  .service-content
  .process-steps
  .step-item
  .step-content
  .step-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .service-content .process-steps .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.service-details .service-content .features-showcase .nav-pills {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-content .features-showcase .nav-pills .nav-link {
  border-radius: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 12px 24px;
  font-weight: 500;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}

.service-details
  .service-content
  .features-showcase
  .nav-pills
  .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-content .features-showcase .feature-card {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .service-content .features-showcase .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: var(--accent-color);
}

.service-details
  .service-content
  .features-showcase
  .feature-card
  .feature-icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-details .service-content .features-showcase .feature-card h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details .service-content .features-showcase .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.service-details .service-content .client-success .success-card {
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--accent-color), transparent 97%)
  );
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-content .client-success .success-card .client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .client-success .success-card .client-name {
  color: var(--heading-color);
  font-weight: 600;
  margin: 0;
}

.service-details .service-content .client-success .success-card .client-role {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.service-details .service-content .client-success .success-card .rating {
  color: #fbbf24;
  font-size: 1.1rem;
}

.service-details .service-content .client-success .success-card .success-quote {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
}

.service-details
  .service-content
  .client-success
  .success-card
  .success-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.service-details
  .service-content
  .client-success
  .success-card
  .success-metrics
  .metric-value {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.service-details
  .service-content
  .client-success
  .success-card
  .success-metrics
  .metric-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .sidebar .service-card,
.service-details .sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
}

.service-details .sidebar .service-card .card-header,
.service-details .sidebar .contact-card .card-header {
  padding: 1.5rem 1.5rem 0;
}

.service-details .sidebar .service-card .card-header .card-title,
.service-details .sidebar .contact-card .card-header .card-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.service-details .sidebar .service-card .card-header .card-subtitle,
.service-details .sidebar .contact-card .card-header .card-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.service-details .sidebar .service-card .card-body,
.service-details .sidebar .contact-card .card-body {
  padding: 1.5rem;
}

.service-details .sidebar .overview-list .overview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 94%);
}

.service-details .sidebar .overview-list .overview-item:last-child {
  border-bottom: none;
}

.service-details .sidebar .overview-list .overview-item .item-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .sidebar .overview-list .overview-item .item-label i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.service-details .sidebar .overview-list .overview-item .item-label span {
  font-weight: 500;
}

.service-details .sidebar .overview-list .overview-item .item-value {
  color: var(--heading-color);
  font-weight: 600;
}

.service-details .sidebar .contact-form .form-group .input-wrapper {
  position: relative;
}

.service-details .sidebar .contact-form .form-group .input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 1rem;
  z-index: 2;
}

.service-details .sidebar .contact-form .form-group .input-wrapper input {
  padding-left: 2.75rem;
}

.service-details .sidebar .contact-form .form-group input,
.service-details .sidebar .contact-form .form-group textarea,
.service-details .sidebar .contact-form .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: var(--surface-color);
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-details .sidebar .contact-form .form-group input:focus,
.service-details .sidebar .contact-form .form-group textarea:focus,
.service-details .sidebar .contact-form .form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .sidebar .contact-form .form-group input::placeholder,
.service-details .sidebar .contact-form .form-group textarea::placeholder,
.service-details .sidebar .contact-form .form-group select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .sidebar .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.service-details .sidebar .contact-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-details .sidebar .contact-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.service-details .sidebar .contact-form .submit-btn i {
  transition: transform 0.3s ease;
}

.service-details .sidebar .contact-form .submit-btn:hover i {
  transform: translateX(3px);
}

.service-details .action-section .action-buttons .action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details .action-section .action-buttons .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .action-section .action-buttons .action-btn.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.service-details .action-section .action-buttons .action-btn.secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .action-section .action-buttons .action-btn.secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .action-section .action-buttons .action-btn i {
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .service-details .sidebar {
    margin-top: 3rem;
  }
}

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

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

/* Custom css */

/* Ensure items in the grid stretch to fill the height */
.feature-item.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* or flex-start based on preference */
}

/* Optional: If your original items didn't have a background, 
   add this to make them look like cards in the grid. 
   DELETE THIS if you want to keep strictly original styling. */
.feature-item {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
}
/* 1. Background Atmosphere (The "Glow") */
.page-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--background-color);
}

.ambient-light {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(39, 154, 228, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.light-top {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.light-bottom {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(13, 110, 253, 0.1) 0%,
    transparent 70%
  );
}

/* 2. Modern Typography */
.display-hero {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-balance {
  text-wrap: balance;
}

/* 3. Glass Cards */
.glass-panel {
  background: rgba(
    21,
    29,
    45,
    0.6
  ); /* Matches your --surface-color but transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(39, 154, 228, 0.4); /* Your --accent-color */
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
}

/* 4. Feature Icons (Neumorphic-ish) */
.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(39, 154, 228, 0.2),
    rgba(39, 154, 228, 0.05)
  );
  border: 1px solid rgba(39, 154, 228, 0.2);
  color: var(--accent-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* 5. Button Glow */
.btn-glow-primary {
  background: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 0 0 0 rgba(39, 154, 228, 0.7);
  animation: pulse-blue 2s infinite;
  transition: transform 0.2s;
}

.btn-glow-primary:hover {
  transform: scale(1.05);
  background-color: color-mix(in srgb, var(--accent-color), white 10%);
  color: #fff;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 154, 228, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 154, 228, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 154, 228, 0);
  }
}

/* 6. Dashboard Mockup (Browser Window) */
.mockup-window {
  border-radius: 12px;
  background: #0f1623;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.mockup-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
/* CSS Variables */
:root {
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 1. Background Orbs */
.hero-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-color);
  top: -200px;
  right: -100px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: #7928ca;
  bottom: -100px;
  left: -100px;
}

/* 2. Text Gradients & Badges */
.glass-badge {
  background: var(--glass-bg);
  border: color-mix(in srgb, var(--default-color), transparent 85%) 1px solid;
  backdrop-filter: blur(8px);
}
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--accent-color), #7928ca);
  border: none;
}

.text-gradient-animate {
  background: linear-gradient(
    to right,
    var(--accent-color),
    #7928ca,
    var(--accent-color)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* 3. Buttons */
.btn-glow {
  background: var(--accent-color);
  border: none;
  box-shadow: 0 0 25px -5px var(--accent-color);
  transition: 0.3s;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px -5px var(--accent-color);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--heading-color);
}

/* 4. Visuals (Straightened) */
.visual-wrapper {
  position: relative;
}

.browser-mockup {
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); /* Softer shadow for flat look */
  overflow: hidden;
  /* REMOVED TILT TRANSFORMS */
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Gentle lift on hover instead of tilt */
.browser-mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.browser-header {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
}
.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.browser-bar {
  margin: 0 auto;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 2px 15px;
  border-radius: 4px;
  font-size: 0.7rem;
  opacity: 0.6;
  color: var(--default-color);
}

/* 5. Floating Widgets */
.floating-widget {
  position: absolute;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}
.icon-box-sm {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjusted positions for straight layout */
.widget-top-left {
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}
.widget-bottom-right {
  bottom: 5%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Adaptive Text Colors using CSS Variables from main.css */
.text-adaptive {
  color: var(--default-color);
}
.heading-adaptive {
  color: var(--heading-color);
}

/* Modern Gradient Text */
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--heading-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Styling */
.modern-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

/* Hero Glow */
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 600px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* Icon Box */
.icon-box-modern {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Header & Breadcrumbs */
.page-header {
  padding-top: 150px;
  padding-bottom: 80px;
  background: linear-gradient(
    180deg,
    rgba(9, 17, 33, 0.95) 0%,
    var(--background-color) 100%
  );
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
}

.breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}
.breadcrumb-item.active {
  color: var(--heading-color);
  opacity: 0.7;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--default-color);
  opacity: 0.3;
}

/* Feature Highlights (Small Cards) */
.feature-highlight {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}
.feature-highlight:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
/* --- 1. GLOBAL HEADER STYLES --- */
.header {
  --background-color: rgba(9, 17, 33, 0.95); /* Deep dark blue */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.7);
  --nav-hover-color: #fff;
  --accent-color: #0d6efd; /* Bootstrap Primary Blue */

  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  backdrop-filter: blur(10px); /* Glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 1px;
}

/* --- 2. DESKTOP NAVIGATION (min-width: 1200px) --- */
@media (min-width: 1200px) {
  .navmenu {
    margin-right: auto; /* Pushes nav to the right */
    padding: 0;
  }

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

  .navmenu a {
    color: var(--nav-color);
    padding: 0 15px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
  }

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

  /* Desktop Auth Buttons */
  .btn-auth-login {
    color: var(--default-color);
    font-weight: 600;
    padding: 8px 20px;
    text-decoration: none;
    transition: 0.3s;
  }
  .btn-auth-login:hover {
    color: var(--accent-color);
  }

  .btn-auth-signup {
    background: var(--accent-color);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  }
  .btn-auth-signup:hover {
    background: #0b5ed7;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    color: #fff;
  }
}

/* --- 3. MOBILE NAVIGATION (max-width: 1199px) --- */
@media (max-width: 1199px) {
  /* The Drawer Container */
  .navmenu {
    position: fixed;
    top: 0;
    left: -100%; /* Hidden off-screen by default */
    width: 400px; /* Fixed width for the pane */
    height: 100vh; /* Full height */
    bottom: 0;
    transition: 0.3s;
    z-index: 9998; /* Below the toggle button */
    background-color: #0f1623; /* Solid dark background for readability */
    padding: 60px 00px 0px 20px; /* Top padding clears the close button */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  /* JS adds this class to body to slide menu in */
  body.mobile-nav-active .navmenu {
    right: 0;
  }
  .header .logo {
    margin-right: auto;
  }
  /* Links inside Drawer */
  .navmenu ul {
    display: flex;
    flex-direction: column; /* Stack vertically */
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navmenu a {
    display: block;
    padding: 18px 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: var(--accent-color);
  }

  /* Mobile Auth Buttons */
  .header-auth {
    margin: 20px 10px 10px 10px;
    border-bottom: none !important;
    display: block;
  }

  .auth-group {
    display: flex;
    flex-direction: column; /* Stack buttons on mobile */
    gap: 15px;
    width: 100%;
  }

  .btn-auth-login,
  .btn-auth-signup {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }

  .btn-auth-login {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .btn-auth-signup {
    background-color: var(--accent-color);
    color: #fff;
  }

  /* Toggle Button (Hamburger / Close) */
  .mobile-nav-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 9999; /* Always on top */
    transition: 0.3s;
    position: relative; /* Stays in flow or fixed depending on need */
  }
}
/* --- CENTRALIZED AUTH LAYOUT --- */
.auth-wrapper {
  min-height: 100vh;
  padding-top: 100px; /* Offset for fixed header */
  padding-bottom: 50px;
  display: flex;
  align-items: center; /* Vertical Center */
  justify-content: center; /* Horizontal Center */
  background: radial-gradient(
    circle at 50% 0%,
    color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
    var(--background-color) 70%
  );
  position: relative;
  overflow: hidden;
}

.auth-card {
  background: rgba(15, 22, 35, 0.6); /* Semi-transparent dark bg */
  backdrop-filter: blur(16px); /* Strong Glass Effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 450px; /* Limits width for central focus */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

/* --- MODERN INPUT STYLING --- */
.form-floating > .form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
}

.form-floating > .form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color); /* Uses your bootstrap-like variable */
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15); /* Soft Blue Glow */
  color: #fff;
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.5);
}

/* Fix autofill yellow background in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #0f1623 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* --- ROBUST PASSWORD TOGGLE --- */
.password-toggle {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background 0.3s;

  /* 1. Force it above the floating label (which is usually z-index 2) */
  z-index: 20;

  /* 2. Increase Touch Target Size for Mobile */
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Optional: circular touch effect */
}

/* Hover/Touch state for feedback */
.password-toggle:hover,
.password-toggle:active {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

/* 3. Hide NATIVE browser password icons (The double-eye fix) */
/* Chrome/Edge/Safari sometimes add their own, overlapping yours */
input[type='password']::-ms-reveal,
input[type='password']::-ms-clear {
  display: none !important;
}
/* Some webkit browsers */
input[type='password']::-webkit-contacts-auto-fill-button,
input[type='password']::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
/* --- FORCE CLICK-ONLY DROPDOWN ---


/* 1. Disable any template-based hover effects */
.click-dropdown:hover > .dropdown-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* 2. Enable ONLY when Bootstrap adds the 'show' class (on click) */
.click-dropdown .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  /* transform: translateY(0);
    animation: fadeIn 0.2s ease-out; */
}

/* 3. Optional: Smooth fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 4. Ensure Dropdown Item Hover works nicely */
.click-dropdown .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

/* 5. Optional: Add a subtle border to the dropdown menu */
/* 1. Ensure Modal is ALWAYS on top (Z-Index 100000) */
.custom-modal-overlay {
  display: none;
  position: fixed;
  z-index: 100000; /* Increased to beat mobile menus */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.7
  ); /* Darker for better contrast on mobile */
  backdrop-filter: blur(4px);

  /* Mobile Layout Fixes */
  align-items: center;
  justify-content: center;
  padding: 20px; /* Prevents edges touching screen */
  box-sizing: border-box;
  overflow-y: auto; /* Allows scrolling if phone is very small/landscape */
}

.custom-modal-content {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: modalPop 0.3s ease-out;
  margin: auto; /* Centers in the flex container */
}

/* 2. Prevent iOS Zoom on inputs (Font size must be 16px) */
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 16px; /* Vital for iPhone */
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  box-sizing: border-box; /* Fixes width issues */
}

/* 3. Make the Close button easier to tap */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px; /* Bigger touch target */
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #888;
  cursor: pointer;
}
.close-modal:hover {
  color: #000;
}

/* Form Elements */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9f9f9;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #25d366;
  background: #fff;
}

/* WhatsApp Send Button */
.whatsapp-btn {
  width: 100%;
  padding: 12px;
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.whatsapp-btn:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
}

/* WhatsApp Floating Button - Left Aligned */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px; /* Positioned to the left */
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0px 10px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  margin-top: 2px; /* Minor visual correction */
}

/* Pulse Animation for WhatsApp */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Dark Mode adjustments for SweetAlert */
div:where(.swal2-container) div:where(.swal2-popup) {
  background: #151d2d !important; /* Matches your --surface-color */
  color: #e1eff9 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
div:where(.swal2-icon).swal2-success {
  border-color: #25d366 !important;
  color: #25d366 !important;
}

/*--------------------------------------------------------------
# contct form Section
--------------------------------------------------------------*/
/* --- PAGE HERO (Reused for consistency) --- */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(
    circle at 50% 0%,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    var(--background-color) 70%
  );
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
  position: relative;
}

/* --- CONTACT CARDS --- */
.contact-info-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}
.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* --- FORM STYLING --- */
.contact-form-wrapper {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}
.form-control-custom {
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s;
}
.form-control-custom:focus {
  background: var(--background-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--heading-color);
}

/* --- MAP --- */
.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 400px;
  position: relative;
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 17, 33, 0.2); /* Slight dark tint for theme cohesion */
  pointer-events: none;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.pagination-modern .page-link {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  margin: 0 5px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

.pagination-modern .page-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.pagination-modern .page-item.active .page-link {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.pagination-modern .page-item.disabled .page-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

/* --- SESSION TIMEOUT MODAL --- */
.session-modal-overlay {
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;

  /* 1. Start Invisible */
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  visibility: hidden;
  opacity: 0;

  /* 2. Smooth Transition Settings */
  transition: all 0.5s ease-in-out;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* When class 'active' is added, it fades in */
.session-modal-overlay.active {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  visibility: visible;
  opacity: 1;
}

.session-modal-content {
  background: #1e293b;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);

  /* Modal Slide-Up Animation */
  transform: translateY(20px);
  transition: transform 0.5s ease-out;
}

.session-modal-overlay.active .session-modal-content {
  transform: translateY(0);
}

.session-icon {
  font-size: 3rem;
  color: #f59e0b;
  margin-bottom: 15px;
}
.countdown-circle {
  font-size: 3rem;
  font-weight: bold;
  color: #ef4444;
  margin: 20px 0;
}
.session-actions {
  display: flex;
  gap: 15px;
}
.btn-stay {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 12px;
  flex: 1;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-stay:hover {
  background: #2563eb;
}
.btn-logout-now {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 12px;
  flex: 1;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-logout-now:hover {
  color: white;
  border-color: white;
}
