/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* 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: "Questrial",  sans-serif;
  --nav-font: "Noto Sans",  sans-serif;
}

/* blue 3b82f6 purple 8b5cf6 orange e87532 */
/* https://www.youtube.com/watch?v=Y7f98aduVJ8 */
/*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: #0a0f14; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0f2943; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e87532; /* 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: #0a0f14;  /* The default color of the main navmenu links */
  --nav-hover-color: #e87532; /* 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: #0a0f14; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e87532; /* 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: #faf9fb;
  --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);
}

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

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

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

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

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

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

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

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

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

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding-left: 5px;
  font-weight: 700;
  /*color: var(--accent-color);*/
  color: var( --heading-color);
}

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

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

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

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

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

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

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

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

.footer .social-links {
  margin-top: 20px;
}

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

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title .title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--accent-color);
  opacity: 0.5;
}

.section-title .title-shape svg {
  width: 100%;
  height: 100%;
}

.section-title p {
  margin: 15px auto 0;
  font-size: 16px;
  max-width: 700px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
}

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

  .section-title .subtitle-wrapper .subtitle {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60%;
  height: 70%;
  background: #ee5f12;
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.05;
  animation: blob-move1 15s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: #12ee79;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.05;
  animation: blob-move2 20s ease-in-out infinite alternate-reverse;
}

.hero .bg-element {
  position: absolute;
  width: 70%;
  height: 80%;
  top: 20%;
  right: 10%;
  background: color-mix(in srgb, #3312ee, #ee1296, 50%);
  border-radius: 30% 70% 50% 50%/50% 30% 70% 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  animation: blob-move3 18s ease-in-out infinite alternate;
}

@keyframes blob-move1 {
  0% {
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 50% 50% 30% 70%/60% 40% 60% 40%;
    transform: translate(5%, 5%) rotate(10deg) scale(1.1);
  }
}

@keyframes blob-move2 {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 40% 60% 70% 30%/50% 60% 40% 60%;
    transform: translate(-5%, -5%) rotate(-10deg) scale(1.1);
  }
}

@keyframes blob-move3 {
  0% {
    border-radius: 30% 70% 50% 50%/50% 30% 70% 50%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 60% 40% 40% 60%/40% 60% 40% 60%;
    transform: translate(-3%, 3%) rotate(-5deg) scale(1.05);
  }
}

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

.hero .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.hero .hero-content .hero-cta .btn-get-started {
  padding: 12px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.hero .hero-content .hero-cta .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-content .hero-cta .btn-watch-video {
  display: inline-flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.hero .hero-content .hero-cta .btn-watch-video i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s;
}

.hero .hero-content .hero-cta .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .hero-content .hero-cta .btn-watch-video:hover i {
  transform: scale(1.1);
}

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

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--accent-color);
}

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

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

