/* Fonts */

:root {
  --default-font: "Inter";
  --heading-font: "Inter";
  --nav-font: "Inter";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #000;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000;
  /* Color for headings, subheadings and title throughout the website */
  --accent-gradient: linear-gradient(90deg, #3aeda4, #1386b6);
  --accent-color: #28c8af;

  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

:root {
  --nav-color: #000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #28c8af;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444d4d;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #018880;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  /* --background-color: #005751; */
  --default-color: #000;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #018880;
}

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

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Decrease logo height on mobile devices */
@media (max-width: 767.98px) {
  .header .logo img {
    max-height: 43px !important;
  }
}

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);
}
.h3 {
  font-size: 35px;
}
.fs-0 {
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
}
.fs-span {
  font-weight: 700;
}
.fs-2 {
  font-size: 40px !important;
  font-weight: 500;
}
.fs-24 {
  font-size: 22px;
  font-weight: 500;
}
.fs-3 {
  font-size: 35px;
  font-weight: 500;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PHP Email Form Messages
------------------------------*/

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-gradient);
  font-size: 16px;
  padding: 12px 26px;
  margin: 0;
  transition: 0.3s;
  font-weight: 600;
  border-radius: 5px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-gradient);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navmenu {
    order: 3;
  }
}

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

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

.scrolled .header {
  --background-color: #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    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 a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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 {
    font-weight: 500;
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: black;
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */

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

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

.footer {
  color: #fff;
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.dark-background {
  background-color: black;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #28c8af; /* Using --accent-color */
  font-size: 16px;
  color: #fff; /* Using --accent-color */
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  /* Optional: You can keep accent color or apply gradient as text (if you want fancy effect) */
  color: #28c8af;
  border-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 82px;
  overflow: clip;
}
.mailchip-form {
  background-color: transparent;
}

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 45px;
  font-weight: 500;
  font-family: var(--heading-font);
}
.fs-44 {
  font-size: 52px !important;
  font-weight: 600 !important;
}
.description-title {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  padding-top: 150px;
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  padding-bottom: 100px;
}
/* .hero{
    background-image: url('/content/demo/Consulting/assets/img/home/processor.gif');
    background-repeat: no-repeat;
    background-size:cover;
} */

.hero .hero-content h2 {
  font-size: 65px;
  font-weight: 700;
  line-height: 130%;
  color: #000;
}

@media (max-width: 992px) {
  .hero .hero-content h2 {
    font-size: 2.5rem;
  }
}

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

.paragraph-stylings {
  font-weight: 400;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .hero-content .hero-btns .btn-outline {
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 5px !important;
}

.hero .hero-content .hero-btns .btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--default-color);
}

.hero .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px 0;
  }
  .hero .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }
  .hero .hero-content .hero-btns {
    justify-content: center;
  }
  .hero .hero-content .hero-stats {
    justify-content: center;
  }
}

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

.about {
  background: linear-gradient(to right, #1fbd7c, #0a80b2);
}

.about .about-image {
  position: relative;
  margin-bottom: 30px;
}

.about .about-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 120px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    min-width: 100px;
    min-height: 100px;
    padding: 15px;
    right: 0;
  }
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

.about .about-content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.about .about-content h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
}

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

.about .about-content .lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1.5rem;
  color: white;
}

