@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

: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: "Quicksand", sans-serif;
   --nav-font: "Raleway", sans-serif;
}

:root {
   --background-color: #ffffff;
   --default-color: #555555;
   --heading-color: #1c1c1c;
   --accent-color: #1c1c1c;
   --action-color: #f1f4a6;
   --surface-color: #ffffff;
   --contrast-color: #ffffff;
   --warning-color: #f95e4d;
   --link-color: #2e65b6;
   --services-color: #ffffff;
   --card-color: #fafafa;
}

:root {
   --nav-color: #555555;
   --nav-hover-color: #1c1c1c;
   --nav-mobile-background-color: #fafafa;
   --nav-dropdown-background-color: #ffffff;
   --nav-dropdown-color: #8f8f8f;
   --nav-dropdown-hover-color: #1c1c1c;
}

.light-background {
   --background-color: #fafafa;
   --surface-color: #ffffff;
}

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

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

small {
   font-size: 14px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
   --background-color: rgba(255, 255, 255, 0);
   color: var(--default-color);
   background-color: var(--background-color);
   padding: 20px 0;
   transition: all 0.5s;
   z-index: 997;
}

.header .header-container {
   background: var(--surface-color);
   border-radius: 50px;
   padding: 5px 25px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
   background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
   line-height: 1;
   padding-left: 5px;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
   color: var(--contrast-color);
   background: var(--accent-color);
   font-size: 14px;
   padding: 8px 20px;
   margin: 0 0 0 30px;
   border-radius: 50px;
   transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
   color: var(--contrast-color);
   background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
   .header {
      padding-top: 10px;
   }

   .header .header-container {
      margin-left: 10px;
      margin-right: 10px;
      padding: 10px 5px 10px 15px;
   }

   .header .logo {
      order: 1;
   }

   .header .btn-getstarted {
      order: 2;
      margin: 0 10px 0 0;
      padding: 6px 15px;
   }

   .header .navmenu {
      order: 3;
   }
}

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

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

   .navmenu li {
      position: relative;
   }

   .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
   }

   .navmenu>ul>li:last-child {
      padding-right: 0;
   }

   .navmenu a,
   .navmenu a:focus {
      color: var(--nav-color);
      padding: 0 2px;
      font-size: 17px;
      font-family: var(--nav-font);
      font-weight: 500;
      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: 1px;
      bottom: -8px;
      left: 0;
      background-color: var(--nav-dropdown-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:last-child a {
      padding-right: 0;
   }

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

   .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
   }

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

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

   .navmenu .dropdown ul a i {
      font-size: 13px;
   }

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

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

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

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

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

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

   .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
   }

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

   .navmenu a i,
   .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   }

   .navmenu a i:hover,
   .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
   }

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

   .navmenu .active i,
   .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
   }

   .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
   }

   .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
   }

   .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
   }

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

   .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
   }

   .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
   }

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

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
   .extended-dropdown-2 ul {
      min-width: 300px;
      padding: 12px;
      border-radius: 14px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(10px);
      background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   }

   .extended-dropdown-2 ul li {
      min-width: auto;
      border-bottom: none;
   }

   .extended-dropdown-2 ul li:not(:last-child) {
      margin-bottom: 6px;
   }

   .extended-dropdown-2 ul a {
      padding: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
      color: var(--nav-dropdown-color);
      transition: all 0.25s ease;
      border-radius: 10px;
      background-color: transparent;
      position: relative;
   }

   .extended-dropdown-2 ul a .menu-item-content {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
   }

   .extended-dropdown-2 ul a .menu-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
   }

   .extended-dropdown-2 ul a .menu-icon::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
      opacity: 0.15;
      z-index: -1;
      transition: all 0.3s ease;
   }

   .extended-dropdown-2 ul a .menu-icon i {
      font-size: 18px;
      color: var(--accent-color);
      margin: 0;
      transition: all 0.3s ease;
   }

   .extended-dropdown-2 ul a .menu-text {
      display: flex;
      flex-direction: column;
      flex: 1;
   }

   .extended-dropdown-2 ul a .menu-text .menu-title {
      font-weight: 600;
      font-size: 15px;
      margin-bottom: 3px;
      color: var(--nav-dropdown-color);
      transition: color 0.3s ease;
   }

   .extended-dropdown-2 ul a .menu-text .menu-description {
      font-size: 13px;
      color: color-mix(in srgb, var(--nav-dropdown-color), transparent 10%);
      font-weight: 400;
      transition: color 0.3s ease;
   }

   .extended-dropdown-2 ul a .menu-badge {
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 600;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
      color: var(--accent-color);
      margin-left: 12px;
      flex-shrink: 0;
      transition: all 0.3s ease;
   }

   .extended-dropdown-2 ul a .menu-badge.hot {
      background-color: color-mix(in srgb, #ff5722, transparent 85%);
      color: #ff5722;
   }

   .extended-dropdown-2 ul a .menu-badge.updates {
      background-color: color-mix(in srgb, #4caf50, transparent 85%);
      color: #4caf50;
      min-width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 8px;
   }

   .extended-dropdown-2 ul a:hover,
   .extended-dropdown-2 .menu-item-active {
      background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   }

   .extended-dropdown-2 ul a:hover .menu-icon {
      transform: translateY(-2px);
   }

   .extended-dropdown-2 ul a:hover .menu-icon::before {
      opacity: 0, 3;
      box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
   }

   .extended-dropdown-2 ul a:hover .menu-icon i {
      color: color-mix(in srgb, var(--accent-color), #000000 10%);
   }

   .extended-dropdown-2 ul a:hover .menu-text .menu-title {
      color: var(--nav-dropdown-hover-color);
   }

   .extended-dropdown-2 ul a:hover .menu-text .menu-description {
      color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
   }

   .extended-dropdown-2 ul a:hover .menu-badge {
      transform: scale(1.05);
   }

   .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
      background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
   }

   .extended-dropdown-2 ul a:hover .menu-badge.hot {
      background-color: color-mix(in srgb, #ff5722, transparent 75%);
   }

   .extended-dropdown-2 ul a:hover .menu-badge.updates {
      background-color: color-mix(in srgb, #4caf50, transparent 75%);
   }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
   .extended-dropdown-2 ul {
      background-color: var(--nav-mobile-background-color);
      border-radius: 10px;
      padding: 10px;
   }

   .extended-dropdown-2 ul li:not(:last-child) {
      margin-bottom: 5px;
   }

   .extended-dropdown-2 ul a {
      padding: 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
   }

   .extended-dropdown-2 ul a .menu-item-content {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
   }

   .extended-dropdown-2 ul a .menu-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
   }

   .extended-dropdown-2 ul a .menu-icon::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
      opacity: 0.15;
      z-index: -1;
   }

   .extended-dropdown-2 ul a .menu-icon i {
      font-size: 16px;
      color: var(--accent-color);
      margin: 0;
   }

   .extended-dropdown-2 ul a .menu-text {
      display: flex;
      flex-direction: column;
      flex: 1;
   }

   .extended-dropdown-2 ul a .menu-text .menu-title {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 2px;
   }

   .extended-dropdown-2 ul a .menu-text .menu-description {
      font-size: 12px;
      color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
   }

   .extended-dropdown-2 ul a .menu-badge {
      padding: 3px 8px;
      font-size: 10px;
      font-weight: 600;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
      color: var(--accent-color);
      margin-left: 10px;
      flex-shrink: 0;
   }

   .extended-dropdown-2 ul a .menu-badge.hot {
      background-color: color-mix(in srgb, #ff5722, transparent 85%);
      color: #ff5722;
   }

   .extended-dropdown-2 ul a .menu-badge.updates {
      background-color: color-mix(in srgb, #4caf50, transparent 85%);
      color: #4caf50;
      min-width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 6px;
   }

   .extended-dropdown-2 ul a:hover,
   .extended-dropdown-2 ul a:active {
      background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   }

   .extended-dropdown-2 ul a:hover .menu-text .menu-title,
   .extended-dropdown-2 ul a:active .menu-text .menu-title {
      color: var(--nav-dropdown-hover-color);
   }

   .extended-dropdown-2 ul .active {
      background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   }

   .extended-dropdown-2 ul .active .menu-title {
      color: var(--nav-dropdown-hover-color);
   }
}

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

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

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

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

.footer .footer-about .logo span {
   color: var(--heading-color);
   font-family: var(--heading-font);
   font-size: 22px;
   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: 18px;
   font-weight: 500;
   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-links table {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.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 .footer-directions p {
   margin-bottom: 20px;
   line-height: 1.6;
}

.footer .footer-directions form {
   margin-top: 25px;
}

.footer .footer-directions form .position-relative {
   display: flex;
   margin-bottom: 15px;
}

.footer .footer-directions form input[type=text] {
   height: 44px;
   border-radius: 8px;
   padding: 10px 15px;
   width: 100%;
   color: var(--default-color);
   background-color: var(--surface-color);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
   font-size: 14px;
}

.footer .footer-directions form input[type=text]:focus {
   outline: none;
   border-color: var(--accent-color);
}

.footer .footer-directions form input[type=text]::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-directions form .btn-directions {
   position: absolute;
   right: 5px;
   top: 5px;
   bottom: 5px;
   border: 0;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   transition: 0.3s;
   border-radius: 6px;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 34px;
}

.footer .footer-directions form .btn-directions:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-directions form .btn-directions i {
   font-size: 18px;
}

.footer .footer-bottom {
   padding-top: 25px;
}

.footer .footer-bottom .copyright p {
   margin-bottom: 0;
   font-size: 13px;
}

.footer .footer-bottom .credits {
   padding-top: 5px;
}

.footer .footer-bottom .legal-links {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: flex-end;
}

@media (max-width: 767.98px) {
   .footer .footer-bottom .legal-links {
      justify-content: center;
      margin-bottom: 15px;
   }

   .footer .footer-bottom .copy-text p {
      text-align: center;
   }
}

.footer .footer-bottom .legal-links a {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-size: 13px;
   transition: color 0.3s ease;
}

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

/*--------------------------------------------------------------
# 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);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 160px 0 80px 0;
   text-align: center;
   position: relative;
}

.page-title h1 {
   font-size: 42px;
   font-weight: 500;
   margin-bottom: 10px;
}

.page-title .breadcrumbs ol li a {
   font-weight: 500;
   color: var(--default-color);
   text-decoration: none;
   transition: 0.3s;
}

.page-title .breadcrumbs ol li a:hover {
   color: color-mix(in srgb, var(--heading-color), transparent 25%);
   text-decoration: none;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
   text-align: center;
   padding-bottom: 60px;
   position: relative;
}

.section-title h2 {
   font-size: 32px;
   font-weight: 500;
   margin-bottom: 20px;
   padding-bottom: 20px;
   position: relative;
}

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

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title-two {
   text-align: center;
   padding-bottom: 0px;
   position: relative;
}

.section-title-two h2 {
   font-size: 32px;
   font-weight: 500;
   margin-bottom: 20px;
   padding-bottom: 20px;
   position: relative;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
   position: relative;
   padding-top: 160px;
   background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
   pointer-events: none;
}

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

.hero .hero-content h1 {
   font-family: var(--heading-font);
   font-size: 3.5rem;
   font-weight: 300;
   line-height: 1.2;
   margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
   color: var(--accent-color);
}

.hero .hero-content .hero-buttons .btn-agenda i {
   padding-right: 6px;
   font-size: 16px;
}

.hero .hero-content .hero-buttons .btn-agenda {
   background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
   color: color-mix(in srgb, var(--default-color) 90%, transparent);
   font-weight: 500;
   padding: 10px 30px;
   border-radius: 50px;
   transition: all 0.3s ease;
   border: 2px solid var(--default-color);
   position: relative;
}

.hero .hero-content .hero-buttons .btn-agenda:hover {
   background-color: var(--contrast-color);
   color: var(--accent-color);
}

.intro .action-area {
   display: flex;
   align-items: center;
   gap: 32px;
   flex-wrap: wrap;
}

@media (max-width: 576px) {
   .intro .action-area {
      gap: 24px;
   }
}

@media (max-width: 992px) {
   .hero .hero-content {
      text-align: center;
      margin-bottom: 3rem;
   }

   .hero .hero-content h1 {
      font-size: 2.5rem;
   }

   .hero .hero-content .hero-buttons {
      justify-content: center;
   }
}

@media (max-width: 575px) {
   .hero .hero-content h1 {
      font-size: 2rem;
   }
}

.hero .company-badge {
   display: inline-flex;
   align-items: center;
   padding: 0.5rem 1rem;
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
   border-radius: 50px;
   color: var(--accent-color);
   font-weight: 500;
}

.hero .company-badge i {
   font-size: 1.25rem;
}

.hero .btn-primary {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: var(--contrast-color);
   padding: 0.75rem 2.5rem;
   border-radius: 50px;
   font-weight: 500;
   transition: all 0.3s ease;
}

.hero .btn-primary:hover {
   background-color: color-mix(in srgb, var(--accent-color), black 20%);
   border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
   color: var(--heading-color);
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
}

.hero .btn-link:hover {
   color: var(--accent-color);
}

.hero .btn-link i {
   font-size: 1.5rem;
   vertical-align: middle;
}

.hero .hero-image {
   position: relative;
   text-align: center;
   z-index: 1;
}

.hero .hero-image img {
   max-width: 100%;
   height: auto;
}

.hero .customers-badge {
   position: absolute;
   bottom: 10px;
   right: 30px;
   background-color: var(--surface-color);
   padding: 1rem;
   border-radius: 10px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
   max-width: 300px;
   animation: float-badge 3s ease-in-out infinite;
   will-change: transform;
}

.hero .customers-badge .customer-avatars {
   display: flex;
   align-items: center;
   margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
   width: 35px;
   height: 35px;
   border-radius: 50%;
   border: 2px solid var(--surface-color);
   margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
   margin-left: 0;
}

.hero .customers-badge .avatar.more {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   font-weight: 600;
}

.hero .customers-badge p {
   font-size: 16px;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .customers-badge h5 {
   margin: 0 auto 6px;
   text-align: center;
}

@media (max-width: 992px) {
   .hero .customers-badge {
      position: static;
      margin: 1rem auto;
      max-width: 250px;
   }
}

.hero .stats-row {
   position: relative;
   z-index: 1;
   margin-top: 5rem;
   background-color: var(--surface-color);
   border-radius: 20px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   padding-bottom: 1.3rem;
}

.hero .stat-item {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1rem;
}

.hero .stat-item .stat-icon {
   flex-shrink: 0;
   width: 64px;
   height: 64px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
   border-radius: 12px;
   transition: 0.3s;
}

.hero .stat-item .stat-icon i {
   font-size: 1.7rem;
   color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
   background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
   color: var(--contrast-color);
}

.hero .stat-item .stat-content {
   flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
   font-size: 1.35rem;
   margin-bottom: 0.25rem;
   font-weight: 600;
}

.hero .stat-item .stat-content p {
   font-size: 0.975rem;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   margin: 0;
}

@media (max-width: 575px) {
   .hero .stat-item {
      padding: 1.5rem;
   }
}

@keyframes float-badge {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0);
   }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
   color: var(--accent-color);
   font-weight: 600;
   margin-bottom: 1rem;
   display: inline-block;
}

.about .about-title {
   font-size: 1.75rem;
   margin-bottom: 1rem;
   line-height: 1.2;
   font-weight: 500;
}

@media (max-width: 992px) {
   .about .about-title {
      font-size: 2rem;
   }
}

.about .about-description {
   margin-bottom: 2rem;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
   margin-bottom: 1rem;
}

.about .feature-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.about .feature-list li {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   margin-bottom: .6rem;
   font-size: 1rem;
}

.about .feature-list li i {
   color: var(--accent-color);
   font-size: 1.25rem;
}

.about .profile .profile-image {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
}

.about .profile .profile-name {
   font-size: 1.125rem;
   margin: 0;
}

.about .profile .profile-position {
   color: var(--accent-color);
   margin: 0;
   font-size: 0.875rem;
}

.about .contact-info {
   padding: 1rem 1.5rem;
   background-color: var(--surface-color);
   border-radius: 0.5rem;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
   color: var(--accent-color);
   font-size: 1.5rem;
}

.about .contact-info .contact-label {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-size: 0.875rem;
   margin: 0;
}

.about .contact-info .contact-number {
   font-weight: 600;
   margin: 0;
}

.about .image-wrapper {
   position: relative;
}

@media (max-width: 992px) {
   .about .image-wrapper {
      padding-left: 0;
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
   }
}

@media (max-width: 992px) {
   .about .image-wrapper .images {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
   }
}

@media (max-width: 992px) {
   .about .image-wrapper .main-image {
      margin-left: 0;
   }
}

.about .image-wrapper .small-image {
   position: absolute;
   top: 20%;
   left: -10%;
   width: 45%;
   border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
   .about .image-wrapper .small-image {
      position: static;
      width: 100%;
      margin: 0 auto;
      border: 0;
   }
}

.about .image-wrapper .experience-badge {
   position: absolute;
   bottom: 5%;
   right: 5%;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   padding: 1.5rem;
   border-radius: 0.5rem;
   text-align: center;
   min-width: 200px;
   animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
   .about .image-wrapper .experience-badge {
      position: static;
      width: fit-content;
      margin: 0 auto;
   }
}

.about .image-wrapper .experience-badge h3 {
   color: var(--contrast-color);
   font-size: 2.5rem;
   margin: 0;
   line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
   font-size: 1rem;
   display: inline-block;
   margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
   margin: 0.5rem 0 0;
   font-size: 0.875rem;
}

@keyframes experience-float {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0);
   }
}

.about .card-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--card-color);
  box-shadow: 0 0.325rem 0.65rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.about .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.about .card-item .card-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.about .card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.about .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about .image-wrapper img {
  border-radius: 1rem;
}

.about .resource-card {
  position: relative;
  padding: 32px 28px 16px;
  background-color: var(--card-color);
  border-radius: 12px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 88%);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.about .resource-card:hover {
  border-bottom-color: var(--accent-color);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 76%);
}

.about .resource-card .resource-number {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 73%);
  line-height: 1;
  pointer-events: none;
}

.about .resource-card .resource-icon {
  top: -10px;
  width: 54px;
  height: 54px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about .resource-card:hover .resource-icon {
   background-color: var(--accent-color);
}

.about .resource-card:hover .resource-icon i {
   color: var(--contrast-color);
}

.about .resource-card .resource-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.about .resource-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.about .resource-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.about .resource-card .resource-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.about .resource-card .resource-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
   border: 0;
   background-color: color-mix(in srgb, var(--default-color), transparent 96%);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50px;
   padding: 6px;
   width: auto;
}

.features .nav-item {
   margin: 0;
   padding: 0 5px 0 0;
}

.features .nav-item:last-child {
   padding-right: 0;
}

.features .nav-link {
   background-color: none;
   color: var(--heading-color);
   padding: 10px 30px;
   transition: 0.3s;
   border-radius: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   height: 100%;
   border: 0;
   margin: 0;
}

@media (max-width: 468px) {
   .features .nav-link {
      padding: 8px 20px;
   }
}

.features .nav-link i {
   padding-right: 15px;
   font-size: 48px;
}

.features .nav-link h4 {
   font-size: 14px;
   font-weight: 500;
   margin: 0;
}

.features .nav-link:hover {
   border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
   color: var(--accent-color);
}

.features .nav-link.active {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
}

.features .nav-link.active h4 {
   color: var(--contrast-color);
}

.features .tab-content {
   margin-top: 30px;
}

.features .tab-pane h3 {
   color: var(--heading-color);
   font-weight: 500;
   font-size: 32px;
   position: relative;
   margin-bottom: 20px;
   padding-bottom: 20px;
}

.features .tab-pane h3:after {
   content: "";
   position: absolute;
   display: block;
   width: 60px;
   height: 3px;
   background: var(--accent-color);
   left: 0;
   bottom: 0;
}

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

.features .tab-pane ul li {
   padding-top: 10px;
}

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

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

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
   --default-color: #555;
   --heading-color: #333;
}

.features-cards .feature-box {
   height: 100%;
   padding: 40px 30px;
   border-radius: 10px;
}

.features-cards .feature-box i {
   font-size: 44px;
   display: inline-block;
   line-height: 0;
   color: var(--accent-color);
   margin-bottom: 20px;
}

.features-cards .feature-box h4 {
   font-size: 20px;
   font-weight: 500;
   margin: 0 0 10px 0;
}

.features-cards .feature-box p {
   font-size: 15px;
   margin-bottom: 0;
}

.features-cards .feature-box.orange {
   background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
   color: #edb86e;
}

.features-cards .feature-box.blue {
   background-color: #deedfd;
}

.features-cards .feature-box.blue i {
   color: #20a5f8;
}

.features-cards .feature-box.green {
   background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
   color: #48c88a;
}

.features-cards .feature-box.red {
   background-color: #fdeded;
}

.features-cards .feature-box.red i {
   color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

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

.features-2 .feature-item .feature-content h3 {
   font-size: 20px;
   font-weight: 600;
   margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   font-size: 15px;
   margin-bottom: 0;
}

.features-2 .phone-mockup {
   position: relative;
   padding: 30px 0;
}

.features-2 .phone-mockup img {
   max-width: 300px;
   height: auto;
   filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
   .features-2 .feature-item {
      text-align: center !important;
      margin-bottom: 2rem;
   }

   .features-2 .feature-item .d-flex {
      flex-direction: column;
      text-align: center;
      justify-content: center !important;
   }

   .features-2 .phone-mockup {
      margin: 3rem 0;
   }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
   background: var(--accent-color);
   color: var(--contrast-color);
   position: relative;
   overflow: hidden;
   border-radius: 1rem;
   padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
   color: var(--contrast-color);
   position: relative;
   z-index: 2;
}

.call-to-action .btn-cta {
   background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
   color: var(--contrast-color);
   padding: 12px 40px;
   border-radius: 50px;
   transition: all 0.3s ease;
   border: 2px solid var(--contrast-color);
   position: relative;
   z-index: 2;
}

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

.call-to-action .shape {
   position: absolute;
   pointer-events: none;
   z-index: 1;
}

.call-to-action .shape svg {
   width: 100%;
   height: 100%;
}

.call-to-action .shape svg path {
   fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
   width: 300px;
   height: 300px;
   top: -100px;
   right: -50px;
   opacity: 0.1;
   transform: rotate(45deg);
   animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
   width: 200px;
   height: 200px;
   bottom: -50px;
   left: -50px;
   opacity: 0.15;
   transform: rotate(-15deg);
   animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
   width: 150px;
   height: 150px;
   top: 20%;
   right: 15%;
   opacity: 0.08;
   transform: rotate(15deg);
}

.call-to-action .dots {
   position: absolute;
   pointer-events: none;
   z-index: 1;
   color: var(--contrast-color);
}

.call-to-action .dots svg {
   width: 100%;
   height: 100%;
}

.call-to-action .dots-1 {
   width: 200px;
   height: 200px;
   top: -30px;
   left: 10%;
   opacity: 0.1;
   transform: rotate(15deg);
   animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
   width: 150px;
   height: 150px;
   bottom: 20px;
   right: 15%;
   opacity: 0.15;
   transform: rotate(-10deg);
}

@keyframes shapes-float {

   0%,
   100% {
      transform: scale(0.8) rotate(45deg) translateY(0);
   }

   50% {
      transform: scale(0.8) rotate(45deg) translateY(-20px);
   }
}

@media (max-width: 992px) {
   .call-to-action .container {
      padding: 3rem 1.5rem;
   }

   .call-to-action .shape-1 {
      width: 200px;
      height: 200px;
   }

   .call-to-action .shape-2 {
      width: 150px;
      height: 150px;
   }

   .call-to-action .shape-3 {
      width: 100px;
      height: 100px;
   }

   .call-to-action .dots-1 {
      width: 150px;
      height: 150px;
   }

   .call-to-action .dots-2 {
      width: 120px;
      height: 120px;
   }

   .call-to-action .dots-3 {
      width: 80px;
      height: 80px;
   }
}

@media (max-width: 575px) {
   .call-to-action .container {
      border-radius: 0;
   }
}

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

.call-to-action-2 .container {
   background: var(--accent-color);
   color: var(--contrast-color);
   position: relative;
   overflow: hidden;
   border-radius: 1rem;
   padding: 4rem 2rem;
   z-index: 3;
}

.call-to-action-2 .content h3,
.call-to-action-2 .content p {
   color: var(--contrast-color);
   position: relative;
}

.call-to-action-2 h3 {
   font-size: 28px;
   font-weight: 500;
}

.call-to-action-2 .cta-link a {
   color: var(--action-color) !important;
   text-decoration: none;
   transition: 0.3s;
}

.call-to-action-2 .cta-link a:hover {
   color: color-mix(in srgb, var(--action-color), transparent 25%) !important;
   text-decoration: none;
}

.call-to-action-2 .btn-cta {
   background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
   color: var(--contrast-color) !important;
   padding: 12px 40px;
   border-radius: 50px;
   transition: all 0.3s ease;
   border: 2px solid var(--contrast-color);
   position: relative;
   z-index: 2;
}

.call-to-action-2 .btn-cta:hover {
   background-color: var(--contrast-color);
   color: var(--accent-color) !important;
}



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

.call-to-action-3 .container {
   background: var(--accent-color);
   color: var(--contrast-color);
   position: relative;
   overflow: hidden;
   border-radius: 1rem;
   padding: 1rem 2rem;
   z-index: 3;
}

.call-to-action-3 .inner-container {
   background: color-mix(in srgb, var(--default-color), transparent 25%);
   color: var(--contrast-color);
   position: relative;
   overflow: hidden;
   border-radius: 1rem;
   padding: 1rem;
   margin: 1rem auto;
}

.call-to-action-3 .content h3,
.call-to-action-3 .content p {
   color: var(--contrast-color);
   position: relative;
}

.call-to-action-3 h3 {
   font-size: 28px;
   font-weight: 500;
}

.call-to-action-3 .cta-link a {
   color: var(--action-color) !important;
   text-decoration: none;
   transition: 0.3s;
}

.call-to-action-3 .cta-link a:hover {
   color: color-mix(in srgb, var(--action-color), transparent 25%) !important;
   text-decoration: none;
}

.call-to-action-3 .btn-cta {
   background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
   color: var(--contrast-color) !important;
   padding: 12px 40px;
   border-radius: 50px;
   transition: all 0.3s ease;
   border: 2px solid var(--contrast-color);
   position: relative;
   z-index: 2;
}

.call-to-action-3 .btn-cta:hover {
   background-color: var(--contrast-color);
   color: var(--accent-color) !important;
}

.call-to-action-3 .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .call-to-action-3 .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.call-to-action-3 .stats-grid .stat-card {
  background: color-mix(in srgb, var(--default-color), transparent 25%);
  padding: 28px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.call-to-action-3 .stats-grid .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action-3 .stats-grid .stat-card .stat-icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 56px;
  background: color-mix(in srgb, var(--contrast-color), transparent 78%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-3 .stats-grid .stat-card .stat-icon-wrap i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.call-to-action-3 .stats-grid .stat-card .stat-info .stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--contrast-color);
  line-height: 1.2;
  margin-bottom: 4px;
}

.call-to-action-3 .stats-grid .stat-card .stat-info .stat-title {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 58%);
}

/*--------------------------------------------------------------
# CTA Block
--------------------------------------------------------------*/

.call-to-action-4 .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 25%));
  border-radius: 16px;
  padding: 40px 44px;
}

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

.call-to-action-4 .cta-banner .cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-to-action-4 .cta-banner .cta-content a {
  color: yellow;
}

.call-to-action-4 .cta-banner .cta-content a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}

@media (max-width: 576px) {
  .call-to-action-4 .cta-banner .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

.call-to-action-4 .cta-banner .cta-content>i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
  flex-shrink: 0;
}

.call-to-action-4 .cta-banner .cta-content h4 {
  color: var(--contrast-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

.call-to-action-4 .cta-banner .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 35%);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.call-to-action-4 .cta-banner .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--contrast-color);
  color: var(--accent-color);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.call-to-action-4 .cta-banner .btn-browse:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action-4 .cta-banner .btn-browse i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.call-to-action-4 .cta-banner .btn-browse:hover i {
  transform: translateX(3px);
}


/*--------------------------------------------------------------
# Google Maps Section
--------------------------------------------------------------*/
.map-to-action {
   padding: 60px 0;
   background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 50%, var(--background-color) 100%);
}