.hero .hero-image .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .hero-image .image-wrapper .main-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.hero .hero-image .image-wrapper .main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero .hero-image .image-wrapper .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.hero .hero-image .image-wrapper .floating-element i {
  font-size: 1.2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.hero .hero-image .image-wrapper .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero .hero-image .image-wrapper .floating-element.floating-element-1 {
  top: 15%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.hero .hero-image .image-wrapper .floating-element.floating-element-2 {
  top: 45%;
  right: -5%;
  animation: float 7s ease-in-out infinite 1s;
}

.hero .hero-image .image-wrapper .floating-element.floating-element-3 {
  bottom: 10%;
  left: 10%;
  animation: float 5s ease-in-out infinite 0.5s;
}

.hero .hero-image .image-wrapper .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
}

.hero .hero-image .image-wrapper .blur-circle.blur-circle-1 {
  width: 250px;
  height: 250px;
  background-color: #ee1266;
  opacity: 0.05;
  top: -20px;
  right: 20%;
  animation: pulse 2s infinite alternate;
}

.hero .hero-image .image-wrapper .blur-circle.blur-circle-2 {
  width: 180px;
  height: 180px;
  background-color: #6612ee;
  opacity: 0.05;
  bottom: 10%;
  left: 0;
  animation: pulse 10s infinite alternate-reverse;
}

.hero .hero-image .image-wrapper .blur-circle.blur-circle-3 {
  width: 120px;
  height: 120px;
  background-color: color-mix(in srgb, #ee1266, #6612ee, 50%);
  opacity: 0.1;
  top: 30%;
  right: -10%;
  animation: pulse 7s infinite alternate;
}

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

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

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

@keyframes pulse {
  0% {
    opacity: 0.05;
    transform: scale(1);
  }

  100% {
    opacity: 0.2;
    transform: scale(1.2);
  }
}

.hero .trusted-by {
  margin-top: 4rem;
  text-align: center;
}

.hero .trusted-by p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .trusted-by .clients-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.hero .trusted-by .clients-wrapper .client-logo {
  height: 30px;
  opacity: 0.6;
  transition: all 0.3s;
}

.hero .trusted-by .clients-wrapper .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

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

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

  .hero .hero-image .image-wrapper .floating-element {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero image Shape Section
--------------------------------------------------------------*/

.hero .hero-image {
  position: relative;
  padding: 2rem;
}

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

.hero .hero-image .shape-1,
.hero .hero-image .shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 1;
}

.hero .hero-image .shape-1 {
  width: 300px;
  height: 300px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: -20px;
  right: -20px;
  animation: morphShape 15s linear infinite;
}

.hero .hero-image .shape-2 {
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  bottom: -20px;
  left: -20px;
  animation: morphShape 20s linear infinite reverse;
}

@media (max-width: 991px) {

  .hero .hero-image {
    margin-top: 3rem;
  }
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills .skill-box p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
  background-color: var(--accent-color);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-intro {
  padding-right: 30px;
}

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

.features .features-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

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

.features .features-intro .highlights-grid .highlight-item {
  text-align: center;
}

.features .features-intro .highlights-grid .highlight-item .highlight-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.features .features-intro .highlights-grid .highlight-item .highlight-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.features .featured-image-container {
  position: relative;
}

.features .featured-image-container .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.features .featured-image-container .floating-badge i {
  font-size: 18px;
}

.features .features-grid {
  margin: 80px 0;
}

.features .features-grid .feature-box {
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.features .features-grid .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .features-grid .feature-box .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features .features-grid .feature-box .feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  opacity: 0.2;
  transform: scale(1.3);
  z-index: -1;
}

.features .features-grid .feature-box .feature-icon-wrapper i {
  font-size: 32px;
  color: var(--contrast-color);
}

.features .features-grid .feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features .features-grid .feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.features .features-grid .feature-box .progress-indicator {
  width: 100%;
  height: 4px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.features .features-grid .feature-box .progress-indicator .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 30%));
  border-radius: 2px;
  transition: width 1s ease;
}

.features .features-grid .feature-box .progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}

.features .advanced-features-section {
  margin-top: 80px;
}

.features .advanced-features-section h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .features .advanced-features-section h3 {
    font-size: 28px;
  }
}

