/**
* Template Name: Horizon
* Template URL: https://bootstrapmade.com/horizon-bootstrap-agency-template/
* Updated: Jul 28 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Space Grotesk",  sans-serif;
  --nav-font: "Space Grotesk",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #54555a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e0e10; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dd4814; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #54555a;  /* The default color of the main navmenu links */
  --nav-hover-color: #dd4814; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #54555a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #dd4814; /* 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: #f4f3f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e0e10;
  --default-color: #bfbfc6;
  --heading-color: #ffffff;
  --surface-color: #18181b;
  --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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

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

.header .logo h1 span {
  color: var(--accent-color);
}

.header .btn-cta {
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin-left: 32px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.header .btn-cta:hover {
  transform: translateY(-2px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
}

.scrolled .header {
  padding: 12px 0;
  border-bottom-color: transparent;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    position: relative;
    color: var(--nav-color);
    padding: 8px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    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: 6px;
    transition: 0.3s;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    background-color: var(--nav-hover-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
  }

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

  .navmenu li:hover>a::before,
  .navmenu .active::before {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 12px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 88%);
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.1);
  }

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

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

  .navmenu .dropdown ul a::before {
    display: none;
  }

  .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);
    padding-left: 24px;
  }

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 20px;
    left: 15px;
    right: 15px;
    bottom: 20px;
    max-width: 380px;
    max-height: calc(100vh - 40px);
    padding: 6px 0 16px;
    margin: 0 auto;
    border-radius: 20px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid #e2e8f0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.28);
  }

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

  .navmenu a .toggle-dropdown,
  .navmenu a i.toggle-dropdown {
    margin-left: auto !important;
    font-size: 12px;
    line-height: 0;
    width: 28px;
    height: 28px;
    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 .toggle-dropdown:hover,
  .navmenu a:focus .toggle-dropdown: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 .toggle-dropdown,
  .navmenu .active:focus .toggle-dropdown {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 6px 0;
    margin: 6px 16px;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
  }

  .navmenu .dropdown ul a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.05);
    margin: 4px 10px;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #f8fafc;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 26px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 10001;
    background: rgba(14, 14, 16, 0.6);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(14, 14, 16, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: 0.3s;
    z-index: 9999;
  }

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

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

.footer .footer-cta {
  padding: 64px 0 48px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-cta h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 640px;
  margin: 0;
}

.footer .footer-cta h2 span {
  color: var(--accent-color);
}

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

.footer .footer-cta .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.footer .footer-cta .btn-pill:hover {
  transform: translateY(-4px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
}

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

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

.footer .footer-about .logo .sitename {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: var(--heading-font);
}

.footer .footer-about .logo .sitename .dot {
  color: var(--accent-color);
}

.footer .footer-about p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.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 30%);
  margin-right: 8px;
  transition: all 0.3s ease-out;
}

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

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

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

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

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1.4;
  transition: all 0.3s ease-out;
}

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

.footer .footer-contact .email-link {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 16px;
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.footer .footer-contact .email-link:hover {
  background-size: 100% 1px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .footer .footer-contact .email-link {
    font-size: 20px;
  }
}

.footer .footer-contact .phone {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 8px;
}

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

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

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

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

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

.footer .credits a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button (Bottom-Left to avoid overlapping with WhatsApp & AI Bot)
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 20px;
  bottom: 20px;
  right: auto;
  z-index: 999;
  background-color: #0e0e10;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

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

.scroll-top:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.page-title .heading h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .page-title .heading h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
}

.page-title .heading p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs {
  margin-bottom: 24px;
}

.page-title .breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease-out;
}

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

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

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

.page-title .breadcrumbs ol .current {
  color: var(--accent-color);
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 48px;
  position: relative;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 0;
  position: relative;
  padding-top: 24px;
}