.map-to-action .cta-wrapper {
   position: relative;
   background-color: var(--surface-color);
   border-radius: 24px;
   padding: 4rem 3rem;
   box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 93%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
   overflow: hidden;
}

.map-to-action .background-pattern {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 1;
}

.map-to-action .background-pattern .wave {
   position: absolute;
   top: 0;
   right: 0;
   width: 50%;
   height: 100%;
   background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 30%, color-mix(in srgb, var(--accent-color), transparent 98%) 70%, transparent 100%);
   transform: skewX(-15deg) translateX(20%);
}

.map-to-action .background-pattern .geometric-shape {
   position: absolute;
   border-radius: 50%;
}

.map-to-action .background-pattern .geometric-shape.shape-1 {
   width: 120px;
   height: 120px;
   background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
   top: 5%;
   left: 10%;
   animation: floatRotate 8s ease-in-out infinite;
}

.map-to-action .background-pattern .geometric-shape.shape-2 {
   width: 80px;
   height: 80px;
   background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
   bottom: 10%;
   right: 15%;
   animation: floatRotate 6s ease-in-out infinite reverse;
}

.map-to-action .content-section {
   position: relative;
   z-index: 2;
}

.map-to-action .content-section .label-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 10%));
   color: var(--contrast-color);
   padding: 0.75rem 1.5rem;
   border-radius: 30px;
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 2rem;
   box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.map-to-action .content-section .label-badge i {
   font-size: 1.5rem;
}