.features .advanced-features-section .advanced-feature-card {
  background-color: var(--surface-color);
  padding: 35px;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.features .advanced-features-section .advanced-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.features .advanced-features-section .advanced-feature-card:hover .feature-icon-bg {
  transform: scale(1.1) rotate(10deg);
  opacity: 0.15;
}

.features .advanced-features-section .advanced-feature-card .feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.features .advanced-features-section .advanced-feature-card .feature-header .feature-number {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.features .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.features .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.enterprise {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.features .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.premium {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.standard {
  background-color: rgba(54, 144, 231, 0.1);
  color: var(--accent-color);
}

.features .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.coming-soon {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.features .advanced-features-section .advanced-feature-card .feature-content {
  position: relative;
  z-index: 2;
}

.features .advanced-features-section .advanced-feature-card .feature-content h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.features .advanced-features-section .advanced-feature-card .feature-content .feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 8px;
}

.features .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li i {
  color: #28a745;
  font-size: 16px;
}

.features .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li:last-child {
  margin-bottom: 0;
}

.features .advanced-features-section .advanced-feature-card .feature-icon-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  color: var(--accent-color);
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: 1;
}

@media (max-width: 991px) {
  .features .features-intro .highlights-grid {
    margin-top: 30px;
  }

  .features .features-grid {
    margin: 60px 0;
  }

  .features .advanced-features-section {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# plans Section
--------------------------------------------------------------*/
.plans {
  padding: 80px 0;
}

.plans .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.plans .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.plans .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.plans .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.plans .service-item:hover {
  transform: scale(1.05);
}

.plans .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.plans .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.plans .service-item h3 a {
  color: var(--heading-color);
}

.plans .service-item h3 a:hover {
  color: var(--accent-color);
}

.plans .service-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
  .plans h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Services Section  *******************************
--------------------------------------------------------------*/
.services {
  position: relative;
  overflow: hidden;
}

.services .content-header {
  margin-bottom: 5rem;
}

.services .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.services .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.services .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .content-header h2 {
    font-size: 2.5rem;
  }
}

.services .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.services .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services .service-card:hover .service-overlay {
  opacity: 1;
}

.services .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .service-card:hover h3.blue {
  color: #3b82f6;
}

.services .service-card:hover h3.purple {
  color: #8b5cf6;
}

.services .service-card:hover h3.emerald {
  color: #10b981;
}

.services .service-card:hover h3.orange {
  color: #f97316;
}

.services .service-card:hover h3.indigo {
  color: #6366f1;
}

.services .service-card:hover h3.cyan {
  color: #06b6d4;
}

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

.services .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.services .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.services .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.services .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.services .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.services .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.services .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.services .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.services .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.services .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.services .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-card .service-link.purple {
  color: #8b5cf6;
}

.services .service-card .service-link.emerald {
  color: #10b981;
}

.services .service-card .service-link.orange {
  color: #f97316;
}

.services .service-card .service-link.indigo {
  color: #6366f1;
}

.services .service-card .service-link.cyan {
  color: #06b6d4;
}

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

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

.services .cta-section {
  margin-top: 4rem;
}

.services .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .services .cta-section .cta-card {
    padding: 2rem;
  }
}

.services .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.services .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.services .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .services .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.services .cta-section .cta-card .btn-primary,
.services .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .cta-section .cta-card .btn-primary i,
.services .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.services .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.services .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.services .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: scale(1.05);
  color: var(--accent-color);
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# button Call Of Action Section  *******************************
--------------------------------------------------------------*/

.btn-section .cta-section {
  margin-top: 4rem;
}

.btn-section .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .btn-section .cta-section .cta-card {
    padding: 2rem;
  }
}

.btn-section .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .btn-section .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.btn-section .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-section .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .btn-section .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.btn-section .cta-section .cta-card .btn-primary,
.btn-section .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-section .cta-section .cta-card .btn-primary i,
.btn-section .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.btn-section .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-section .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.btn-section .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.btn-section .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: scale(1.05);
  color: var(--accent-color);
}

@keyframes float {

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

  50% {
    transform: translateY(-50%);
  }
}
/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  position: relative;
  padding: 60px 30px 80px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services-2 .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.services-2 .service-item .service-icon {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 34px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.services-2 .service-item .service-icon i {
  line-height: 1;
}

.services-2 .service-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.services-2 .service-item h3 a span {
  display: inline-block;
  color: var(--accent-color);
}

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

.services-2 .service-item p {
  color: var(--default-color);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.services-2 .service-item .card-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services-2 .service-item .card-action i {
  transition: transform 0.3s ease;
}

.services-2 .service-item .card-action:hover i {
  transform: rotate(45deg);
}

.services-2 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-2 .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services-2 .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-2 .service-item:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-2 .service-item {
    padding: 50px 25px 70px;
  }

  .services-2 .service-item h3 {
    font-size: 22px;
  }

  .services-2 .service-item .service-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .services-2 {
    padding: 70px 0 50px;
  }
}

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

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/
.portfolio-2 .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.portfolio-2 .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio-2 .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.portfolio-2 .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-2 .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

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

.portfolio-2 .portfolio-card:hover .portfolio-img .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-2 .portfolio-card .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-2 .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio-2 .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-2 .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio-2 .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio-2 .portfolio-card .portfolio-info {
  padding: 20px;
}

.portfolio-2 .portfolio-card .portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio-2 .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.portfolio-2 .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-2 .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

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

.portfolio-2 .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);
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 {
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-2 .critic-reviews {
  margin-bottom: 60px;
}

.testimonials-2 .critic-reviews .critic-review {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonials-2 .critic-reviews .critic-review .review-quote {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--accent-color);
  opacity: 0.2;
  line-height: 1;
}

.testimonials-2 .critic-reviews .critic-review .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials-2 .critic-reviews .critic-review .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 18px;
}

.testimonials-2 .critic-reviews .critic-review p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
  font-style: italic;
}

