/**
* Template Name: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #149ddd; /* 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: #a8a9b4;  /* 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: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* 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: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --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);
  line-height: 1.65;
  -ms-overflow-style: none;
  scrollbar-width: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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

/* 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: linear-gradient(180deg, color-mix(in srgb, var(--background-color), #071a2c 35%) 0%, var(--background-color) 100%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 6px 16px 0;
  width: 350px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: inset -1px 0 0 rgba(20, 157, 221, 0.12), 8px 0 28px rgba(0, 0, 0, 0.28);
}

.header::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.header .profile-img img {
  margin: 16px auto 18px;
  display: block;
  width: 110px;
  height: 110px;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 35px rgba(20, 157, 221, 0.7), 0 0 70px rgba(20, 157, 221, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  filter: brightness(1.1) contrast(1.08);
}

.header .profile-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(20, 157, 221, 0.9), 0 0 90px rgba(20, 157, 221, 0.5);
}

.header .logo {
  line-height: 1;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header .logo h1 {
  font-size: 17px;
  margin: 0;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.35;
  letter-spacing: 0.4px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #d4ecf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-spacing: 3px;
}

.header .hero-description {
  text-align: center;
  margin-bottom: 16px;
  padding: 0 12px;
}

.hero-side {
  text-align: center;
  margin-bottom: 25px;
  padding: 0 5px;
}

.header .hero-title {
  font-size: 15px;
  color: var(--accent-color);
  font-weight: 800;
  margin: 5px 0 0 0;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.header .hero-desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 8px 0 0 0;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.header-bio {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 8px 0 0 0;
  line-height: 1.6;
}

.header-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.header-buttons .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.header-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.header-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 157, 221, 0.3);
}

.header-buttons .btn-secondary {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.header-buttons .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 157, 221, 0.3);
}

/* # Hero Section
-------------------------------------------------------------- */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  image-rendering: high-quality;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.hero:before {
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(4, 11, 20, 0.44) 0%, rgba(4, 11, 20, 0.05) 100%);
  width: min(calc(100% - 48px), 1320px);
  margin-left: auto;
  margin-right: auto;
}
.hero-typed {
  margin-top: 16px;
}
.hero h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.95), 0px 0px 30px rgba(0, 0, 0, 0.8), 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  word-spacing: 3px;
  color: #ffffff;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 8px rgba(20, 157, 221, 0.15));
  text-rendering: optimizeLegibility;
}