.map-to-action .content-section h2 {
   font-size: 2.75rem;
   font-weight: 800;
   color: var(--heading-color);
   line-height: 1.1;
   margin-bottom: 1.5rem;
}

.map-to-action .content-section p {
   font-size: 1.125rem;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
   line-height: 1.7;
   margin-bottom: 2.5rem;
}

.map-to-action .features-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1rem;
   margin-bottom: 2.5rem;
}

.map-to-action .features-grid .feature-item {
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.map-to-action .features-grid .feature-item .feature-icon {
   color: var(--accent-color);
   font-size: 1.25rem;
}

.map-to-action .features-grid .feature-item span {
   font-weight: 500;
   color: var(--heading-color);
   font-size: 0.95rem;
}

.map-to-action .cta-actions {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.map-to-action .cta-actions input {
   transition: all 0.3s ease;
   border-radius: 12px;
   padding: 16px 10px; line-height: 20px;
   width: 100%;
   margin: 10px 0;
}

.map-to-action .cta-actions .form-control:focus,
.map-to-action .cta-actions .form-select:focus {
   box-shadow: none;
   border-color: var(--accent-color);
}

.map-to-action .cta-actions .form-control::placeholder,
.map-to-action .cta-actions .form-select::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.map-to-action .cta-actions .btn {
   transition: all 0.3s ease;
   font-weight: 600;
   border-radius: 12px;
}

.map-to-action .cta-actions .btn.btn-cta-primary {
   background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 15%));
   color: var(--contrast-color);
   padding: 1rem 2.5rem;
   font-size: 1.1rem;
   border: none;
   box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 85%), 0 0 0 0 var(--accent-color);
}