.testimonials-2 .critic-reviews .critic-review .critic-info .critic-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 16px;
}

.testimonials-2 .critic-reviews .critic-review:hover {
  transform: translateY(-10px);
}

.testimonials-2 .testimonials-container {
  margin-bottom: 60px;
}

.testimonials-2 .testimonials-container .swiper-wrapper {
  height: auto !important;
  padding-bottom: 20px;
}

.testimonials-2 .testimonials-container .testimonial-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 3px solid var(--accent-color);
}

.testimonials-2 .testimonials-container .testimonial-item .stars {
  margin-bottom: 15px;
  display: flex;
}

.testimonials-2 .testimonials-container .testimonial-item .stars i {
  color: #FFD700;
  margin-right: 3px;
  font-size: 16px;
}

.testimonials-2 .testimonials-container .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--default-color);
  line-height: 1.6;
}

.testimonials-2 .testimonials-container .testimonial-item .testimonial-profile {
  display: flex;
  align-items: center;
}

.testimonials-2 .testimonials-container .testimonial-item .testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-right: 15px;
}

.testimonials-2 .testimonials-container .testimonial-item .testimonial-profile div h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials-2 .testimonials-container .testimonial-item .testimonial-profile div h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: normal;
}

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

.testimonials-2 .testimonials-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.testimonials-2 .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 10px;
}

.testimonials-2 .overall-rating {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.testimonials-2 .overall-rating .rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonials-2 .overall-rating .rating-stars {
  margin-bottom: 15px;
}

.testimonials-2 .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 22px;
  margin: 0 3px;
}

.testimonials-2 .overall-rating p {
  color: var(--default-color);
  font-size: 15px;
  margin-bottom: 15px;
}

.testimonials-2 .overall-rating .rating-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonials-2 .overall-rating .rating-platforms span {
  font-size: 14px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 5px 15px;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .testimonials-2 .section-header h2 {
    font-size: 28px;
  }

  .testimonials-2 .critic-reviews .critic-review {
    margin-bottom: 30px;
  }

  .testimonials-2 .testimonials-container .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials-2 {
    padding: 60px 0;
  }

  .testimonials-2 .section-header h2 {
    font-size: 24px;
  }

  .testimonials-2 .overall-rating {
    padding: 30px;
  }

  .testimonials-2 .overall-rating .rating-number {
    font-size: 36px;
  }

  .testimonials-2 .overall-rating .rating-stars i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 {
  --card-border-radius: 20px;
}

.pricing-2 .row {
  justify-content: center;
}

.pricing-2 .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.pricing-2 .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing-2 .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing-2 .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing-2 .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing-2 .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing-2 .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.pricing-2 .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing-2 .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

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

.pricing-2 .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing-2 .plan-features {
  padding: 20px 30px;
  flex: 1;
}

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

.pricing-2 .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing-2 .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-2 .plan-features ul li i {
  font-size: 18px;
}

.pricing-2 .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing-2 .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-2 .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing-2 .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing-2 .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing-2 .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing-2 .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing-2 .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing-2 .plan-features,
  .pricing-2 .plan-pricing,
  .pricing-2 .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

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

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

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

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

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

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

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

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

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

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

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

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

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

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

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

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

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

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

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  background-color: var(--background-color);
  padding-bottom: 20px;
}

.about .content h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

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

.about .content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.about .content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 2.5rem;
}