.section-title h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.section-title p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (min-width: 992px) {
  .section-title p {
    padding-left: 32px;
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 25, 60, 0.94) 0%, rgba(26, 54, 138, 0.90) 50%, rgba(37, 99, 235, 0.88) 100%), url('/assets/img/hero/hero-corporate.jpg') center center / cover no-repeat;
  color: #ffffff;
  padding-top: 65px;
  padding-bottom: 75px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 25%, rgba(221, 72, 20, 0.18), transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.22), transparent 50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 42px;
    background: linear-gradient(180deg, rgba(8, 18, 44, 0.96) 0%, rgba(20, 42, 102, 0.93) 55%, rgba(28, 56, 134, 0.95) 100%), url('/assets/img/hero/hero-corporate.jpg') center top / cover no-repeat;
  }
}

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

.hero .hero-content .hero-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero .hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {
  .hero .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 30px;
    letter-spacing: -0.5px;
    line-height: 1.22;
    margin-bottom: 14px;
  }
}

.hero .hero-content p {
  font-size: 17px;
  line-height: 1.65;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 30px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 14.5px;
    line-height: 1.58;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
  }
}

.hero .hero-content .cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero .hero-content .cta-row .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0e0e10;
  font-family: var(--heading-font);
  font-size: 15.5px;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease-out;
  text-decoration: none;
  cursor: pointer;
}

.hero .hero-content .cta-row .btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000000;
}

.hero .hero-content .cta-row .btn-hero-primary:active {
  transform: translateY(0);
}

.hero .hero-content .cta-row .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--heading-font);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.25s ease-out;
  text-decoration: none;
}

.hero .hero-content .cta-row .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero .hero-content .cta-row .btn-hero-secondary:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .hero .hero-content .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero .hero-content .cta-row .btn-hero-primary,
  .hero .hero-content .cta-row .btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }
}

.hero .hero-content .hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 580px;
}

@media (max-width: 480px) {
  .hero .hero-content .hero-stats-grid {
    gap: 8px;
    padding-top: 16px;
  }
}

.hero .hero-content .hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero .hero-content .hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero .hero-content .hero-stat-card .value {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 3px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stat-card {
    padding: 10px 6px;
  }
  .hero .hero-content .hero-stat-card .value {
    font-size: 17px;
  }
}

.hero .hero-content .hero-stat-card .label {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stat-card .label {
    font-size: 10.5px;
  }
}

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

.hero .hero-visual .visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hero .hero-visual .floating-card {
  position: absolute;
  left: 20px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.hero .hero-visual .floating-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  font-size: 22px;
  flex-shrink: 0;
}

.hero .hero-visual .floating-card .card-text {
  display: flex;
  flex-direction: column;
}

.hero .hero-visual .floating-card .card-text .value {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.hero .hero-visual .floating-card .card-text .label {
  font-size: 12px;
  color: #64748b;
}

.hero .hero-visual .floating-card .card-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .lead-in {
  font-size: 16px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .clients .lead-in {
    max-width: 100%;
    text-align: center;
  }
}

.clients .logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .clients .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
}

.clients .logo-grid .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .logo-grid .logo-item img {
  width: 100%;
  max-width: 128px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease-out;
}

.clients .logo-grid .logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-stack {
  position: relative;
}

.about .image-stack .main-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about .image-stack .experience-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 152px;
  padding: 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .image-stack .experience-badge .number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.about .image-stack .experience-badge .text {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.about .content h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 520px;
  margin-bottom: 24px;
}

.about .content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

.about .content .check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

@media (max-width: 576px) {
  .about .content .check-list {
    grid-template-columns: 1fr;
  }
}

.about .content .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: var(--default-color);
}

.about .content .check-list li i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.2;
}

.about .content .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.about .content .link-arrow i {
  color: var(--accent-color);
  transition: transform 0.3s ease-out;
}

.about .content .link-arrow:hover {
  background-size: 100% 1px;
  color: var(--heading-color);
}

.about .content .link-arrow:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-out;
}

.services .service-item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--default-color), transparent 78%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

.services .service-item .item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services .service-item .item-top i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.services .service-item .item-top .index {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.services .service-item h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: color 0.3s ease-out;
}

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

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

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.services .service-item .read-more i {
  color: var(--accent-color);
  transition: transform 0.3s ease-out;
}

.services .service-item .read-more:hover {
  color: var(--accent-color);
}

.services .service-item .read-more:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 96px 0;
}

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

.call-to-action .cta-wrap .kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action .cta-wrap h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

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