.about .about-content p {
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.about .about-content .features-row {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about .about-content .feature-item {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.about .about-content .feature-item .icon {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  color: var(--accent-color);
}

.about .about-content .feature-item .icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.about .about-content .feature-item .icon:hover i {
  transform: translateY(-5px);
}

.about .about-content .feature-item h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: white;
}

.about .about-content .feature-item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
  color: white;
}

.about .about-content .cta-button {
  margin-top: 1rem;
}

.about .about-content .cta-button .btn-primary {
  background: var(--accent-gradient);
  border-color: var(--accent-gradient);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.about .about-content .cta-button .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/

.work-process .steps-content {
  padding-right: 30px;
  margin-bottom: 40px;
}
.work-process {
  background-color: #151c22;
}

@media (max-width: 992px) {
  .work-process .steps-content {
    padding-right: 0;
  }
}

.work-process .steps-content h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 65px;
}

@media (max-width: 768px) {
  .work-process .steps-content h2 {
    font-size: 2rem;
  }
}

.work-process .steps-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.work-process .steps-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

.work-process .steps-content .steps-cta {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .work-process .steps-content .steps-cta {
    flex-direction: column;
  }
}

.work-process .steps-content .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.work-process .steps-content .steps-cta .btn-primary {
  background: var(--accent-gradient);
  border-color: var(--accent-gradient);
  color: var(--contrast-color);
}

.work-process .steps-content .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-process .steps-content .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.work-process .steps-content .steps-cta .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-process .steps-list {
  position: relative;
}

@media (max-width: 576px) {
  .work-process .steps-list::before {
    left: 20px;
  }
}

.work-process .steps-list .step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  border-bottom: 2px solid gray;
}

.work-process .steps-list .step-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-list .step-item:hover .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.work-process .steps-list .step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.work-process .steps-list .step-item .step-content {
  padding-top: 5px;
}

.work-process .steps-list .step-item .step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-content h3 {
    font-size: 1.1rem;
  }
}

.work-process .steps-list .step-item .step-content p {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0;
}

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

.services {
  padding: 80px 0;
}

.services .service-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.services .service-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card p {
  font-weight: 400;
  line-height: 26px;
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--default-color);
}

.services .service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.services .service-card .service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
}

.services .service-card .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

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

.services .service-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

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

.services .btn-primary {
  background: var(--accent-gradient);
  border-color: var(--accent-gradient);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.services .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Consultation Section
--------------------------------------------------------------*/

.consultation {
  padding-top: 60px;
  padding-bottom: 60px;
}

.consultation .cta-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.consultation .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #fff 30%)
  );
}

@media (max-width: 992px) {
  .consultation .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .consultation .cta-wrapper {
    padding: 30px 20px;
  }
}

.consultation .cta-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .consultation .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.consultation .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .consultation .cta-content h2 {
    font-size: 2rem;
  }
}

.consultation .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.consultation .cta-content .cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.consultation .cta-content .cta-stats .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .consultation .cta-content .cta-stats .stat-item .number {
    font-size: 2rem;
  }
}

.consultation .cta-content .cta-stats .stat-item .text {
  font-size: 0.9rem;
  color: var(--default-color);
}

.consultation .cta-form {
  background: url("../img/infrastructure/tech.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 30px;
}

.consultation .cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

@media (max-width: 768px) {
  .consultation .cta-form h3 {
    font-size: 1.5rem;
  }
}

.consultation .cta-form p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: white;
}

.consultation .cta-form .form-control {
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.consultation .cta-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.consultation .cta-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.consultation .cta-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.consultation .cta-form button[type="submit"] {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.consultation .cta-form button[type="submit"]:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

.why-choose-us {
  padding: 50px 0;
  background-color: var(--background-color);
}

.why-choose-us .features-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .why-choose-us .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.why-choose-us .features-content h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .why-choose-us .features-content h2 {
    font-size: 2rem;
  }
}

.why-choose-us .features-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.why-choose-us .features-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

.why-choose-us .features-content .features-list .feature-item {
  display: flex;
  margin-bottom: 2rem;
}

.why-choose-us .features-content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.why-choose-us
  .features-content
  .features-list
  .feature-item
  .feature-icon:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.why-choose-us .features-content .features-list .feature-item .feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.feature-item {
  border-bottom: 1px dotted rgb(196, 193, 193); /* or any color you want */
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/* Remove border from the last item */
.feature-item:last-child {
  border-bottom: none;
}

.why-choose-us .features-content .features-list .feature-item .feature-text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
  color: var(--default-color);
}

.why-choose-us .features-image {
  position: relative;
}

.why-choose-us .features-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.why-choose-us .features-image .stats-card {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  z-index: 2;
  width: 220px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card {
    width: 180px;
    padding: 15px;
    top: -20px;
    left: -10px;
  }
}

.why-choose-us .features-image .stats-card .stat-item {
  text-align: center;
}

.why-choose-us .features-image .stats-card .stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item h3 {
    font-size: 1.2rem;
  }
}