.hero p {
  margin: 12px 0 0 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0px 0px 15px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.hero-typed p {
  font-size: 18px;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0px 0px 15px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero-buttons .btn {
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn i {
  transition: transform 0.28s ease;
}

.hero-buttons .btn:hover i {
  transform: translateX(2px);
}

.hero-buttons .btn:active {
  transform: translateY(-1px) scale(0.995);
}

.hero-buttons .btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0d7fa8 100%);
  color: var(--contrast-color);
  border-color: rgba(20, 157, 221, 0.65);
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #0d7fa8 0%, var(--accent-color) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 157, 221, 0.5);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--contrast-color);
  border-color: rgba(20, 157, 221, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-buttons .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 157, 221, 0.5);
}

.hero-buttons .btn-download-cv {
  background: rgba(139, 92, 246, 0.15);
  color: var(--contrast-color);
  border: 2px solid rgba(139, 92, 246, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-buttons .btn-download-cv:hover {
  background: #8b5cf6;
  color: #fff;
  border-color: #8b5cf6;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

.hero-buttons .btn-download-cv i {
  transition: transform 0.28s ease;
}

.hero-buttons .btn-download-cv:hover i {
  transform: translateY(2px);
}

/* Resume Download Button */
.resume-download-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.resume-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-resume-download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #44ade3;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 10px;
  border: 1.5px solid rgb(67 173 227 / 55%);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}


.btn-resume-download i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.btn-resume-download:hover {
  background: #44ade3;
  color: #fff;
  border-color: #44ade3;
  box-shadow: 0 3px 12px rgba(67, 173, 227, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-resume-download:hover i {
  transform: translateY(1px);
}

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

@media (max-width: 768px) {
  .hero .container {
    padding: 20px 16px;
    border-radius: 14px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero h2 {
    font-size: 32px;
  }

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

  .hero-buttons .btn {
    padding: 11px 18px;
    font-size: 13px;
    min-height: 50px;
  }

  .hero-tech-stack {
    margin-bottom: 16px;
  }

  .hero-tech-stack .tech-icons {
    gap: 7px;
  }

  .hero-tech-stack .tech-badge {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* Hero Section Styles */
.hero-description {
  text-align: left;
  margin-top: 18px;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-title {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-desc {
  font-size: 15px;
  color: #ffffff;
  margin: 10px 0 0 0;
  font-weight: 600;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95), 0px 0px 15px rgba(0, 0, 0, 0.7), 1px 1px 4px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 8px rgba(20, 157, 221, 0.2));
}

.hero-bio {
  font-size: 15px;
  color: #d9d9d9;
  margin: 12px 0 0 0;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95), 0px 0px 18px rgba(0, 0, 0, 0.75), 1px 1px 5px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  max-width: 650px;
  letter-spacing: 0.3px;
}

.hero-tech-stack {
  margin: 8px 0 18px;
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 860px;
}

.hero-tech-stack .tech-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-tech-stack .tech-label {
  min-width: 78px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9fd9f2;
  padding-top: 6px;
}

.hero-tech-stack .tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tech-stack .tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  font-size: 12px;
  font-weight: 700;
  color: #f3fbff;
  background: linear-gradient(135deg, rgba(9, 26, 42, 0.72) 0%, rgba(25, 46, 66, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 14px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.hero-tech-stack .tech-badge img,
.hero-tech-stack .tech-badge i {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.hero-tech-stack .tech-badge img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.hero-tech-stack .tech-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}

.hero-tech-stack .tech-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.hero-tech-stack .tech-badge:hover::after {
  left: 130%;
}

.hero-tech-stack .tech-badge:nth-child(1) {
  border-color: rgba(97, 218, 251, 0.45);
}

.hero-tech-stack .tech-badge:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-tech-stack .tech-badge:nth-child(3) {
  border-color: rgba(2, 150, 219, 0.45);
}

.hero-tech-stack .tech-badge:nth-child(4) {
  border-color: rgba(55, 118, 171, 0.45);
}

.hero-tech-stack .tech-badge:nth-child(5) {
  border-color: rgba(255, 45, 32, 0.45);
}

.hero-tech-stack .tech-badge:nth-child(6) {
  border-color: rgba(36, 150, 237, 0.45);
}

.hero-tech-stack .tech-badge:nth-child(7) {
  border-color: rgba(240, 80, 50, 0.45);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 14px;
}

.header .social-links {
  margin: 0 0 18px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header .social-links a {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 157, 221, 0.15) 0%, rgba(20, 157, 221, 0.05) 100%);
  color: var(--accent-color);
  margin: 0;
  border-radius: 50%;
  text-align: center;
  width: 38px;
  height: 38px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2.5px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.header .social-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 15px 35px rgba(20, 157, 221, 0.6), 0 0 40px rgba(20, 157, 221, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
}

.header .social-links a:hover::before {
  width: 200px;
  height: 200px;
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 350px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .header {
    width: 300px;
  }

  .header~main,
  .header~#footer {
    margin-left: 300px;
  }

  .hero .container {
    width: min(calc(100% - 40px), 1140px);
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero h2 {
    font-size: 50px;
  }
}

@media (min-width: 1800px) {
  .hero .container {
    align-items: flex-start;
    width: min(calc(100% - 72px), 1320px);
  }

  .hero h2 {
    font-size: 56px;
    max-width: 90%;
  }
}

@media (max-width: 1199px) {
  .header~main,
  .header~#footer {
    margin-left: 0;
    transition: margin-left 0.3s ease-in-out;
  }

  .header {
    left: -350px;
  }

  .header.header-show~main,
  .header.header-show~#footer {
    margin-left: 350px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .hero .container {
    max-width: 960px;
    padding: 34px 26px;
  }

  .hero h2 {
    font-size: 44px;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 2px 4px 12px;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 14px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 6px 12px;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 6px;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
  color: color-mix(in srgb, var(--nav-color), var(--accent-color) 28%);
}

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

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

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
  background: linear-gradient(90deg, rgba(20, 157, 221, 0.2) 0%, rgba(20, 157, 221, 0.05) 100%);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(20, 157, 221, 0.25);
}

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

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

.navmenu .dropdown {
  display: block;
}

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

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

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  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);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# 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 {
  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);
  padding: 50px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 46px;
  position: relative;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: 0.4px;
}

@media (max-width: 991px) {
  section,
  .section {
    padding: 58px 0;
  }

  .section-title {
    padding-bottom: 38px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  border-radius: 8px;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.75;
}

.about .about-title-copy {
  max-width: 760px;
}

.about .about-title-copy p {
  margin: 0;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 14%);
  line-height: 1.75;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 88%) 0%, transparent 70%);
  pointer-events: none;
}

.about .content h2 {
  font-weight: 800;
  font-size: 32px;
  color: var(--heading-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .content .tech-stack {
  font-size: 15px;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(20, 157, 221, 0.1) 0%, rgba(20, 157, 221, 0.05) 100%);
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
}

.about .content .about-intro {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-weight: 500;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 10px 14px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.about .content ul li:hover {
  transform: translateX(5px);
}

.about .content ul strong {
  margin-right: 10px;
  color: var(--heading-color);
  min-width: 130px;
  font-weight: 700;
}

.about .content ul span {
  color: var(--accent-color);
  font-weight: 600;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--accent-color);
  line-height: 0;
}

.about .about-pro {
  align-items: stretch;
  position: relative;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 0%, color-mix(in srgb, var(--surface-color), #f5fbfe 55%) 100%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .about-pro > div[class*="col-"] {
  display: flex;
}

.about .about-main-card,
.about .about-contact-card {
  height: 100%;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, color-mix(in srgb, var(--surface-color), #f7fbfe 70%) 100%);
  box-shadow: 0 16px 34px rgba(5, 13, 24, 0.05);
  position: relative;
  overflow: hidden;
}

.about .about-main-card::before,
.about .about-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), white 35%) 100%);
}

.about .about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.about .about-main-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.24;
}

.about .about-main-card .about-summary {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 760px;
}

.about .about-main-card p {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.78;
}

.about .about-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.about .about-feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border-radius: 14px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.about .about-feature-list .feature-item i {
  color: var(--accent-color);
  font-size: 15px;
  margin-top: 3px;
}

.about .about-feature-list .feature-item span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.about .about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.about .mini-stat {
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.about .mini-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
}

.about .mini-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
}