.call-to-action .cta-wrap p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 40px auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .cta-wrap .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.call-to-action .cta-wrap .btn-pill:hover {
  transform: translateY(-4px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-out;
}

.portfolio .portfolio-filters li:hover {
  color: var(--heading-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--heading-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .portfolio-card .image-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-card .image-wrap img {
  width: 100%;
  transition: transform 0.5s ease-out;
}

.portfolio .portfolio-card .image-wrap .hover-actions {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease-out;
}

.portfolio .portfolio-card .image-wrap .hover-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--heading-color);
  font-size: 18px;
}

.portfolio .portfolio-card .image-wrap .hover-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio .portfolio-card .image-wrap:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-card .image-wrap:hover .hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-card .card-meta {
  padding: 24px 0 8px 0;
}

.portfolio .portfolio-card .card-meta .category {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.portfolio .portfolio-card .card-meta h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0;
}

.portfolio .portfolio-card .card-meta h4 a {
  color: var(--heading-color);
  transition: color 0.3s ease-out;
}

.portfolio .portfolio-card .card-meta h4 a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-intro h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 320px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .stats .stats-intro h2 {
    font-size: 28px;
  }
}

.stats .stats-intro p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0 24px 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.stats .stat-item .number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.stats .stat-item .label {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-photo {
  overflow: hidden;
}

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

.team .team-member .member-photo:hover img {
  transform: scale(1.05);
}

.team .team-member .member-info {
  padding-top: 24px;
}

.team .team-member .member-info h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.team .team-member .member-info .role {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
}

.team .team-member .member-info .socials {
  display: flex;
  gap: 8px;
}

.team .team-member .member-info .socials 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 85%);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease-out;
}

.team .team-member .member-info .socials a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 16px 0;
}

.testimonials .testimonial-item .quote {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .testimonials .testimonial-item .quote {
    font-size: 20px;
  }
}

.testimonials .testimonial-item .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonials .testimonial-item .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.testimonials .swiper-pagination {
  position: static;
  margin-top: 24px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
  transition: all 0.3s ease-out;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 50px;
  background-color: var(--accent-color);
}

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

.pricing .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

.pricing .pricing-card.featured {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.featured {
  padding-top: 58px;
}

.pricing .pricing-card .badge-popular {
  position: absolute;
  top: 18px;
  left: 32px;
  padding: 4px 16px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
}

.pricing .pricing-card .plan {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing .pricing-card .blurb {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
}

.pricing .pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card .price .amount {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--heading-color);
}

.pricing .pricing-card .price .period {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing .pricing-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
}

.pricing .pricing-card .feature-list li i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.2;
}

.pricing .pricing-card .btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 32px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.pricing .pricing-card .btn-pill:hover {
  transform: translateY(-4px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
}

.pricing .pricing-card .btn-pill.outline {
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  color: var(--heading-color);
}

.pricing .pricing-card .btn-pill.outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-intro h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 300px;
  margin-bottom: 16px;
}

.faq .faq-intro p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 24px;
}

.faq .faq-intro .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.faq .faq-intro .link-arrow i {
  color: var(--accent-color);
  transition: transform 0.3s ease-out;
}

.faq .faq-intro .link-arrow:hover {
  background-size: 100% 1px;
  color: var(--heading-color);
}

.faq .faq-intro .link-arrow:hover i {
  transform: translateX(4px);
}

.faq .faq-item {
  position: relative;
  padding: 24px 48px 24px 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 16px;
  transition: all 0.3s ease-out;
}

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

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin: 0;
  cursor: pointer;
  transition: color 0.3s ease-out;
}

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

.faq .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.faq .faq-item .faq-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  cursor: pointer;
  transition: transform 0.3s ease-out;
}

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

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

.faq .faq-item.faq-active .faq-content {
  max-height: 300px;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact .contact-info .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 20px;
}

.contact .contact-info .info-item .info-text h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact .contact-info .info-item .info-text p {
  font-size: 16px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s ease-out;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
}

