/**
* Template Name: MyBiz
* Template URL: https://bootstrapmade.com/mybiz-free-business-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #01b1d7; /* 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: #555555;  /* The default color of the main navmenu links */
  --nav-hover-color: #01b1d7; /* 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: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #01b1d7; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

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

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

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

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

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

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

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    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;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    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);
    list-style: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14); /* tăng rất nhẹ */
  color: #fff;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.35); /* sâu hơn chút */
  transition: all 0.25s ease;
}


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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.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: 4px;
  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;
}

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

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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 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);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  animation: fadeInDown 1s both;
}


.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) {
  .featured-services .card-item {
    padding: 1.75rem;
  }

  .featured-services .card-item h3 {
    font-size: 1.35rem;
  }

  .featured-services .card-item .icon i {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .featured-services .card-item {
    padding: 1.5rem;
  }

  .featured-services .card-item h3 {
    font-size: 1.25rem;
  }

  .featured-services .card-item .icon i {
    font-size: 2rem;
  }

  .featured-services .card-item:hover {
    transform: translateY(-3px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  /* tokens */
  --card-radius: 16px;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 28%);
  --muted-strong: color-mix(in srgb, var(--default-color), transparent 18%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 88%);
  --accent-softer: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.about .intro-card {
  background: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 4px);
  padding: 32px;
  box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .intro-card {
    padding: 22px;
  }
}

.about .intro-card .intro-head {
  margin-bottom: 1rem;
}

.about .intro-card .intro-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  background: var(--accent-softer);
}

.about .intro-card .intro-head h2 {
  margin-top: 12px;
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .intro-card .intro-head h2 {
    font-size: 1.875rem;
  }
}

.about .intro-card .intro-body .lead {
  font-size: 1.125rem;
  color: var(--muted-strong);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about .intro-card .intro-body p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about .intro-card .feature-list {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.about .intro-card .feature-list .feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
  border: 1px dashed var(--soft-border);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  transition: all 0.3s ease;
}

.about .intro-card .feature-list .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .intro-card .feature-list .feature-item i {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: var(--accent-soft);
  font-size: 18px;
}

.about .intro-card .feature-list .feature-item .text h6 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
}

.about .intro-card .feature-list .feature-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.about .intro-card .metric-band {
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 2px);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band {
    gap: 12px;
    padding: 12px;
  }
}

.about .intro-card .metric-band .metric {
  display: grid;
  gap: 2px;
}

.about .intro-card .metric-band .metric .value {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--accent-color);
  font-size: 1.75rem;
  line-height: 1;
}

.about .intro-card .metric-band .metric .label {
  font-size: 0.8rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about .intro-card .metric-band .divider {
  width: 1px;
  height: 34px;
  background: var(--soft-border);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band .divider {
    height: 28px;
  }
}

.about .intro-card .actions .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.about .intro-card .actions .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about .intro-card .actions .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
}

.about .intro-card .actions .link-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about .intro-card .actions .link-more:hover {
  color: var(--accent-color);
}

.about .intro-card .actions .link-more:hover::after {
  transform: scaleX(1);
}

.about .showcase {
  height: 100%;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
}

.about .showcase .showcase-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--card-radius) + 4px);
  border: 1px solid var(--soft-border);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .showcase .showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .showcase .showcase-main .badge-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--soft-border);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .showcase .showcase-main .badge-note i {
  color: var(--accent-color);
  background: var(--accent-soft);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.about .showcase .showcase-main .badge-note strong {
  display: block;
  line-height: 1.1;
  color: var(--heading-color);
}

.about .showcase .showcase-main .badge-note small {
  display: block;
  color: var(--muted-text);
}

.about .showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about .showcase .showcase-grid .mini {
  margin: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--soft-border);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .showcase .showcase-grid .mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .about .showcase .showcase-grid .mini img {
    height: 140px;
  }
}

.about .showcase .showcase-grid .mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 30px 0;
}

.clients .clients-wrapper {
  position: relative;
}

.clients .clients-wrapper::before,
.clients .clients-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients .clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), transparent);
}

.clients .clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), transparent);
}

.clients .clients-track {
  display: flex;
  gap: 30px;
  padding: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.clients .clients-track::-webkit-scrollbar {
  display: none;
}

.clients .client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients .client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients .client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 15%, transparent);
  background-color: color-mix(in srgb, var(--surface-color) 98%, var(--accent-color));
}

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

@media (max-width: 991px) {
  .clients .client-logo {
    width: 160px;
    height: 120px;
  }

  .clients .client-logo img {
    max-height: 70px;
  }
}