.map-to-action .cta-actions .btn.btn-cta-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-color), transparent 80%), 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.map-to-action .cta-actions .btn.btn-cta-secondary {
   background: transparent;
   color: var(--accent-color);
   border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
   padding: 0.75rem 1.5rem;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
}

.map-to-action .cta-actions .btn.btn-cta-secondary:hover {
   background: color-mix(in srgb, var(--accent-color), transparent 95%);
   border-color: var(--accent-color);
}

.map-to-action .cta-actions .btn.btn-cta-secondary i {
   font-size: 1.2rem;
}

.map-to-action .cta-actions .secondary-action {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.map-to-action .cta-actions .secondary-action .note {
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   font-style: italic;
}

.map-to-action .image-section {
   position: relative;
   z-index: 2;
   display: flex;
   justify-content: center;
   align-items: center;
}

.map-to-action .image-section .main-image-wrapper {
   position: relative;
   max-width: 450px;
}

.map-to-action .image-section .main-image-wrapper .main-img {
   border-radius: 20px;
   position: relative;
   z-index: 2;
}

.map-to-action .image-section .main-image-wrapper .overlay-circle {
   position: absolute;
   border-radius: 50%;
   z-index: 1;
}

.map-to-action .image-section .main-image-wrapper .overlay-circle.circle-1 {
   width: 150px;
   height: 150px;
   background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
   top: -20px;
   right: -30px;
   animation: pulse 4s ease-in-out infinite;
}

.map-to-action .image-section .main-image-wrapper .overlay-circle.circle-2 {
   width: 100px;
   height: 100px;
   background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
   bottom: -15px;
   left: -25px;
   animation: pulse 3s ease-in-out infinite;
}

.map-to-action .image-section .stats-card {
   position: absolute;
   background: var(--surface-color);
   border-radius: 16px;
   padding: 1rem 1.25rem;
   display: flex;
   align-items: center;
   gap: 0.75rem;
   box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
   z-index: 3;
}

.map-to-action .image-section .stats-card .stat-icon {
   width: 45px;
   height: 45px;
   background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
   color: var(--contrast-color);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
   font-size: 1.25rem;
}

.map-to-action .image-section .stats-card .stat-content h6 {
   font-size: 1.05rem;
   font-weight: 500;
   color: var(--heading-color);
   margin: 0;
   line-height: 1;
}

.map-to-action .image-section .stats-card .stat-content span {
   font-size: 1rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-weight: 500;
}

.map-to-action .image-section .stats-card.card-1 {
   top: 15%;
   left: -20px;
   animation: float1 6s ease-in-out infinite;
}

.map-to-action .image-section .stats-card.card-2 {
   bottom: 20%;
   right: -25px;
   animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

   0%,
   100% {
      transform: translateY(0) rotate(0deg);
   }

   50% {
      transform: translateY(-15px) rotate(180deg);
   }
}

@keyframes pulse {

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

   50% {
      transform: scale(1.1);
      opacity: 0.4;
   }
}

@keyframes float1 {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-12px);
   }
}