.why-choose-us .features-image .stats-card .stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item p {
    font-size: 0.7rem;
  }
}

.why-choose-us .features-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge {
    padding: 15px;
    right: 0;
  }
}

.why-choose-us .features-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose-us .features-image .experience-badge .badge-content .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge .badge-content .number {
    font-size: 2rem;
  }
}

.why-choose-us .features-image .experience-badge .badge-content .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

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

.team .swiper-wrapper {
  height: auto !important;
}
.team-image img {
  width: 100%;
  height: 270px;
  object-fit: cover; /* Optional: crop/fill image nicely */
  border-radius: 8px; /* Optional: rounded corners */
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-slider .swiper-button-prev:hover,
.team .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

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

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

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

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  background: #f1f8f7;
}

.team .team-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team .team-content p {
  font-weight: 400;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials .testimonial-item {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials
  .testimonial-item
  .testimonial-footer
  .testimonial-author
  div
  span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }
  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }
  .testimonials
    .testimonial-item
    .testimonial-footer
    .testimonial-author
    div
    h5 {
    font-size: 16px;
  }
  .testimonials
    .testimonial-item
    .testimonial-footer
    .testimonial-author
    div
    span {
    font-size: 13px;
  }
  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }
  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

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

.pricing .pricing-toggle {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}

.pricing .pricing-toggle span {
  font-size: 1rem;
  font-weight: 600;
  padding: 0 15px;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing .pricing-toggle span.active {
  color: var(--accent-color);
}

.pricing .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.pricing .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing .pricing-toggle .switch input:checked + .slider {
  background-color: var(--accent-color);
}

.pricing .pricing-toggle .switch input:checked + .slider:before {
  transform: translateX(30px);
}

.pricing .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.4s;
  border-radius: 34px;
}

.pricing .pricing-toggle .switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.pricing .pricing-toggle .discount-badge {
  position: absolute;
  top: -25px;
  right: -15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

@media (max-width: 576px) {
  .pricing .pricing-toggle .discount-badge {
    top: -30px;
    right: 0;
  }
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-item.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
  z-index: 1;
}

@media (max-width: 992px) {
  .pricing .pricing-item.featured {
    transform: scale(1);
  }
}

.pricing .pricing-item.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

@media (max-width: 992px) {
  .pricing .pricing-item.featured:hover {
    transform: translateY(-10px) scale(1);
  }
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: 16px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.pricing .pricing-item .pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-item .pricing-header h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing .pricing-item .pricing-header .price-monthly,
.pricing .pricing-item .pricing-header .price-yearly {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.pricing .pricing-item .pricing-header .price-monthly span,
.pricing .pricing-item .pricing-header .price-yearly span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--default-color);
}

.pricing .pricing-item .pricing-header p {
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 0;
}

.pricing .pricing-item .pricing-header .price-yearly {
  display: none;
}

.pricing .pricing-item.yearly-active .price-monthly {
  display: none;
}

.pricing .pricing-item.yearly-active .price-yearly {
  display: block;
}

.pricing .pricing-item .pricing-features {
  padding: 30px;
  flex-grow: 1;
}

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

.pricing .pricing-item .pricing-features ul li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.pricing .pricing-item .pricing-features ul li i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.pricing .pricing-item .pricing-features ul li i.bi-check-circle {
  color: #28a745;
}

.pricing .pricing-item .pricing-features ul li i.bi-x-circle {
  color: #dc3545;
}

.pricing .pricing-item .pricing-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

.pricing .pricing-item .pricing-footer .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 100%;
}

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