.contact .php-email-form .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.contact .php-email-form .btn-pill:hover {
  transform: translateY(-4px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .meta-band {
  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%);
  margin-bottom: 48px;
}

.portfolio-details .meta-band .meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-details .meta-band .meta-item .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.portfolio-details .meta-band .meta-item .value {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-slider {
  margin-bottom: 48px;
}

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

.portfolio-details .portfolio-details-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  position: static;
  margin-top: 24px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
  transition: all 0.3s ease-out;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 50px;
  background-color: var(--accent-color);
}

.portfolio-details .project-summary h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.portfolio-details .project-summary p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.portfolio-details .project-summary h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin: 32px 0 16px 0;
}

.portfolio-details .project-summary .outcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-details .project-summary .outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
}

.portfolio-details .project-summary .outcome-list li i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.2;
}

.portfolio-details .quote-card {
  padding: 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-left: 3px solid var(--accent-color);
  margin-bottom: 32px;
}

.portfolio-details .quote-card i {
  font-size: 40px;
  line-height: 1;
  color: var(--accent-color);
  display: block;
  margin-bottom: 16px;
}

.portfolio-details .quote-card p {
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.portfolio-details .quote-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portfolio-details .quote-card .author strong {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.portfolio-details .quote-card .author span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.portfolio-details .next-cta {
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .next-cta h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 16px;
}

.portfolio-details .next-cta .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.portfolio-details .next-cta .btn-pill:hover {
  transform: translateY(-4px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .intro-content .kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.service-details .intro-content .kicker::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background-color: var(--accent-color);
}

.service-details .intro-content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .service-details .intro-content h3 {
    font-size: 28px;
  }
}

.service-details .intro-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.service-details .intro-content .benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-details .intro-content .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
}

.service-details .intro-content .benefit-list li i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.2;
}

.service-details .intro-content .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.service-details .intro-content .btn-pill:hover {
  transform: translateY(-4px);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
}

.service-details .intro-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-details .block-heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.service-details .process-block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .process-block .process-step {
  height: 100%;
  padding: 32px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-out;
}

.service-details .process-block .process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

.service-details .process-block .process-step .step-number {
  display: block;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-bottom: 24px;
}

.service-details .process-block .process-step h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 8px;
}

.service-details .process-block .process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .other-services {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .other-services .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-details .other-services .chip-row .chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-out;
}

.service-details .other-services .chip-row .chip:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section .starter-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}



/* ===================================================
   WEBDOID TECHNOLOGIES - HORIZON THEME EXTENSIONS
   =================================================== */

.header {
  padding: 14px 0 !important;
}

.header .logo img {
  max-height: 42px !important;
  width: auto !important;
  display: block;
}

.header .btn-cta {
  margin-left: 18px !important;
  padding: 10px 22px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50px !important;
  cursor: pointer !important;
}

.navmenu ul {
  gap: 4px !important;
}

.navmenu a {
  padding: 8px 10px !important;
  font-size: 14px !important;
}

