/**
* Template Name: DevFolio
* Template URL: https://bootstrapmade.com/devfolio-bootstrap-portfolio-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #1a1033; /* Deep aubergine canvas */
  --default-color: #d9d3e8; /* Soft lavender body copy */
  --heading-color: #fbfaff; /* High-contrast headings */
  --accent-color: #c4b5fd; /* Accessible lavender accent on dark surfaces */
  --surface-color: #281a46; /* Raised plum surfaces */
  --contrast-color: #1a1033; /* Dark text on light accent fills */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #281a46; /* Used as the background color for mobile navigation menu */
}

/* 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: #21143d;
  --surface-color: #2b1c4d;
}

.dark-background {
  --background-color: #120a24;
  --default-color: #eeeaf7;
  --heading-color: #ffffff;
  --surface-color: #21143b;
  --contrast-color: #1a1033;
}

.accent-background {
  --background-color: #5b21b6;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #6d28d9;
  --contrast-color: #35106b;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  background-image:
    linear-gradient(color-mix(in srgb, var(--accent-color), transparent 94%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 94%) 1px, transparent 1px);
  background-size: 42px 42px;
  font-family: var(--default-font);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  z-index: 10000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.whatsapp-float i {
  font-size: 26px;
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 25%);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #7c3aed;
  --bs-btn-border-color: #7c3aed;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #6d28d9;
  --bs-btn-hover-border-color: #6d28d9;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #5b21b6;
  --bs-btn-active-border-color: #5b21b6;
}

.btn-outline-primary {
  --bs-btn-color: #c4b5fd;
  --bs-btn-border-color: #c4b5fd;
  --bs-btn-hover-color: #1a1033;
  --bs-btn-hover-bg: #c4b5fd;
  --bs-btn-hover-border-color: #c4b5fd;
  --bs-btn-active-color: #1a1033;
  --bs-btn-active-bg: #ddd6fe;
  --bs-btn-active-border-color: #ddd6fe;
}

.btn-ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost-light:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
}

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 {
  --background-color: #120a24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.header .logo h1,
.header .logo .sitename {
  display: block;
  font-size: 28px;
  margin: 0;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--heading-color);
  letter-spacing: 0;
}

.scrolled .header {
  box-shadow: 0px 12px 30px rgba(15, 23, 42, 0.16);
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #c4b5fd;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-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(--accent-color);
  }

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

  .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(18, 10, 36, 0.9);
    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;
}

.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 30%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 5px;
  transition: 0.3s;
}

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

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

.footer .credits a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  background-image:
    linear-gradient(color-mix(in srgb, var(--accent-color), transparent 94%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 94%) 1px, transparent 1px);
  background-size: 42px 42px;
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

.dark-background,
.accent-background {
  background-image: none;
}

@media (max-width: 1199px) {

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(90vh - 76px);
  position: relative;
  padding: 108px 0 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.hero .hero-content {
  max-width: 1320px;
}

.hero .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.hero .hero-copy {
  min-width: 0;
}

.hero .hero-eyebrow {
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 3px solid var(--accent-color);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  min-height: 2.85em;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 .typed-cursor {
  color: var(--accent-color);
  font-weight: 400;
}

.hero .hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.hero .hero-actions .btn {
  min-height: 48px;
  padding: 11px 21px;
}

.hero .hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.hero .hero-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hero .hero-profile-link i {
  font-size: 16px;
}

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

.hero .hero-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 730px;
  margin: 42px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero .hero-disciplines span {
  color: var(--accent-color);
}

.hero .hero-portrait {
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero .hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 82px 0 70px;
  }

  .hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    min-height: 3em;
    font-size: clamp(34px, 7vw, 48px);
  }

  .hero .hero-lead {
    font-size: 18px;
  }

  .hero .hero-actions {
    gap: 20px;
  }

  .hero .hero-disciplines {
    margin-top: 34px;
  }

  .hero .hero-portrait {
    width: min(78vw, 390px);
    justify-self: center;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    min-height: 3.8em;
    font-size: clamp(30px, 9.5vw, 40px);
  }

  .hero .hero-disciplines {
    display: block;
  }

  .hero .hero-disciplines span {
    margin: 0 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    min-height: auto;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .container {
  padding: 0 12px;
}

.about .about-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.55fr);
  align-items: stretch;
  gap: clamp(32px, 5vw, 72px);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.about .about-portrait {
  position: relative;
  min-height: 430px;
  border-radius: 14px;
  overflow: hidden;
  background: #e7edf2;
}

.about .about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about .about-portrait-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 18px;
  color: #ffffff;
  background: rgba(18, 10, 36, 0.88);
  border-left: 3px solid var(--accent-color);
  backdrop-filter: blur(8px);
}

.about .about-portrait-caption strong,
.about .about-portrait-caption span {
  display: block;
}

.about .about-portrait-caption strong {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 17px;
}

.about .about-portrait-caption span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.about .about-content {
  align-self: center;
  padding: clamp(10px, 2vw, 24px) clamp(4px, 1vw, 12px) clamp(10px, 2vw, 24px) 0;
}

.about .about-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about .about-content h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.about .about-content p {
  max-width: 720px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 17px;
  line-height: 1.85;
}

.about .about-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  padding: 17px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 87%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 87%);
}

.about .about-focus span {
  position: relative;
  margin: 4px 22px 4px 0;
  padding-right: 22px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
}

.about .about-focus span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.about .about-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.about .about-cv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 55%);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about .about-cv-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .about .about-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about .about-portrait {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about .about-content {
    padding: 0 4px 8px;
  }
}

@media (max-width: 575px) {
  .about .about-profile {
    padding: 14px;
    border-radius: 16px;
  }

  .about .about-portrait {
    aspect-ratio: 1 / 1;
  }

  .about .about-portrait-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .about .about-content h2 {
    font-size: 29px;
  }

  .about .about-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .about .about-focus span {
    width: 100%;
    margin-right: 0;
    padding: 5px 0 5px 14px;
  }

  .about .about-focus span:not(:last-child)::after {
    top: 50%;
    right: auto;
    left: 0;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  grid-column: span 2;
  min-height: 250px;
  padding: clamp(25px, 3vw, 38px);
  background: var(--surface-color);
  transition: background-color 0.2s ease;
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.services .service-item:nth-child(n + 4) {
  grid-column: span 3;
}

.services .service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

.services .service-meta span {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services .service-meta i {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 26px;
  line-height: 1;
  transition: color 0.2s ease;
}

.services .service-item h3 {
  max-width: 300px;
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

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

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

.services .service-item p {
  max-width: 520px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-size: 15px;
  line-height: 1.75;
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
}

.services .service-link i {
  transition: transform 0.2s ease;
}

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

.services .service-item:hover {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 4%);
}

.services .service-item:hover .service-meta i {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services .service-item,
  .services .service-item:nth-child(n + 4) {
    grid-column: span 1;
  }

  .services .service-item:last-child {
    grid-column: 1 / -1;
  }
}

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

  .services .service-item,
  .services .service-item:nth-child(n + 4),
  .services .service-item:last-child {
    grid-column: 1;
    min-height: 0;
  }

  .services .service-meta {
    margin-bottom: 34px;
  }
}

/*--------------------------------------------------------------
# Certificates Page
--------------------------------------------------------------*/
.banner-small {
  position: relative;
  overflow: hidden;
  padding: 112px 0 84px;
  background:
    radial-gradient(circle at 92% 14%, color-mix(in srgb, var(--accent-color), transparent 78%) 0, transparent 27%),
    linear-gradient(135deg, #1a1033 0%, #241644 52%, #1e1239 100%);
}

.banner-small::before,
.banner-small::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.banner-small::before {
  top: -135px;
  right: 12%;
  width: 280px;
  height: 280px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
}

.banner-small::after {
  bottom: -170px;
  left: -70px;
  width: 330px;
  height: 330px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.banner-small .container {
  position: relative;
  z-index: 1;
}

.banner-small .eyebrow {
  letter-spacing: 0.13em;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-color);
}

.banner-small h1 {
  max-width: 700px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.banner-small .lead {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.credential-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  border-radius: 999px;
  color: var(--heading-color);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  font-size: 14px;
  font-weight: 700;
}

.credential-highlights i {
  color: var(--accent-color);
}

.banner-illustration {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  transform: rotate(1.5deg);
}

.banner-illustration img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.banner-badge {
  position: absolute;
  left: -22px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--heading-color);
  background: rgba(40, 26, 70, 0.96);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  font-size: 14px;
  font-weight: 800;
  transform: rotate(-1.5deg);
}

.banner-badge i {
  color: var(--accent-color);
  font-size: 20px;
}

.certificates .section-title p {
  max-width: 640px;
  margin-inline: auto;
}

.certificate-list {
  display: grid;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.certificates .certificate-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 87%);
  background: var(--surface-color);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.certificates .certificate-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 62%);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.13);
}