.pricing .pricing-item .pricing-footer .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-item .pricing-footer .btn-outline:hover {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.pricing .pricing-item .pricing-footer .btn-outline {
  background: var(--accent-gradient);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-note p {
  font-size: 1rem;
  color: var(--default-color);
}

.pricing .pricing-note p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.pricing .pricing-note p a:hover {
  text-decoration: underline;
}

.pricing body.pricing-yearly .pricing-toggle .monthly {
  color: var(--default-color);
}

.pricing body.pricing-yearly .pricing-toggle .yearly {
  color: var(--accent-color);
}

.pricing body.pricing-yearly .pricing-item .price-monthly {
  display: none;
}

.pricing body.pricing-yearly .pricing-item .price-yearly {
  display: block;
}

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

.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

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

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background: var(--accent-gradient);
  border-color: var(--accent-gradient);
  color: var(--contrast-color);
}

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

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

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

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

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

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

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

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

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }
  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

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

.contact {
  padding: 80px 0;
  overflow: hidden;
}
.overlay-container {
  position: absolute;
  display: flex;
  z-index: 999;
  pointer-events: none;
  transform: translateY(-73%);
}

.overlay-container img {
  max-width: 200px;
  opacity: 0.8;
}

.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .contact .contact-info {
    margin-bottom: 40px;
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.contact .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact .contact-card p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact .contact-card .contact-details {
  margin-bottom: 25px;
}

.contact .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact .contact-card .contact-details .contact-item div h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.contact .contact-card .contact-details .contact-item div p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 5px;
  line-height: 1.5;
}

.contact .contact-card .contact-details .contact-item div p:last-child {
  margin-bottom: 0;
}

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

.contact .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  border-radius: 10px;
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 0% !important;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact
  .contact-form-wrapper
  .php-email-form
  .form-group
  .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact
  .contact-form-wrapper
  .php-email-form
  .form-group
  textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact .contact-form-wrapper .php-email-form .form-check {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input {
  margin-top: 0.3em;
}

.contact
  .contact-form-wrapper
  .php-email-form
  .form-check
  .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact
  .contact-form-wrapper
  .php-email-form
  .form-check
  .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  padding-left: 5px;
}

.contact .contact-form-wrapper .php-email-form button {
  background: var(--accent-gradient);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .contact .contact-card,
  .contact .newsletter-card,
  .contact .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  .contact .contact-card h3 {
    font-size: 20px;
  }
  .contact .newsletter-card h3 {
    font-size: 18px;
  }
}

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

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

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

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

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

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

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

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

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

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

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

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

.starter-section {
  /* Add your styles here */
}
.stats-section {
  padding-top: 50px !important;
}

/*time line*/

.bb-container {
  padding: 60px 0;
}

/* Column 1 - Numbers */
.bb-numbers {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-size: 2rem;
  font-weight: 600;
}

.bb-numbers div {
  color: #e0e0e0;
  transition: color 0.3s;
}

.bb-numbers div.active {
  color: #000;
}

.bb-numbers div:nth-child(1) {
  margin-top: 47px;
}
.bb-numbers div:nth-child(2) {
  margin-top: 130px;
}
.bb-numbers div:nth-child(3) {
  margin-top: 150px;
}
.bb-numbers div:nth-child(4) {
  margin-top: 135px;
}

/* Column 2 - Timeline Content */
.bb-timeline {
  position: relative;
  padding-left: 40px;
}
.bb-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 70px;
  width: 3px;
  background-color: #d9d9d9; /* Full gray line */
}

.bb-block {
  position: relative;
  margin-bottom: 65px;
  padding-left: 30px;
}

.bb-line {
  position: absolute;
  left: -40px;
  top: 0;
  height: 130px;
  width: 2px;
  background: transparent;
  z-index: 1;
  transition: background 0.4s;
}

.bb-line.active {
  width: 3px;
  background: linear-gradient(to bottom, #3aeda4, #1386b6);
}

.bb-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  cursor: pointer;
}

.bb-desc {
  color: #000;
  font-size: 0.95rem;
}