.hot-badge {
  background: var(--accent-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tat-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  padding: 3px 10px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card-horizon {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px;
  padding: 28px 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.service-card-horizon:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-card-horizon h4 {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.service-card-horizon p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 14px;
}

.service-card-horizon .btn-quote {
  background: transparent;
  color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
  width: 100%;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.service-card-horizon .btn-quote:hover {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-category-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  padding-bottom: 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-top: 45px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-category-title i {
  color: var(--accent-color);
}

/* Floating WhatsApp Button - Bottom Right */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1080;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

/* Quote Modal in Horizon Theme */
#quoteModal .modal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

#quoteModal .modal-header {
  background: var(--accent-color);
  color: #ffffff;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  padding: 18px 24px;
}

#quoteModal .form-control,
#quoteModal .form-select {
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
}

#quoteModal .form-control:focus,
#quoteModal .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

#quoteModal .btn-submit-modal {
  background: #10b981;
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  padding: 12px;
  border-radius: 50px;
  border: none;
  width: 100%;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  transition: 0.3s;
}

#quoteModal .btn-submit-modal:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}


/* Service Card Action Buttons */
.service-card-horizon {
  background: var(--surface-color);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.service-card-horizon:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 16px 36px rgba(221, 72, 20, 0.12);
}

.service-card-horizon h4 {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.service-card-horizon h4 a:hover {
  color: var(--accent-color) !important;
}

.btn-explore-service {
  background: var(--accent-color);
  color: #ffffff !important;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  transition: 0.25s;
}

.btn-explore-service:hover {
  background: #b8380d;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(221, 72, 20, 0.3);
}

.btn-quote-pill {
  background: transparent;
  color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: 0.25s;
}

.btn-quote-pill:hover {
  background: var(--accent-color);
  color: #ffffff;
}


/* ==========================================================================
   GOLDEN GLOW & INTERACTIVE HOVER / SLIDE PHYSICS (HORIZON SIGNATURE)
   ========================================================================== */

.service-card-horizon,
.related-service-card,
.service-item-dir > div,
.pricing-card,
.why-us-card,
.stat-item,
.consultation-sticky-card,
.p-4.rounded-4.bg-white.border.shadow-sm {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Golden Amber Glow & Lift on Hover */
.service-card-horizon:hover,
.related-service-card:hover,
.service-item-dir > div:hover,
.pricing-card:hover,
.why-us-card:hover,
.stat-item:hover,
.p-4.rounded-4.bg-white.border.shadow-sm:hover {
  transform: translateY(-8px) scale(1.015) !important;
  border-color: #f59e0b !important; /* Golden Accent */
  box-shadow: 0 20px 45px rgba(221, 72, 20, 0.16), 0 0 28px rgba(245, 158, 11, 0.35) !important;
}

/* Click / Active Golden Pulse */
.service-card-horizon:active,
.related-service-card:active,
.service-item-dir > div:active,
.pricing-card:active,
.p-4.rounded-4.bg-white.border.shadow-sm:active {
  transform: translateY(-3px) scale(0.99) !important;
  border-color: #d97706 !important;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5), 0 0 35px rgba(245, 158, 11, 0.6) !important;
}

/* Golden Light Sweep Animation across cards */
.service-card-horizon::before,
.related-service-card::before,
.pricing-card::before,
.service-item-dir > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(245, 158, 11, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card-horizon:hover::before,
.related-service-card:hover::before,
.pricing-card:hover::before,
.service-item-dir > div:hover::before {
  left: 150%;
}

/* Related Service Card Custom Styling */
.related-service-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.btn-related-explore {
  background: transparent;
  color: var(--accent-color) !important;
  border: 1.5px solid var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease;
}

.related-service-card:hover .btn-related-explore,
.btn-related-explore:hover {
  background: linear-gradient(135deg, #dd4814, #f59e0b) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(221, 72, 20, 0.35);
  transform: translateY(-2px);
}

/* Interactive Tabs with Golden Accent Glow */
.service-nav-tabs .nav-link {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-nav-tabs .nav-link:hover {
  background: #fde68a !important;
  color: #92400e !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.service-nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #dd4814, #f59e0b) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(221, 72, 20, 0.35) !important;
}

/*--------------------------------------------------------------
# Universal Floating Buttons & Widget Layout (Zero Overlap Guaranteed)
--------------------------------------------------------------*/
.floating-whatsapp-btn {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  z-index: 1080 !important;
}

.wd-ai-btn {
  position: fixed !important;
  bottom: 78px !important;
  right: 20px !important;
  z-index: 1080 !important;
  position: fixed !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.wd-ai-btn .wd-dot {
  position: relative;
  display: inline-block;
}

@media (max-width: 480px) {
  .floating-whatsapp-btn {
    bottom: 16px !important;
    right: 16px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 24px !important;
  }

  .wd-ai-btn {
    bottom: 72px !important;
    right: 16px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .wd-ai-btn .wd-lbl {
    display: none !important;
  }

  .wd-ai-btn .wd-dot {
    position: absolute !important;
    top: 3px !important;
    right: 3px !important;
    width: 10px !important;
    height: 10px !important;
    border: 2px solid #ffffff !important;
    margin: 0 !important;
  }

  .wd-ai-panel {
    bottom: 130px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-height: calc(100vh - 150px) !important;
    z-index: 1082 !important;
  }

  .scroll-top {
    left: 16px !important;
    bottom: 16px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

.scroll-top {
  position: fixed !important;
  left: 20px !important;
  bottom: 20px !important;
  right: auto !important;
  z-index: 999 !important;
}