.about .stats-wrapper {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .stats-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.about .stats-wrapper .stat-item {
  display: flex;
  flex-direction: column;
}

.about .stats-wrapper .stat-item .number {
  font-size: 3rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stats-wrapper .stat-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about .cta-wrapper {
  margin-top: 2.5rem;
}

.about .cta-wrapper .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.about .cta-wrapper .btn-link i {
  transition: transform 0.3s ease;
}

.about .cta-wrapper .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .cta-wrapper .btn-link:hover i {
  transform: translateX(4px);
}

.about .image-wrapper {
  position: relative;
  padding-left: 2rem;
}

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

.about .image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .floating-element {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-element {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.about .image-wrapper .floating-element .quote-content blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 300;
}

.about .image-wrapper .floating-element .quote-content cite {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }
}

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

/*--------------------------------------------------------------
# Call Us Section
--------------------------------------------------------------*/
.call-us {
  padding: 0;
}

.call-us .container {
  padding: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-us .container {
    padding: 60px;
  }
}

.call-us .content h3 {
  font-size: 48px;
  font-weight: 700;
}

.call-us .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

.call-us .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  z-index: -1;
}

.call-us .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
  font-size: 18px;
}

.call-us .content .cta-btn {
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: var(--accent-color);
}

.call-us .content .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.call-us .img {
  position: relative;
}

.call-us .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-radius: 15px;
  transform: rotate(6deg);
  z-index: 2;
}

.call-us .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}

.call-us .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding-top: 60px;
  padding-bottom: 60px;
}

.team .member-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.team .member-card:hover .member-media .social-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team .member-card .member-media {
  position: relative;
  aspect-ratio: 1/1;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.team .member-card .member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team .member-card .member-media .social-list {
  list-style: none;
  position: absolute;
  inset-inline: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  background: color-mix(in srgb, var(--background-color), var(--accent-color) 6%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 8px 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.team .member-card .member-media .social-list a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--default-color);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.team .member-card .member-media .social-list a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  transform: translateY(-2px);
}

.team .member-card .member-content {
  padding: 18px 18px 22px;
}

.team .member-card .member-content .member-name {
  font-size: 1.05rem;
  margin: 0 0 4px 0;
}

.team .member-card .member-content .member-role {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.team .member-card .member-content .member-bio {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.team .team-highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 14px;
  padding: 22px 22px;
}

.team .team-highlight .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-right: 14px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-highlight .icon-wrap i {
  font-size: 1.25rem;
}

.team .team-highlight .title {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
}

.team .team-highlight .desc {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.team .join-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(1200px 300px at 20% -10%, color-mix(in srgb, var(--accent-color), transparent 82%), transparent 60%), radial-gradient(900px 300px at 120% 110%, color-mix(in srgb, var(--accent-color), transparent 86%), transparent 60%), var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
}

.team .join-card .join-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.team .join-card .join-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .join-card .join-content .btn-join {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.team .join-card .join-content .btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), white 10%);
  color: var(--contrast-color);
}

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

@media (max-width: 992px) {
  .team .team-highlight .icon-wrap {
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  .team .member-card .member-content {
    padding: 16px;
  }

  .team .member-card .member-content .member-bio {
    font-size: 0.9rem;
  }

  .team .join-card .join-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

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

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

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Links 
--------------------------------------------------------------*/
.link-white {
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Contact message 
--------------------------------------------------------------*/
#my-form-status{
  background-color: #0f2943;
  color: #ffffff;
  font-weight: 600;
  padding-left: 5px;
}
/*--------------------------------------------------------------
# Modal popup Section
--------------------------------------------------------------*/

.myBtn, .myBtnIgnite, .myBtnAccelerate, .myBtnEnterprise {
  border: #000 solid 0px;
}
/* The Modal (background) */
.modal-one {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 998; /* Sit on top */
  padding-top: 20px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-one {
  background-color: #fefefe;
  margin: auto;
  /*padding: 10px;*/
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
}

.modal-body-one {
  padding: 10px; /* Apply padding here instead */
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 30px;
  font-weight: bold;
  margin-right: 15px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


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