.about .about-tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.about .about-tech-cloud span {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 68%);
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, color-mix(in srgb, var(--accent-color), transparent 92%) 100%);
  box-shadow: 0 4px 10px rgba(10, 22, 40, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.about .about-tech-cloud span:hover {
  transform: translateY(-1px);
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 52%);
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 8%) 0%, color-mix(in srgb, var(--accent-color), transparent 86%) 100%);
  box-shadow: 0 7px 14px rgba(8, 20, 36, 0.10);
}

.about .about-contact-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.about .about-main-card {
  height: 100%;
}

.about .about-contact-card {
  height: 100%;
}

.about .about-contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about .about-contact-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.about .about-contact-card ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-top: 4px;
}

.about .about-contact-card small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}

.about .about-contact-card a,
.about .about-contact-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.5;
  word-break: break-word;
}

.about .about-contact-card a:hover {
  color: var(--accent-color);
}

.about .about-quick-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about .about-quick-badges span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--accent-color);
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 52%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 999px;
  padding: 6px 10px;
}

.about .about-strengths {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 84%);
}

.about .about-strengths h5 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about .about-strengths ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about .about-strengths ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 14px;
  line-height: 1.6;
}

.about .about-strengths ul li:hover {
  transform: none;
}

.about .about-strengths ul li i {
  margin: 3px 0 0;
  color: var(--accent-color);
  font-size: 15px;
}