.certificates .certificate-media {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: #21143d;
}

.certificates .certificate-backdrop {
  position: absolute;
  z-index: -1;
  inset: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  object-fit: cover;
  filter: blur(20px) saturate(0.8);
  opacity: 0.2;
  transform: scale(1.06);
}

.certificates .certificate-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
}

.certificates .certificate-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.18));
  transition: transform 0.35s ease;
}

.certificates .certificate-card:hover .certificate-image {
  transform: scale(1.018);
}

.certificate-view {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--heading-color);
  background: rgba(18, 10, 36, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.certificate-media:hover .certificate-view {
  color: var(--accent-color);
}

.certificates .certificate-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 42px;
}

.certificates .certificate-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: var(--accent-color);
  font-weight: 800;
}

.certificates .certificate-meta i {
  font-size: 15px;
}

.certificates .certificate-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.certificates .certificate-body h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.certificates .certificate-body p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.72;
}

.certificate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.certificate-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .banner-small {
    padding: 96px 0 68px;
  }

  .certificates .certificate-card {
    grid-template-columns: 1fr;
  }

  .certificates .certificate-media {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  }

  .certificates .certificate-body {
    padding: 36px;
  }
}

@media (max-width: 575px) {
  .banner-small {
    padding: 80px 0 54px;
  }

  .banner-small h1 {
    font-size: 42px;
  }

  .credential-highlights {
    gap: 8px;
    margin-top: 22px;
  }

  .credential-highlights span {
    padding: 8px 11px;
    font-size: 12px;
  }

  .certificate-list {
    gap: 24px;
  }

  .certificates .certificate-card {
    border-radius: 18px;
  }

  .certificates .certificate-media {
    min-height: 270px;
    padding: 18px;
  }

  .certificates .certificate-image {
    max-height: 235px;
  }

  .certificate-view {
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .certificates .certificate-body {
    padding: 28px 22px 30px;
  }

  .certificates .certificate-body h3 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

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

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

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

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

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

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects {
  background: linear-gradient(180deg, #21143d 0%, var(--background-color) 100%);
}

.projects .project-card {
  color: var(--default-color);
  background: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.16) !important;
  box-shadow: 0 16px 34px rgba(8, 4, 18, 0.24) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.projects .project-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%) !important;
  box-shadow: 0 22px 48px rgba(8, 4, 18, 0.34) !important;
}

.projects .project-card .card-img-top {
  height: 215px;
  object-fit: cover;
  background: #e2e8f0;
}

.projects .project-featured {
  min-height: 100%;
}

.projects .project-featured .card-img-top {
  height: 310px;
}

.projects .card-body {
  padding: 24px;
}

.projects .project-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.projects .card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.projects .card-text {
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.projects .project-collaboration {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent-color);
  border-radius: 0 9px 9px 0;
  background: rgba(196, 181, 253, 0.08);
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 13px;
  line-height: 1.6;
}

.projects .project-collaboration i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent-color);
}