@keyframes float2 {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(8px);
   }
}

@media (max-width: 991.98px) {
   .map-to-action {
      padding: 80px 0;
   }

   .map-to-action .cta-wrapper {
      padding: 3rem 2rem;
   }

   .map-to-action .content-section h2 {
      font-size: 2.25rem;
   }

   .map-to-action .content-section p {
      font-size: 1rem;
   }

   .map-to-action .features-grid {
      grid-template-columns: 1fr;
      gap: 0.75rem;
   }

   .map-to-action .cta-actions .btn.btn-cta-primary {
      width: 100%;
   }

   .map-to-action .cta-actions .secondary-action {
      justify-content: center;
      flex-direction: column;
      gap: 0.5rem;
   }

   .map-to-action .image-section {
      margin-top: 3rem;
   }

   .map-to-action .image-section .stats-card.card-1 {
      top: 10%;
      left: 0;
   }

   .map-to-action .image-section .stats-card.card-2 {
      bottom: 10%;
      right: 0;
   }
}

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

   .map-to-action .cta-wrapper {
      padding: 2rem 1.5rem;
   }

   .map-to-action .content-section h2 {
      font-size: 1.875rem;
   }

   .map-to-action .content-section .label-badge {
      padding: 0.6rem 1.25rem;
      font-size: 0.85rem;
   }

   .map-to-action .stats-card {
      padding: 0.75rem 1rem;
   }

   .map-to-action .stats-card .stat-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
   }

   .map-to-action .stats-card .stat-content h6 {
      font-size: 1.1rem;
   }

   .map-to-action .stats-card .stat-content span {
      font-size: 0.8rem;
   }

   .map-to-action .overlay-circle {
      transform: scale(0.8);
   }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
   opacity: 0.5;
   transition: 0.3s;
   filter: grayscale(100);
}

.clients .swiper-slide img:hover {
   filter: none;
   opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
   background-color: var(--surface-color);
   box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
   padding: 30px;
   position: relative;
   height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
   width: 90px;
   border-radius: 50px;
   border: 6px solid var(--background-color);
   float: left;
   margin: 0 10px 0 0;
}

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

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