/* Column 3 - Images */
.bb-image {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.bb-image.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .bb-numbers,
  .bb-timeline::before,  /* the gray full vertical line */
  .bb-line               /* the colored gradient bars */ {
    display: none;
  }
}

.footer .resource-text {
  font-size: 1rem; /* You can use 1.1rem or 16px as needed */
  line-height: 1.7; /* Increase to 1.8 or 2 for more spacing */
  color: #fff; /* Optional: ensure it matches other footer text */
}

.pricing-item {
  transition: all 0.3s ease;
  background-color: #fff; /* default background */
  color: #000; /* default text color */
}

.pricing-item:hover {
  background: linear-gradient(90deg, #3aeda4, #1386b6);
  color: #fff;
}

.pricing-item:hover h3,
.pricing-item:hover p,
.pricing-item:hover li,
.pricing-item:hover i {
  color: #fff !important;
}

.pricing-item:hover .btn-outline {
  background-color: #fff !important;
  border-color: #fff;
}

.pricing-item .btn-outline {
  transition: all 0.3s ease;
}
.pricing-item:hover i.bi {
  color: #fff;
}

.team-member {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-content {
  flex-grow: 1;
}
.bb-title.active {
  background: linear-gradient(90deg, #3aeda4, #1386b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.step-text {
  cursor: pointer;
}
.team-data {
  background: white !important;
}
.data-comparision {
  font-size: 45px !important;
  font-weight: 500;
}
.mission-vision-headings {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.mission-vision-paragraph {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.time-line-heading {
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
}
.time-line-content {
  font-size: 18px;
  font-weight: 400;
}
.story-heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.story-heading1 {
  font-size: 45px;
  font-weight: 500;
  line-height: 54px;
}
.story-paragraph-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.btn-join-team {
  background: linear-gradient(to right, #3aeda4 0%, #1386b6 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  min-width: 260px;
  max-width: 100%;
}

.btn-join-team:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.navmenu a.active {
  color: #14bfa5 !important; /* Or any highlight color */
}

/*infrastructure page*/

.stat-box {
  text-align: center;
  position: relative;
}

.circle-wrapper {
  position: relative;
}

.circle-bg {
  position: absolute;
  top: 0px; /* Change values as needed */
  left: 15px;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #d1f5f0 0%, #eaf9f7 100%);
  z-index: 1;
}

.circle-text {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 55px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

@media (min-width: 768px) {
  .circle-bg {
    width: 50px;
    height: 50px;
  }

  .circle-text {
    font-size: 55px;
  }
}
.paragraph-stylings1 {
  font-size: 16px;
  font-weight: 500;
}
.services-font-sizes {
  font-size: 15px;
  font-weight: 400;
}
.services-font-sizes-aifactory {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.service-bg {
  background: #f1f8f7 !important;
}
.heading-stylings {
  font-size: 28px;
  font-weight: 500;
}
.paragraph-stylings2 {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
}
.technical-specifications {
  font-weight: 600;
}
.infrastructure {
  background: #9c9c9c;
}
.infrastructure2 {
  background: #00ca88;
}
.infrastructure3 {
  background: #ae8e4e;
}
.infrastructure4 {
  background: #4e74ae;
}
.infrastructure5 {
  background: #f4f4f1;
}
.infrastructure6 {
  background: #e4f6dd;
}
.infrastructure7 {
  background: #e8e5dc;
}
.infrastructure8 {
  background: #e5eaf2;
}
.services .service-card:hover .feature-box {
  background: #ddf2ef !important;
}

/**/
.timeline {
  position: relative;
  margin: 40px 0; /* Reducido el margen vertical para móvil */
}

.timeline-line {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
  background: linear-gradient(45deg, transparent, black, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  flex-direction: column; /* Apilamos los elementos en móvil */
  margin-bottom: 60px; /* Reducido el margen inferior para móvil */
  position: relative;
}

.timeline-number {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  z-index: 2;
  margin-right: 20px; /* Reducido el margen derecho para móvil */
  flex-shrink: 0;
  transform: unset; /* Eliminamos la transformación para móvil */
}

.timeline-content {
  flex: 1;
  margin-left: 60px; /* Añadimos margen izquierdo para alinear con la línea */
  margin-top: -40px; /* Ajustamos el margen superior para superponerse */
  padding-top: 10px;
}

.timeline-content h2 {
  font-size: 20px; /* Reducido el tamaño de la fuente para móvil */
  margin-bottom: 10px; /* Reducido el margen inferior para móvil */
  color: white;
  font-weight: 600;
}

.timeline-content p {
  color: white;
  font-size: 16px;
  margin-bottom: 15px; /* Reducido el margen inferior para móvil */
  max-width: 100%; /* El texto ocupa todo el ancho disponible en móvil */
}

.timeline-image {
  width: calc(100% - 60px); /* Ocupa el ancho restante */
  height: 180px; /* Reducida la altura para móvil */
  background-color: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 60px; /* Alineado con el contenido */
  margin-top: 20px; /* Añadido margen superior */
  flex-shrink: 0;
}

.timeline-image img {
  max-width: 100%; /* La imagen se ajusta al contenedor */
  max-height: 100%;
}

/* Estilos para desktop (a partir de 769px de ancho) */
@media (min-width: 769px) {
  .timeline {
    margin: 60px 0;
  }

  .timeline-line {
    left: 40px;
    transform: translateX(-50%);
  }

  .timeline-item {
    flex-direction: row; /* Volvemos a la disposición horizontal en desktop */
    margin-bottom: 80px;
  }

  .timeline-number {
    margin-right: 65px;
    width: 20px;
    height: 20px;
    transform: translateX(31px);
  }

  .timeline-content {
    margin-left: 0; /* Removemos el margen izquierdo */
    margin-top: 0; /* Removemos el margen superior */
    padding-top: 0;
  }

  .timeline-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .timeline-content p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
  }

  .timeline-image {
    width: 300px;
    height: 200px;
    margin-left: 40px;
    margin-top: 0; /* Removemos el margen superior */
  }

  .timeline-image img {
    max-width: 120px;
    max-height: 120px;
  }
}
.footer-contact-section {
  margin-top: 100px;
}

.why-choose-gpu {
  font-size: 45px;
  font-weight: 500;
  color: white;
}
.testimonial-author {
  border-radius: 10px;
}

.splide__arrow {
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
}

.splide__arrow svg {
  fill: #fff;
}

/* Hide by default */
.dropdown-menu {
  display: none;
}

/* Show when active */
.dropdown.active .dropdown-menu {
  display: block;
}

/*ai-factory*/

.ai-factory-services {
  transform: none !important;
  box-shadow: none !important;
}
.ai-factory-span {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}
.list-style {
  padding: 0% !important;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio-filters {
  display: flex;
  gap: 20px;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  border: 1px solid gray;
  cursor: pointer;
  display: inline-block;
  padding: 11px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-gradient);
  border: none !important;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
.ai-factory-bb-line {
  background: transparent !important;
}
/* Column 1 - Numbers */
.bb-numbers-factory {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-size: 2rem;
  font-weight: 600;
}

.bb-numbers-factory div {
  color: #e0e0e0;
  transition: color 0.3s;
}

.bb-numbers-factory div.active {
  color: #000;
}
.bb-numbers-factory div.active {
  color: #000;
}
.bb-numbers-factory div:nth-child(1) {
  margin-top: 10px;
}

.bb-numbers-factory div:nth-child(2) {
  margin-top: 105px;
}
.bb-numbers-factory div:nth-child(3) {
  margin-top: 105px;
}
.bb-numbers-factory div:nth-child(4) {
  margin-top: 105px;
}
.bb-background {
  padding: 22px;
  margin-bottom: 30px !important;
  background: transparent; /* or remove background entirely */
}

.bb-background.active {
  background: #F1F8F7; /* Only active one gets background */
}
/* Mobile responsiveness */
@media (max-width: 576px) {
  .portfolio-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-filters li {
    width: 100%;
    text-align: center;
  }
}