.about .about-side-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 84%);
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

@media (max-width: 991px) {
  .about .about-pro {
    padding: 0;
    background: transparent;
    border: none;
  }

  .about .about-main-card,
  .about .about-contact-card {
    padding: 22px;
  }

  .about .about-main-card h3 {
    font-size: 29px;
  }

  .about .about-feature-list {
    margin-top: 16px;
  }

  .about .about-mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .about .about-main-card h3 {
    font-size: 24px;
  }

  .about .about-main-card .about-summary {
    font-size: 16px;
  }

  .about .about-mini-stats {
    grid-template-columns: 1fr;
  }

  .about .about-tech-cloud {
    gap: 8px;
  }

  .about .about-tech-cloud span {
    font-size: 12px;
    padding: 6px 11px;
  }
}

/*--------------------------------------------------------------
# Stats Section (integrated inside About)
--------------------------------------------------------------*/
.about .about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 68px;
}

.about .about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f0f4ff);
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.06), -4px -4px 12px rgba(255, 255, 255, 0.9);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about .about-stat-item::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -36px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transition: all 0.35s ease;
}

.about .about-stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 8px 12px 28px rgba(0, 0, 0, 0.10), -4px -4px 14px rgba(255, 255, 255, 0.95);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .about-stat-item:hover::before {
  width: 140px;
  height: 140px;
  top: -55px;
  right: -55px;
}

.about .about-stat-item i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .about-stat-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}

.about .about-stat-item p {
  margin: 0;
  padding: 0;
  font-family: var(--heading-font);
  font-size: 13px;
  line-height: 1.5;
}

.about .about-stat-item p strong {
  display: block;
  color: var(--heading-color);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.about .about-stat-item p span {
  font-size: 11.5px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

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

@media (max-width: 575px) {
  .about .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skills-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.skills .skills-progress-card,
.skills .skills-tech-card {
  padding: 32px 30px;
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff 0%, color-mix(in srgb, var(--surface-color), #eef4ff 60%) 100%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px rgba(5, 13, 24, 0.06);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.skills .skills-progress-card::after,
.skills .skills-tech-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  pointer-events: none;
}

.skills .skills-progress-card::before,
.skills .skills-tech-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), white 40%));
}

.skills .skills-card-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* Progress bars */
.skills .skills-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skills .skill-bar-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.skills .skill-bar-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 4px 16px rgba(5, 13, 24, 0.07);
}