.testimonials .testimonial-item .stars {
   margin: 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
   color: color-mix(in srgb, var(--accent-color), transparent 50%);
   font-size: 26px;
   line-height: 0;
}

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

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

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

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

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

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

.stats .stats-item p {
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   padding: 0;
   margin: 0;
   font-family: var(--heading-font);
   font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
   height: 100%;
   padding: 30px;
   background: var(--surface-color);
   border-radius: 10px;
   transition: all 0.3s ease;
}

.services .service-card:hover {
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

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

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

.services .service-card .icon {
   width: 60px;
   height: 60px;
   margin-right: 30px;
   background: color-mix(in srgb, var(--accent-color), transparent 90%);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 8px;
   color: var(--accent-color);
   font-size: 28px;
   transition: all 0.3s ease;
   line-height: 1;
}

.services .service-card h3 {
   font-size: 22px;
   font-weight: 500;
   margin-bottom: 15px;
}

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

.services .service-card .read-more {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--accent-color);
   font-weight: 500;
   transition: all 0.3s ease;
}

.services .service-card .read-more i {
   font-size: 14px;
   transition: transform 0.3s ease;
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
   height: 100%;
   padding: 2rem;
   background: var(--surface-color);
   border-radius: 1rem;
   transition: all 0.3s ease;
   position: relative;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card:hover {
   box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
   background: color-mix(in srgb, var(--accent-color), transparent 10%);
   color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
   color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .begin,
.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
   color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
   color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
   color: var(--contrast-color);
}

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

.pricing .pricing-card.popular .btn-light:hover {
   background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
   position: absolute;
   top: -12px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--contrast-color);
   color: var(--accent-color);
   padding: 0.5rem 1rem;
   border-radius: 2rem;
   font-size: 0.875rem;
   font-weight: 600;
   box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1rem;
}

.pricing .pricing-card h4 {
   font-weight: 600;
}

.pricing .pricing-card .price {
   margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .begin {
   font-size: .85rem;
   font-weight: 300;
   vertical-align: top;
   line-height: 1;
}

.pricing .pricing-card .price .currency {
   font-size: 1.5rem;
   font-weight: 600;
   vertical-align: top;
   line-height: 1;
}

.pricing .pricing-card .price .amount {
   font-size: 3.5rem;
   font-weight: 500;
   line-height: 1;
}

.pricing .pricing-card .price .add:after {
   content: "+";
   font-size: 2.5rem;
   font-weight: 400;
   line-height: 1;
}

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

.pricing .pricing-card .description {
   margin-bottom: 2rem;
   font-size: 0.975rem;
}

.pricing .pricing-card h4 {
   font-size: 1.125rem;
   margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
   list-style: none;
   padding: 0;
   margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
   display: flex;
   align-items: center;
   margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
   color: var(--accent-color);
   margin-right: 0.75rem;
   font-size: 1.25rem;
}

.pricing .pricing-card .features-list li span {
   padding-left: 8px !important;
}

.pricing .pricing-card .features-list li span i {
   font-size: 14px !important;
}

.pricing .pricing-card .btn {
   width: 100%;
   padding: 0.75rem 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   font-weight: 500;
   border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
   background: var(--accent-color);
   border: none;
   color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
   background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
   font-size: 2.5rem;
   font-weight: 500;
   margin-bottom: 1rem;
   color: var(--heading-color);
}

.faq .faq-description {
   font-size: 1rem;
   color: var(--default-color);
   margin-bottom: 2rem;
}

.faq .faq-arrow {
   color: var(--accent-color);
}

.faq .faq-container .faq-item {
   background-color: var(--surface-color);
   position: relative;
   padding: 20px;
   margin-bottom: 15px;
   border-radius: 10px;
   overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   padding: 3rem;
   border-radius: 1rem;
   height: 100%;
}

.contact .info-box h3 {
   color: var(--contrast-color);
   font-size: 2rem;
   margin-bottom: 1rem;
}

.contact .info-box .section-badge {
   color: var(--accent-color);
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 16px 7px;
   background: color-mix(in srgb, var(--contrast-color) 80%, transparent);
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 24px;
}

.contact .info-box .section-badge i {
   font-size: 15px;
}

@media (max-width: 767.98px) {
   .contact .info-box h3 {
      font-size: 1.75rem;
   }
}

.contact .info-box p {
   opacity: 0.8;
   margin-bottom: 2rem;
}

.contact .info-box a {
   color: var(--contrast-color);
}

@media (max-width: 992px) {
   .contact .info-box {
      padding: 1.5rem;
   }
}

.contact .info-item {
   display: flex;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
   width: 3.5rem;
   height: 3.5rem;
   background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: 0.3s;
}

.contact .info-item .icon-box i {
   font-size: 1.5rem;
   color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
   background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
   color: var(--contrast-color);
   font-size: 1.25rem;
   margin-bottom: 0.5rem;
   font-weight: 500;
}

.contact .info-item .content p {
   margin-bottom: 0.25rem;
   font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
   margin-bottom: 0;
}

.contact .contact-form {
   background-color: var(--surface-color);
   padding: 3rem;
   border-radius: 1rem;
   height: 100%;
   box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
   .contact .contact-form {
      padding: 1.5rem;
   }
}

.contact .contact-form h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
}

@media (max-width: 768px) {
   .contact .contact-form h3 {
      font-size: 1.75rem;
   }
}

.contact .contact-form p {
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
   padding: 0.875rem 1.25rem;
   border-color: color-mix(in srgb, var(--default-color), transparent 90%);
   border-radius: 0.5rem;
   background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
   color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
   box-shadow: none;
   border-color: var(--accent-color);
}

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

.contact .contact-form .btn {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   padding: 1rem 2rem;
   border-radius: 2rem;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: 0.3s;
}