@media (max-width: 767px) {
  .clients .client-logo {
    width: 140px;
    height: 100px;
    padding: 15px;
  }

  .clients .client-logo img {
    max-height: 60px;
  }

  .clients .clients-track {
    gap: 20px;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 30px;
  --tile-radius: 10px;
  --tile-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --tile-shadow: 0 2px 0 color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 30px;
}

.stats .stats-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {
  .stats .stats-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats .stats-board {
    grid-template-columns: 1fr;
  }
}

.stats .stat-tile {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 0%);
  border: var(--tile-border);
  border-radius: var(--tile-radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  box-shadow: var(--tile-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stats .stat-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stat-tile .tile-head .label .title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
  display: block;
  margin-top: 2px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  line-height: 1.4;
}

.stats .stat-tile .tile-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats .stat-tile .tile-metric .metric-number {
  display: inline-block;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1;
  font-size: 36px;
}

@media (max-width: 576px) {
  .stats .stat-tile .tile-metric .metric-number {
    font-size: 32px;
  }
}

.stats .stat-tile .tile-metric .metric-suffix {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 600;
}

.stats .stat-tile:nth-child(1) {
  border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(2) {
  border-top: 3px solid color-mix(in srgb, #0abf53, transparent 30%);
}

.stats .stat-tile:nth-child(2) .tile-head i {
  color: color-mix(in srgb, #0abf53, transparent 0%);
}

.stats .stat-tile:nth-child(3) {
  border-top: 3px solid color-mix(in srgb, #ff7e00, transparent 30%);
}

.stats .stat-tile:nth-child(3) .tile-head i {
  color: color-mix(in srgb, #ff7e00, transparent 0%);
}

.stats .stat-tile:nth-child(4) {
  border-top: 3px solid color-mix(in srgb, #6f42c1, transparent 30%);
}

.stats .stat-tile:nth-child(4) .tile-head i {
  color: color-mix(in srgb, #6f42c1, transparent 0%);
}

.stats .legend-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

@media (max-width: 576px) {
  .stats .legend-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.stats .legend-row .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats .legend-row .legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stats .legend-row .legend-item .dot.dot-primary {
  background: var(--accent-color);
}

.stats .legend-row .legend-item .dot.dot-neutral {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.stats .legend-row .legend-item .text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 30%);
}

.skills .skills-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.skills .skills-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.skills .skills-header .certifications {
  display: flex;
  gap: 2rem;
}

.skills .skills-header .certifications .cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--default-color);
}

.skills .skills-header .certifications .cert-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
  }
}

.skills .skill-item {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.skills .skill-item:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.skills .skill-item .skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.skills .skill-item .skill-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
}

.skills .skill-item .skill-header .skill-value{
  font-size: 11px;                 
  font-weight: 600;                
  font-family: var(--nav-font);    
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .9;
}

@media (max-width: 576px){
  .skills .skill-item .skill-header .skill-value{
    font-size: 10px;
    letter-spacing: .5px;
  }
}


.skills .skill-item .skill-bar {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 6px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.skills .skill-item .skill-bar .progress-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 1px;
  transition: width 0.9s ease;
  border-radius: 3px;
}

.skills .skill-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .skills .row {
    text-align: center;
  }

  .skills .skills-header {
    margin-bottom: 3rem;
  }

  .skills .skills-header .certifications {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .skills {
    padding: 40px 0;
  }

  .skills .skills-header h3 {
    font-size: 1.8rem;
  }

  .skills .skills-header .certifications {
    flex-direction: column;
    gap: 1rem;
  }

  .skills .skill-item {
    padding: 1.25rem;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  /* Custom properties for quick theming */
  --card-radius: 18px;
  --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  --shadow-hover: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 82%);
  --ring-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  --muted: color-mix(in srgb, var(--default-color), transparent 35%);
  /* Icon badge palettes via color-mix on accent for harmony */
  /* Swiper global fix if a slider is later embedded */
}

.features .intro-panel {
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.features .intro-panel .preview-visual {
  position: relative;
}

.features .intro-panel .preview-visual img {
  display: block;
}

.features .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.features .intro-panel .intro-content .intro-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.features .intro-panel .intro-content .intro-text {
  color: var(--muted);
  margin: 0;
}

.features .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 0;
}

.features .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.features .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.features .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features .intro-panel .intro-content .link-btn {
  color: var(--accent-color);
  border-radius: 999px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  transition: 0.3s;
}

.features .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .features .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features .feature-grid {
    grid-template-columns: 1fr;
  }
}

.features .feature-item {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: var(--card-radius);
  padding: 22px 18px 20px 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  overflow: hidden;
}

.features .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.features .feature-item .f-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--contrast-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .feature-item .f-icon i {
  font-size: 22px;
}

.features .feature-item .f-body .f-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.features .feature-item .f-body .f-text {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
}

.features .feature-item .f-body .f-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid var(--ring-color);
}

.features .badge-blue {
  background: color-mix(in srgb, var(--accent-color), #5dade2 40%);
}

.features .badge-green {
  background: color-mix(in srgb, var(--accent-color), #2ecc71 45%);
}

.features .badge-purple {
  background: color-mix(in srgb, var(--accent-color), #9b59b6 40%);
}

.features .badge-orange {
  background: color-mix(in srgb, var(--accent-color), #f39c12 40%);
}

.features .badge-cyan {
  background: color-mix(in srgb, var(--accent-color), #48c9b0 40%);
}

.features .badge-pink {
  background: color-mix(in srgb, var(--accent-color), #e91e63 35%);
}

.features .assurance-banner {
  margin-top: 22px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.features .assurance-banner .assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
}

.features .assurance-banner .assurance-icon i {
  font-size: 20px;
}

.features .assurance-banner .assurance-content {
  flex: 1;
}

.features .assurance-banner .assurance-content h5 {
  margin: 0 0 4px 0;
  font-weight: 800;
}

.features .assurance-banner .assurance-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.features .assurance-banner .banner-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.features .assurance-banner .banner-btn:hover {
  transform: translateX(2px);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

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

@media (max-width: 992px) {
  .features .intro-panel {
    padding: 24px;
  }

  .features .intro-panel .intro-content .intro-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .features .intro-panel .preview-visual::after {
    width: 90px;
    height: 90px;
  }

  .features .feature-item {
    padding: 18px 16px;
  }

  .features .feature-item .f-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-item .f-icon i {
    font-size: 20px;
  }

  .features .assurance-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .features .assurance-banner .banner-btn {
    width: 100%;
    text-align: center;
  }
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  transition: left 0.5s ease;
}

.services .service-card .service-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

.services .service-card .service-icon-wrapper {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.services .service-card .service-icon-wrapper .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.services .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services .service-card .service-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

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

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

.services .service-card .service-content .service-list li {
  padding: 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.services .service-card .service-content .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.services .service-card .service-content .service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .service-card .service-content .service-pricing .price-tag {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.services .service-card .service-content .service-pricing .price-tag::before {
  content: "From ";
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services .service-card .service-content .service-pricing .service-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 25px;
  text-decoration: none;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .service-content .service-pricing .service-btn i {
  transition: transform 0.3s ease;
}

.services .service-card .service-content .service-pricing .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services .service-card .service-content .service-pricing .service-btn:hover i {
  transform: translateX(3px);
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.services .service-card:hover::before {
  left: 100%;
}

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

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

.services .service-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.services .service-card.featured .service-number {
  background: var(--contrast-color);
  color: var(--accent-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

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

.services .service-card.featured .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

.services .service-card.featured .service-content h4 {
  color: var(--contrast-color);
}

.services .service-card.featured .service-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.services .service-card.featured .service-content .service-list li {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.services .service-card.featured .service-content .service-list li::before {
  background: var(--contrast-color);
}

.services .service-card.featured .service-content .service-pricing {
  border-top-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.services .service-card.featured .service-content .service-pricing .price-tag {
  color: var(--contrast-color);
}

.services .service-card.featured .service-content .service-pricing .price-tag::before {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services .service-card.featured .service-content .service-pricing .service-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.services .service-card.featured .service-content .service-pricing .service-btn:hover {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.services .service-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.services .service-card.featured:hover .service-icon-wrapper .service-icon {
  background: var(--contrast-color);
  transform: rotate(-5deg) scale(1.1);
}

.services .service-card.featured:hover .service-icon-wrapper .service-icon i {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-card {
    padding: 30px 20px;
  }

  .services .service-card .service-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .services .service-card .service-icon-wrapper .service-icon {
    width: 60px;
    height: 60px;
  }

  .services .service-card .service-icon-wrapper .service-icon i {
    font-size: 28px;
  }

  .services .service-card .service-content h4 {
    font-size: 20px;
  }

  .services .service-card .service-content .service-pricing .price-tag {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .services .service-card {
    padding: 25px 15px;
  }

  .services .service-card .service-content .service-pricing {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .services .service-card .service-content .service-pricing .service-btn {
    width: 100%;
    justify-content: center;
  }
}

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

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

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

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

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

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

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

.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(--default-color), transparent 40%);
  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: 0 auto 15px auto;
}

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

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

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

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

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/* ===============================
   PRICING – POPULAR PLAN (CHUẨN)
   =============================== */

/* =========================
   PRICING – CHỈ PHẦN THAY ĐỔI / THÊM MỚI
   (các CSS khác giữ nguyên)
   ========================= */

/* Card gói phổ biến (gói giữa) */
.pricing .featured .pricing-item{
  position: relative;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* Nhô lên nhẹ – không phá layout (override transform của theme) */
@media (min-width: 992px){
  .pricing .featured .pricing-item{
    transform: translateY(-10px) scale(1.02) !important;
  }
}

/* Badge "Phổ biến nhất" (HTML: <div class="badge-popular">Phổ biến nhất</div>) */
.pricing .badge-popular{
  position: absolute;
  top: 18px;
  right: -52px;
  transform: rotate(45deg);
  background: #ffffff;
  color: #333;
  padding: 7px 60px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 10;
  pointer-events: none;
}

/* Giá nổi bật hơn */
.pricing .featured h4{
  font-weight: 700;
  letter-spacing: .3px;
}

/* Danh sách dễ đọc */
.pricing .featured ul{
  line-height: 22px;
}
.pricing .featured ul li{
  align-items: flex-start;
}
.pricing .featured ul li span{
  line-height: 1.45;
}

/* Nút CTA gói giữa */
.pricing .featured .buy-btn{
  border-radius: 10px;
  padding: 10px 26px;
  font-weight: 700;
}
.pricing .featured .buy-btn:hover{
  transform: translateY(-2px);
}

/* Note CHUNG dưới 3 ô (HTML: <div class="pricing-note">...</div>) */
.pricing-note{
  margin-top: 20px;
  font-size: 13px;
  color: #d32f2f;   /* đỏ vừa, không chói */
  font-weight: 700;
}

.pricing-note-sub{
  margin-top: 4px;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

/* Mobile: bỏ nhô cao cho gọn + badge nhỏ lại */
@media (max-width: 768px){
  .pricing .featured .pricing-item{
    transform: none !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
  }
  .pricing .badge-popular{
    top: 14px;
    right: -58px;
    padding: 6px 64px;
    font-size: 11px;
  }
  .pricing-note{
    font-size: 12.5px;
    padding: 0 12px;
  }
}

/*chữ 0% lãi suất*/
/* Hàng CTA */
.pricing-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap; /* mobile tự xuống dòng */
}

/* Nút phụ nhỏ hơn */
.pricing-installment{
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;

  /* gói nền xanh */
  border: 1.5px solid #FF6B57;
  color: #FF6B57;
  background: #FFFFFF;
}

.pricing-installment i{
  margin-right: 6px;
  font-size: 14px;
}

/* Gói nền trắng (cao cấp) */
.pricing-item:not(.featured) .pricing-installment{
  background: #fff;
  color: #E53935;
  border: 1px solid #E53935;
}

/* Note */
.pricing-note{
  margin-top: 10px;
  font-size: 13px;
  color: #E53935;
  font-weight: 600;
}
.pricing-note-sub{
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

/* Mobile: xếp dọc cho gọn */
@media (max-width: 576px){
  .pricing-actions{
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# combo-offer
--------------------------------------------------------------*/
.combo-offer {
  padding: 80px 0;
  /* CHANGED: nền ngoài chuyển sang xám đậm vừa, bớt xanh lè */
  background: linear-gradient(180deg, #e5e7eb, #d1d5db);
  /* CHANGED: chữ mặc định sang đen */
  color: #1a1a1a;
}

.combo-offer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.combo-box {
  /* CHANGED: bỏ kính mờ + nền trong suốt để không bị "dội xanh" */
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  /* CHANGED: thêm shadow cho nổi khối, nhìn VIP hơn */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);

  /* REMOVED:
  backdrop-filter: blur(6px);
  */
   /* ADD */
  border-left: 6px solid var(--accent-color); /* xanh công nghệ, không gắt */
}

.combo-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  /* CHANGED: màu tiêu đề sang xám đậm */
  color: #1f2937;
}

.combo-desc {
  font-size: 16px;
  line-height: 1.7;
  /* CHANGED: bỏ opacity để chữ rõ trên nền trắng */
  opacity: 1;
  margin-bottom: 25px;
  /* CHANGED: màu chữ mềm, dễ đọc */
  color: #4b5563;
}

.combo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.combo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  /* CHANGED: màu chữ list */
  color: #374151;
}

.combo-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  /* CHANGED: đổi màu check sang xanh lá hiện đại */
  color: #16a34a;
  font-weight: bold;
}

.combo-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.combo-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .combo-box {
    padding: 28px 22px;
  }

  .combo-box h2 {
    font-size: 24px;
  }

  .combo-desc {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  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-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.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 {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-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);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# 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 */
}