.skills .skill-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills .skill-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skills .skill-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.skills .si-react  { background: #e8f4fd; color: #0ea5e9; }
.skills .si-flutter { background: #e8f0fb; color: #3b82f6; }
.skills .si-python  { background: #fef9e7; color: #f59e0b; }
.skills .si-laravel { background: #fdf4ff; color: #d946ef; }
.skills .si-api     { background: #f0fdf4; color: #22c55e; }
.skills .si-devops  { background: #f5f3ff; color: #8b5cf6; }
.skills .si-db      { background: #fef3c7; color: #f59e0b; }
.skills .si-qa      { background: #f0fdf4; color: #10b981; }

.skills .skill-info > span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skills .skill-bar-top .val {
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 7px;
  border-radius: 20px;
  overflow: hidden;
}

.skills .progress-bar {
  width: 1px;
  height: 7px;
  transition: 0.9s;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), white 35%));
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(20, 157, 221, 0.35);
}

/* Tech categories */
.skills .skills-category {
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border-left: 3px solid transparent;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
}

.skills .skills-category:last-child { margin-bottom: 0; }

.skills .cat-frontend  { border-left: 3px solid #0ea5e9; }
.skills .cat-backend   { border-left: 3px solid #22c55e; }
.skills .cat-database  { border-left: 3px solid #f59e0b; }
.skills .cat-devops    { border-left: 3px solid #8b5cf6; }
.skills .cat-arch      { border-left: 3px solid #06b6d4; }
.skills .cat-ai        { border-left: 3px solid #d946ef; }
.skills .cat-qa        { border-left: 3px solid #10b981; }

.skills .cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.skills .cat-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.skills .cat-frontend  .cat-icon { background: #e0f2fe; color: #0ea5e9; }
.skills .cat-backend   .cat-icon { background: #dcfce7; color: #22c55e; }
.skills .cat-database  .cat-icon { background: #fef3c7; color: #f59e0b; }
.skills .cat-devops    .cat-icon { background: #ede9fe; color: #8b5cf6; }
.skills .cat-arch      .cat-icon { background: #cffafe; color: #06b6d4; }
.skills .cat-ai        .cat-icon { background: #fdf4ff; color: #d946ef; }
.skills .cat-qa        .cat-icon { background: #d1fae5; color: #10b981; }

.skills .cat-header h6 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.skills .skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.skills .skills-tags span {
  font-size: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  background: color-mix(in srgb, var(--surface-color), white 60%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  border-radius: 6px;
  padding: 2px 9px;
  transition: all 0.22s ease;
}

.skills .cat-frontend  .skills-tags span:hover { background: #e0f2fe; border-color: #0ea5e9; color: #0284c7; transform: translateY(-2px); }
.skills .cat-backend   .skills-tags span:hover { background: #dcfce7; border-color: #22c55e; color: #16a34a; transform: translateY(-2px); }
.skills .cat-database  .skills-tags span:hover { background: #fef3c7; border-color: #f59e0b; color: #d97706; transform: translateY(-2px); }
.skills .cat-devops    .skills-tags span:hover { background: #ede9fe; border-color: #8b5cf6; color: #7c3aed; transform: translateY(-2px); }
.skills .cat-arch      .skills-tags span:hover { background: #cffafe; border-color: #06b6d4; color: #0891b2; transform: translateY(-2px); }
.skills .cat-ai        .skills-tags span:hover { background: #fdf4ff; border-color: #d946ef; color: #a21caf; transform: translateY(-2px); }
.skills .cat-qa        .skills-tags span:hover { background: #d1fae5; border-color: #10b981; color: #059669; transform: translateY(-2px); }

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

@media (max-width: 767px) {
  .skills .skills-progress-card,
  .skills .skills-tech-card {
    padding: 22px 18px;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-columns-row {
  align-items: stretch;
}

.resume .resume-col-card {
  height: 100%;
  padding: 30px 26px;
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff 0%, color-mix(in srgb, var(--surface-color), #eef4ff 55%) 100%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px rgba(5, 13, 24, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.resume .resume-col-card:hover {
  box-shadow: 0 22px 50px rgba(5, 13, 24, 0.12);
  transform: translateY(-4px);
}

.resume .resume-col-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), white 40%));
}

.resume .resume-col-card::after {
  content: "";
  position: absolute;
  bottom: -70px; right: -70px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  pointer-events: none;
}

/* Section title */
.resume .resume-title {
  color: var(--heading-color);
  font-size: 11px;
  font-weight: 800;
  margin-top: 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px 7px 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 88%) 0%, color-mix(in srgb, var(--accent-color), transparent 94%) 100%);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resume .resume-col-card .resume-title:first-child { margin-top: 0; }

.resume .resume-title i {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
h3.resume-title span {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 8px;
}
/* Profile header inside summary */
.resume .resume-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed color-mix(in srgb, var(--accent-color), transparent 75%);
}

.resume .resume-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), white 35%));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.resume .resume-profile-header h4 {
  font-size: 15px !important;
  font-weight: 800 !important;
  margin-bottom: 5px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-color) !important;
}

.resume .resume-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 999px;
  padding: 3px 10px;
}

.resume .resume-summary-text {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 14px !important;
  font-style: italic;
}

/* Resume items */
.resume .resume-item {
  padding: 16px 16px 16px 24px;
  margin-bottom: 12px;
  border-left: 3px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  position: relative;
  background: color-mix(in srgb, var(--surface-color), white 55%);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 3px 14px rgba(5, 13, 24, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.resume .resume-item:hover {
  border-left-color: var(--accent-color);
  box-shadow: 0 8px 28px rgba(5, 13, 24, 0.10);
  transform: translateX(3px);
}

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

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  left: -7px; top: 20px;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.resume .resume-item h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.resume .resume-item h5 {
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 7px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 999px;
  padding: 2px 10px;
  letter-spacing: 0.3px;
}

.resume .resume-item p {
  font-size: 12px;
  margin-bottom: 9px;
}

.resume .resume-item p em {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  letter-spacing: 0.2px;
}

.resume .resume-item p em i {
  font-style: normal;
  color: var(--accent-color);
  font-size: 12px;
}

.resume .resume-item ul {
  padding-left: 15px;
  margin-bottom: 0;
}

.resume .resume-item ul li {
  padding-bottom: 5px;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.resume .resume-item ul li:last-child {  padding-bottom: 5px; margin-bottom: 10px; }
.resume .resume-item ul li::marker { color: var(--accent-color); }

/* Contact info list */
.resume .resume-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.resume .resume-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resume .resume-contact-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(5,13,24,0.08);
}

.resume .resume-contact-list li i {
  font-size: 13px;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}

/* Individual contact item colors */
.resume .rc-address {
  background: rgba(14,165,233,0.07);
  border-left-color: #0ea5e9;
  color: #0369a1;
}
.resume .rc-address i {
  background: rgba(14,165,233,0.15);
  color: #0ea5e9;
}

.resume .rc-phone {
  background: rgba(34,197,94,0.07);
  border-left-color: #22c55e;
  color: #15803d;
}
.resume .rc-phone i {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.resume .rc-email {
  background: rgba(245,158,11,0.07);
  border-left-color: #f59e0b;
  color: #b45309;
}
.resume .rc-email i {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
}

.resume .rc-github {
  background: rgba(139,92,246,0.07);
  border-left-color: #8b5cf6;
  color: #6d28d9;
}
.resume .rc-github i {
  background: rgba(139,92,246,0.15);
  color: #8b5cf6;
}

.resume .resume-contact-list li a {
  color: inherit;
  text-decoration: none;
}
.resume .resume-contact-list li a:hover { text-decoration: underline; }

@media (max-width: 991px) {
  .resume .resume-col-card { padding: 22px 16px; }
}

/*--------------------------------------------------------------
# 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: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 999px;
}

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

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

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

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

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  border-radius: 14px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.12) 0%, rgba(4, 11, 20, 0.86) 100%);
  padding: 15px;
}

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

.portfolio .portfolio-content .portfolio-info p {
  display: none;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.services .service-item .icon {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

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

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

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

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

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-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 15px 15px 15px;
  padding: 24px;
  background-color: var(--surface-color);
  position: relative;
  margin-bottom: 35px;
  border-radius: 14px;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid var(--surface-color);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact.section {
  padding-top: 20px;
}

.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 12px 26px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 16px;
}

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

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

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

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

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 36px 32px;
  box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.10);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

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

.contact .php-email-form label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 6px;
  display: block;
}

.contact .php-email-form label i {
  color: var(--accent-color);
  font-size: 13px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 13px 16px;
  box-shadow: none;
  border-radius: 12px;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 0%);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 82%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.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);
  box-shadow: 0 0 0 3.5px color-mix(in srgb, var(--accent-color), transparent 82%);
  outline: none;
}

.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 65%);
  font-size: 13px;
}

.contact .php-email-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 13px 38px;
  transition: all 0.35s ease;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: translateY(-2px);
}

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

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

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

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

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

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

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

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

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

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

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

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

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

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

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