.contact .contact-form .btn i {
   font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
   background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

.contact .contact-form .security-badges {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 8px;
   font-size: 12px;
}

.contact .contact-form .security-badges:last-child {
   margin-bottom: 0;
}

.contact .contact-form .security-badges {
   align-items: center;
   justify-content: center;
}

.contact .contact-form .security-badges i {
   color: var(--warning-color);
   font-size: 16px;
}

.contact .contact-form .security-badges span {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-weight: 500;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.service-details .headline {
   font-size: 18px;
   font-weight: 400;
   padding: 10px 0 6px;
   color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

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

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

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

.service-details a {
   font-weight: 400;
   color: var(--link-color);
}

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

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

.accordion {
   --bs-accordion-color: #555555;
   --bs-accordion-bg: #fff;
   --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
   --bs-accordion-border-color: var(--bs-border-color);
   --bs-accordion-border-width: 1px;
   --bs-accordion-border-radius: 0.375rem;
   --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
   --bs-accordion-btn-padding-x: 1.25rem;
   --bs-accordion-btn-padding-y: 1rem;
   --bs-accordion-btn-color: #555555;
   --bs-accordion-btn-bg: var(--bs-accordion-bg);
   --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
   --bs-accordion-btn-icon-width: 1.25rem;
   --bs-accordion-btn-icon-transform: rotate(-180deg);
   --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
   --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6b400'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
   --bs-accordion-btn-focus-border-color: #afb0b0;
   --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(175, 176, 176, 0.25);
   --bs-accordion-body-padding-x: 1.25rem;
   --bs-accordion-body-padding-y: 1rem;
   --bs-accordion-active-color: #fcfcfc;
   --bs-accordion-active-bg: #4e5156;
}

.accordion-button {
   position: relative;
   display: flex;
   align-items: center;
   width: 100%;
   padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
   font-size: 1rem;
   font-weight: 600;
   color: var(--bs-accordion-btn-color);
   text-align: left;
   background-color: var(--bs-accordion-btn-bg);
   border: 0;
   border-radius: 0;
   overflow-anchor: none;
   transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
   .accordion-button {
      transition: none;
   }
}

.accordion-button:not(.collapsed) {
   color: var(--bs-accordion-active-color);
   background-color: var(--bs-accordion-active-bg);
   box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
   background-image: var(--bs-accordion-btn-active-icon);
   transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
   flex-shrink: 0;
   width: var(--bs-accordion-btn-icon-width);
   height: var(--bs-accordion-btn-icon-width);
   margin-left: auto;
   content: "";
   background-image: var(--bs-accordion-btn-icon);
   background-repeat: no-repeat;
   background-size: var(--bs-accordion-btn-icon-width);
   transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
   .accordion-button::after {
      transition: none;
   }
}

.accordion-button:hover {
   z-index: 2;
}

.accordion-button:focus {
   z-index: 3;
   border-color: var(--bs-accordion-btn-focus-border-color);
   outline: 0;
   box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
   margin-bottom: 0;
}

.accordion-item {
   color: var(--bs-accordion-color);
   background-color: var(--bs-accordion-bg);
   border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
   border-top-left-radius: var(--bs-accordion-border-radius);
   border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
   border-top-left-radius: var(--bs-accordion-inner-border-radius);
   border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
   border-top: 0;
}

.accordion-item:last-of-type {
   border-bottom-right-radius: var(--bs-accordion-border-radius);
   border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
   border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
   border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
   border-bottom-right-radius: var(--bs-accordion-border-radius);
   border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
   padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
   border-width: 0;
}

.accordion-flush .accordion-item {
   border-right: 0;
   border-left: 0;
   border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
   border-top: 0;
}

.accordion-flush .accordion-item:last-child {
   border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
   border-radius: 0;
}

.count-area li {
      font-size: 15px;
      font-weight: 400;
      padding: 3px 0;
}

.count-area a:link,
.count-area a:visited {
      color: var(--heading-color);
}

.count-area a:hover {
      color: var(--accent-color);
}

@media (min-width: 992px) {
   .count-area {
      column-count: 3;
   }
}

@media (min-width: 768px) and (max-width: 992px) {
   .count-area {
      column-count: 2;
   }
}

@media (min-width: 450px) and (max-width: 768px) {
   .count-area {
      column-count: 1;
   }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
   margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
   display: inline-block;
   padding: 8px 20px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   border-radius: 30px;
   color: var(--accent-color);
   font-size: 0.95rem;
   margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
   font-size: 2.5rem;
   margin-bottom: 15px;
}

.terms-of-service .tos-header p {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-size: 1.1rem;
   max-width: 700px;
   margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
   margin-bottom: 30px;
   scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
   font-size: 1.5rem;
   margin-bottom: 12px !important;
   color: var(--heading-color);
}

.terms-of-service .tos-content .content-section h5 {
   font-size: 1.2rem;
   font-weight: 500;
   margin-bottom: 10px !important;
   color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   line-height: 1.4;
   margin: 7px 0 7px;
}

.terms-of-service .tos-content .content-section p:last-child {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section ul {
   margin: 6px 0 6px;
}

.terms-of-service .tos-content .content-section li {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .tos-content .content-section ul li ul {
   margin: 3px 0 6px;
}

.terms-of-service .tos-content .content-section span {
   font-weight: 500;
   color: var(--default-color);
}

.terms-of-service .tos-content .content-section .info-box {
   display: flex;
   align-items: flex-start;
   gap: 15px;
   padding: 20px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   border-radius: 15px;
   margin-top: 26px;
}

.terms-of-service .tos-content .content-section .info-box i {
   font-size: 1.3rem;
   color: var(--accent-color);
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
   margin: 0;
   font-size: 1.02rem;
}

.terms-of-service .tos-content .content-section .list-items {
   list-style: none;
   padding: 0;
   margin: 6px 0 0 16px;
}

.terms-of-service .tos-content .content-section .list-items li {
   position: relative;
   padding-left: 25px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
   display: flex;
   gap: 20px;
   padding: 25px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
   border-radius: 15px;
   border-left: 4px solid var(--accent-color);
   margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
   font-size: 2rem;
   color: var(--accent-color);
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
   font-size: 1.1rem;
   margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
   margin: 0;
   font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
   margin-top: 20px;
}

@media (max-width: 576px) {
   .terms-of-service .tos-content .content-section .prohibited-list {
      grid-template-columns: 1fr;
   }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 15px;
   background-color: var(--surface-color);
   border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
   color: #dc3545;
   font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
   font-size: 0.95rem;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
   background-color: var(--surface-color);
   padding: 25px;
   border-radius: 15px;
   margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
   margin-bottom: 15px;
   font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
   position: relative;
   padding-left: 25px;
   margin-bottom: 12px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
   margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
   content: "•";
   position: absolute;
   left: 8px;
   color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 20px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   border-radius: 15px;
   margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
   font-size: 1.5rem;
   color: var(--accent-color);
   flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
   margin: 0;
   font-size: 0.95rem;
}

.terms-of-service .tos-contact {
   margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
   background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
   border-radius: 20px;
   padding: 40px;
   display: flex;
   align-items: center;
   gap: 30px;
}

@media (max-width: 576px) {
   .terms-of-service .tos-contact .contact-box {
      flex-direction: column;
      text-align: center;
   }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
   width: 60px;
   height: 60px;
   background-color: var(--accent-color);
   border-radius: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
   font-size: 1.8rem;
   color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
   flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
   font-size: 1.4rem;
   margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 25px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border-radius: 30px;
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
   .terms-of-service .tos-contact {
      display: none;
   }

   .terms-of-service .content-section {
      page-break-inside: avoid;
   }
}

/*--------------------------------------------------------------
# jobs Section
--------------------------------------------------------------*/
.jobs .jobs-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 12px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .jobs .jobs-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.jobs .jobs-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 12px;
  flex-shrink: 0;
}

.jobs .jobs-member .pic img {
  transition: ease-in-out 0.3s;
}

.jobs .jobs-member:hover {
  transform: translateY(-10px);
}

.jobs .jobs-member:hover .read-more {
   color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.jobs .jobs-member .read-more {
   margin-top: 1rem;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--accent-color);
   font-weight: 500;
   transition: all 0.3s ease;
}

.jobs .jobs-member .read-more i {
   font-size: 14px;
   transition: transform 0.3s ease;
}

.jobs .jobs-member .read-more:hover i {
   transform: translateX(5px);
}

.jobs .jobs-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .jobs .jobs-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.jobs .jobs-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.jobs .jobs-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.jobs .jobs-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 65%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .jobs .jobs-member span::after {
    left: calc(50% - 25px);
  }
}

.jobs .jobs-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.network-item {
  padding: 30px 24px 10px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.network-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.network-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.network-item:hover::before {
  transform: scaleX(1);
}

.network-item:hover .network-icon {
  transform: scale(1.1);
}

.network-item:hover .network-link {
  color: var(--accent-color);
}

.network-item:hover .network-link i {
  transform: translateX(8px);
}

.network-item .network-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s ease-in-out;
  flex-shrink: 0;
}

.network-item .network-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.network-item h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

.network-item p {
  font-size: 15px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 22px;
  flex-grow: 1;
}

.network-item .network-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  align-self: flex-start;
}

.network-item .network-link i {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .network-item {
    padding: 40px 24px;
  }

  .network-item .network-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .network-item .network-icon i {
    font-size: 28px;
  }

  .network-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .network-item p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}


/* Spacing Scale */
:root {
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
}

/* Border Radius */
:root {
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;
}

/* Input Group */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group>.form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group>.form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--background-color);
}