.projects .project-collaborator-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -7px 0 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 13px;
  line-height: 1.5;
}

.projects .project-collaborator-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.projects .project-collaborator-contact span i {
  color: var(--accent-color);
}

.projects .project-collaborator-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 45%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.projects .project-collaborator-contact a:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.projects .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 20px;
}

.projects .project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(196, 181, 253, 0.11);
  color: #ddd6fe;
  border: 1px solid rgba(196, 181, 253, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.projects .project-link-group .btn {
  min-height: 36px;
}

.projects .btn-outline-dark {
  --bs-btn-color: #ddd6fe;
  --bs-btn-border-color: rgba(221, 214, 254, 0.58);
  --bs-btn-hover-color: #1a1033;
  --bs-btn-hover-bg: #ddd6fe;
  --bs-btn-hover-border-color: #ddd6fe;
  --bs-btn-active-color: #1a1033;
  --bs-btn-active-bg: #c4b5fd;
  --bs-btn-active-border-color: #c4b5fd;
}

@media (max-width: 991px) {
  .projects .project-featured .card-img-top {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .projects .project-card .card-img-top,
  .projects .project-featured .card-img-top {
    height: 205px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-right: 15px;
}

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

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-page-title {
  overflow: hidden;
  padding: clamp(70px, 9vw, 112px) 0 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(196, 181, 253, 0.15), transparent 28%),
    linear-gradient(135deg, #120a24 0%, #21143d 58%, #1a1033 100%);
}

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

.service-page-title .breadcrumbs a {
  color: #ddd6fe;
}

.service-page-title .service-page-eyebrow {
  margin: 0 0 14px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-page-title h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-page-title .service-page-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: #ded8ec;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 22px;
  border: 1px solid rgba(196, 181, 253, 0.17);
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 18px 42px rgba(8, 4, 18, 0.2);
}

.service-details .services-list-label,
.service-details .service-section-label {
  display: block;
  margin: 0 0 14px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-details .services-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border-left: 0;
  border-radius: 10px;
  margin: 4px 0;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-details .services-list a span {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  background: rgba(196, 181, 253, 0.12);
}

.service-details .services-list a:hover {
  color: var(--heading-color);
  background: rgba(196, 181, 253, 0.08);
}

.service-details .service-contact-card {
  padding: 28px;
  border: 1px solid rgba(196, 181, 253, 0.17);
  border-radius: 18px;
  background: linear-gradient(145deg, #302052 0%, #241740 100%);
  box-shadow: 0 18px 42px rgba(8, 4, 18, 0.2);
}

.service-details .service-contact-card > span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
}

.service-details .service-contact-card h2 {
  margin: 12px 0;
  font-size: 25px;
  line-height: 1.2;
}

.service-details .service-contact-card p {
  margin-bottom: 22px;
}

.service-details .service-contact-card .btn {
  width: 100%;
}

.service-details .services-img {
  width: 100%;
  max-height: 430px;
  margin-bottom: 38px;
  border: 1px solid rgba(196, 181, 253, 0.17);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(8, 4, 18, 0.24);
}

.service-details .service-introduction {
  max-width: 780px;
  margin-bottom: 52px;
}

.service-details .service-introduction h2,
.service-details .service-content-block > h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-details p {
  color: color-mix(in srgb, var(--default-color), transparent 6%);
  font-size: 16px;
  line-height: 1.8;
}

.service-details .service-content-block {
  padding: 42px 0;
  border-top: 1px solid rgba(196, 181, 253, 0.17);
}

.service-details .service-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.service-details .service-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: 14px;
  background: rgba(40, 26, 70, 0.66);
  color: color-mix(in srgb, var(--default-color), transparent 4%);
  font-size: 15px;
  line-height: 1.65;
}

.service-details .service-deliverables i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: 0;
  border-radius: 50%;
  background: rgba(196, 181, 253, 0.13);
  font-size: 20px;
  color: var(--accent-color);
}

.service-details .service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.15);
  border-radius: 16px;
  background: rgba(196, 181, 253, 0.15);
}

.service-details .service-process-grid article {
  padding: 26px 22px;
  background: var(--surface-color);
}

.service-details .service-process-grid article > span {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-details .service-process-grid h3 {
  margin: 30px 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.service-details .service-process-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.service-details .service-fit {
  display: flex;
  gap: 22px;
  margin: 10px 0 28px;
  padding: 30px;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.12), rgba(40, 26, 70, 0.64));
}

.service-details .service-fit > i {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 30px;
}

.service-details .service-fit h2 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 800;
}

.service-details .service-fit p,
.service-details .service-availability {
  margin: 0;
}

.service-details .service-availability {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 14px;
}

@media (min-width: 992px) {
  .service-details aside {
    position: sticky;
    top: 112px;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .service-page-title {
    padding: 58px 0 56px;
  }

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

  .service-details .service-deliverables,
  .service-details .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-details .service-deliverables li {
    min-height: 0;
  }

  .service-details .service-fit {
    padding: 24px;
  }
}