.input-group>.input-group-text:first-child {
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  border-right: 0;
}

.input-group>.input-group-text:last-child {
  border-top-right-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  border-left: 0;
}

/*--------------------------------------------------------------
# Date/Time Pickers - Flatpickr Overrides
--------------------------------------------------------------*/
/* Flatpickr Calendar */
.flatpickr-calendar {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-family: inherit;
  width: 307px;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: var(--border-color);
}

.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
  border-top-color: var(--border-color);
}

.flatpickr-calendar.inline {
  box-shadow: none;
  border: 1px solid var(--border-color);
}

/* Month Navigation */
.flatpickr-months {
  padding: 0.5rem;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: var(--heading-color);
  height: 40px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--muted-color);
  fill: var(--muted-color);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: var(--background-color);
  color: var(--accent-color);
  fill: var(--accent-color);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--accent-color);
}

.flatpickr-current-month {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  padding: 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--heading-color);
  padding: 0 0.25rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: transparent;
}

.flatpickr-current-month .numInputWrapper span {
  border: none;
}

.flatpickr-current-month .numInputWrapper span:hover {
  background: var(--background-color);
}

.flatpickr-current-month input.cur-year {
  color: var(--heading-color);
  font-weight: 600;
}

/* Weekday Headers */
.flatpickr-weekdays {
  background: transparent;
  padding: 0 0.5rem;
}

.flatpickr-weekday {
  background: transparent;
  color: var(--muted-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Days Container */
.flatpickr-days {
  padding: 0 0.5rem 0.5rem;
}

.dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

/* Day Elements */
.flatpickr-day {
  color: var(--default-color);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 1px;
  border: none;
  transition: all var(--transition-base);
}

.flatpickr-day:hover {
  background: var(--background-color);
  border-color: transparent;
}

.flatpickr-day.today {
  border: 2px solid var(--accent-color);
  background: transparent;
}

.flatpickr-day.today:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.flatpickr-day.selected.today,
.flatpickr-day.startRange.today,
.flatpickr-day.endRange.today {
  border-color: var(--accent-color);
}

.flatpickr-day.inRange {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: transparent;
  box-shadow: none;
}

.flatpickr-day.inRange:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--light-color);
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  background: var(--background-color);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: var(--light-color);
  background: transparent;
  cursor: not-allowed;
  opacity: 0.5;
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 var(--accent-color), 5px 0 0 var(--accent-color);
}

/* Week Numbers */
.flatpickr-weekwrapper .flatpickr-weekday {
  color: var(--muted-color);
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 0.5rem 0.5rem 0;
  box-shadow: none;
  border-right: 1px solid var(--border-color);
}

.flatpickr-weekwrapper span.flatpickr-day {
  color: var(--muted-color);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Time Picker */
.flatpickr-time {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  max-height: 50px;
}

.flatpickr-time input {
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: var(--background-color);
}

.flatpickr-time .flatpickr-time-separator {
  color: var(--default-color);
  font-weight: 600;
}

.flatpickr-time .flatpickr-am-pm {
  color: var(--default-color);
  font-weight: 500;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: var(--background-color);
}

.numInputWrapper span {
  border-color: var(--border-color);
}

.numInputWrapper span:hover {
  background: var(--background-color);
}

.numInputWrapper span::after {
  border-color: var(--muted-color) transparent transparent;
}

.numInputWrapper span.arrowUp::after {
  border-bottom-color: var(--muted-color);
}

.numInputWrapper span.arrowDown::after {
  border-top-color: var(--muted-color);
}

/* Inline Calendar Wrapper */
.picker-inline-wrapper {
  display: flex;
  justify-content: center;
}

.picker-inline-wrapper .flatpickr-calendar {
  position: static;
  box-shadow: none;
}

/* Clearable Input */
.picker-clearable .picker-clear-btn {
  border-left: 0;
  border-right: 0;
}

/* Input Group Adjustments */
.input-group .flatpickr-input:focus {
  z-index: 3;
}

/* Dark Mode */
[data-theme=dark] .flatpickr-calendar {
  background: var(--surface-color);
  border-color: var(--border-color);
}

[data-theme=dark] .flatpickr-calendar.arrowTop::before {
  border-bottom-color: var(--border-color);
}

[data-theme=dark] .flatpickr-calendar.arrowTop::after {
  border-bottom-color: var(--surface-color);
}

[data-theme=dark] .flatpickr-calendar.arrowBottom::before {
  border-top-color: var(--border-color);
}

[data-theme=dark] .flatpickr-calendar.arrowBottom::after {
  border-top-color: var(--surface-color);
}

[data-theme=dark] .flatpickr-months .flatpickr-prev-month:hover,
[data-theme=dark] .flatpickr-months .flatpickr-next-month:hover {
  background: var(--background-color);
}

[data-theme=dark] .flatpickr-months .flatpickr-prev-month svg,
[data-theme=dark] .flatpickr-months .flatpickr-next-month svg {
  fill: var(--muted-color);
}

[data-theme=dark] .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
  color: var(--heading-color);
}

[data-theme=dark] .flatpickr-current-month .flatpickr-monthDropdown-months option {
  background: var(--surface-color);
  color: var(--default-color);
}

[data-theme=dark] .flatpickr-current-month input.cur-year {
  color: var(--heading-color);
}

[data-theme=dark] .flatpickr-day {
  color: var(--default-color);
}

[data-theme=dark] .flatpickr-day:hover {
  background: var(--background-color);
}

[data-theme=dark] .flatpickr-day.prevMonthDay,
[data-theme=dark] .flatpickr-day.nextMonthDay {
  color: var(--light-color);
}

[data-theme=dark] .flatpickr-day.inRange {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

[data-theme=dark] .flatpickr-time {
  background: var(--surface-color);
  border-color: var(--border-color);
}

[data-theme=dark] .flatpickr-time input {
  color: var(--default-color);
}

[data-theme=dark] .flatpickr-time input:hover,
[data-theme=dark] .flatpickr-time input:focus {
  background: var(--background-color);
}

[data-theme=dark] .flatpickr-weekwrapper .flatpickr-weeks {
  border-color: var(--border-color);
}

/* Responsive */
@media (max-width: 767.98px) {
  .flatpickr-calendar {
    width: 100%;
    max-width: 307px;
  }

  .picker-inline-wrapper .flatpickr-calendar {
    width: 100%;
  }
}

.icons-filter {
  position: sticky;
  top: 70px;
  z-index: 10;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.glyph-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 100px;
}

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

.glyph-item i {
  font-size: 1.75rem;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.glyph-item .glyph-name {
  font-size: 0.7rem;
  color: var(--muted-color);
  word-break: break-all;
  line-height: 1.2;
}

.glyph-item.copied {
  border-color: var(--success-color);
  background: var(--success-color-light);
}

.glyph-item.copied i {
  color: var(--success-color);
}

.icons-count {
  font-size: 0.875rem;
  color: var(--muted-color);
}

.glyph-category {
  margin-bottom: 2rem;
}

.glyph-category h5 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}