@charset "UTF-8";
/*--------------------------------------------------------------
# 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: "Quicksand", sans-serif;
  --nav-font: "Open Sans", 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 {
  --muted-color: #526174;
  --border-color: #d8e0e7;
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #334155; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0c4a6e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0877ad; /* 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: #334155; /* The default color of the main navmenu links */
  --nav-hover-color: #0877ad; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #f0f9ff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #334155; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0877ad; /* 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 {
  --default-color: #334155;
  --heading-color: #0c4a6e;
  --accent-color: #0877ad;
  --contrast-color: #ffffff;
  --muted-color: #526174;
  --border-color: #d8e0e7;
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --nav-color: #cbd5e1;
  --nav-hover-color: #38bdf8;
  --muted-color: #b1c0d0;
  --border-color: #3e5364;
  --background-color: #0c1a24;
  --default-color: #cbd5e1;
  --heading-color: #f0f9ff;
  --accent-color: #38bdf8;
  --surface-color: #152633;
  --contrast-color: #1c1917;
}

body.dark-background .header {
  --background-color: #152633;
}

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

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

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

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

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

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 1rem;
  background: var(--surface-color);
}

.skip-link:focus {
  top: 1rem;
}

body.dialog-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f0f9ff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}
.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}
.header .logo .sitename {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .social-links {
  margin: 0 0 20px 0;
}
.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}
@media (min-width: 1200px) {
  .header ~ main,
  .header ~ #footer {
    margin-left: 300px;
  }
}
@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}
.header.header-show {
  left: 0;
}
.header .header-toggle {
  border: 0;
  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: 0;
  z-index: 9997;
}
.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}
.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}
.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
.footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer .social-links {
  margin: 0 0 30px 0;
}
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}
.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# 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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding: 0;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 10px 10px;
}
.section-title p {
  color: var(--muted-color);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-1.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.08;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero .hero-content {
    padding: 60px 30px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .hero .hero-content {
    padding: 40px 20px;
  }
}
.hero .content-wrapper {
  max-width: 600px;
}
.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 2.2rem;
  }
}
.hero .hero-title .typed {
  color: var(--accent-color);
  position: relative;
}
.hero .lead {
  font-size: 1.2rem;
  color: var(--muted-color);
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .hero .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-stats .stat-item .purecounter,
.hero .hero-stats .stat-item .stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}
.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--muted-color);
  margin-top: 0.25rem;
}
.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .hero .hero-actions {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
.hero .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.hero .hero-actions .btn.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}
.hero .hero-actions .btn.btn-outline {
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}
.hero .hero-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.hero .social-links {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .hero .social-links {
    justify-content: center;
  }
}
.hero .social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}
.hero .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}
.hero .social-links a i {
  font-size: 1.2rem;
}
.hero .hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}
@media (max-width: 991px) {
  .hero .hero-image {
    min-height: auto;
    padding: 40px 30px;
  }
}
.hero .image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}
.hero .hero-main-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  z-index: 2;
}
.hero .image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 20px;
  z-index: 1;
}
.hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.hero .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero .floating-card {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}
.hero .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .hero .floating-card i {
    font-size: 1.2rem;
  }
}
.hero .floating-card span {
  font-weight: 600;
  color: var(--default-color);
}
.hero .floating-card.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}
@media (max-width: 768px) {
  .hero .floating-card.card-1 {
    top: 5%;
    left: -5%;
  }
}
.hero .floating-card.card-2 {
  top: 60%;
  right: 0;
  animation-delay: 2s;
}
@media (max-width: 768px) {
  .hero .floating-card.card-2 {
    top: 70%;
    right: 0;
  }
}
.hero .floating-card.card-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 4s;
}
@media (max-width: 768px) {
  .hero .floating-card.card-3 {
    bottom: 10%;
    left: 0%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content .intro {
  margin-bottom: 40px;
}
.about .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about .about-content .intro h2 {
    font-size: 2rem;
    text-align: center;
  }
}
.about .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-color);
}
@media (max-width: 768px) {
  .about .about-content .intro p {
    text-align: center;
  }
}
.about .about-content .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.about .about-content .skills-grid .skill-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}
.about .about-content .skills-grid .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.about .about-content .skills-grid .skill-item .skill-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 24px;
}
.about .about-content .skills-grid .skill-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.about .about-content .skills-grid .skill-item p {
  font-size: 14px;
  color: var(--muted-color);
  margin: 0;
}
.about .about-content .cta-section .action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 576px) {
  .about .about-content .cta-section .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.about .about-content .cta-section .action-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.about .about-content .cta-section .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}
.about .about-content .cta-section .action-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}
.about .about-content .cta-section .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.about .about-content .cta-section .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Technical Expertise Section
--------------------------------------------------------------*/
.technical-expertise .skills-grid .skill-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}
.technical-expertise .skills-grid .skill-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}
.technical-expertise .skills-grid .skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}
.technical-expertise .skills-grid .skill-card .skill-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}
.technical-expertise .skills-grid .skill-card .skill-header i {
  font-size: 28px;
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
}
.technical-expertise .skills-grid .skill-card .skill-header h3 {
  font-size: 20px;
  margin: 0;
  color: var(--heading-color);
}
@media (max-width: 767px) {
  .technical-expertise .skills-grid .skill-card {
    padding: 25px 20px;
  }
  .technical-expertise .skills-grid .skill-card .skill-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .technical-expertise .skills-grid .skill-card .skill-header h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Professional Experience Section
--------------------------------------------------------------*/
.professional-experience .section-header {
  margin-bottom: 2.5rem;
}
.professional-experience .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.professional-experience .section-header h2 i {
  color: var(--accent-color);
  font-size: 1.5rem;
}
.professional-experience .section-header .section-subtitle {
  color: var(--muted-color);
  font-size: 1rem;
  line-height: 1.6;
}
.professional-experience .experience-section {
  padding-right: 1.5rem;
}
.professional-experience .experience-section .experience-cards .experience-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.professional-experience .experience-section .experience-cards .experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
}
.professional-experience .experience-section .experience-cards .experience-card:hover {
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-5px);
}
.professional-experience .experience-section .experience-cards .experience-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.professional-experience .experience-section .experience-cards .experience-card .card-header .role-info h3 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.professional-experience .experience-section .experience-cards .experience-card .card-header .role-info h4 {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.professional-experience .experience-section .experience-cards .experience-card .card-header .duration {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.professional-experience .experience-section .experience-cards .experience-card .card-body p {
  color: var(--muted-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.professional-experience .experience-section .experience-cards .experience-card .card-body .achievements {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.professional-experience .experience-section .experience-cards .experience-card .card-body .achievements li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted-color);
  font-size: 0.9rem;
}
.professional-experience .experience-section .experience-cards .experience-card .card-body .achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}
.professional-experience .experience-section .experience-cards .experience-card .card-body .achievements li:last-child {
  margin-bottom: 0;
}
.professional-experience .education-section {
  padding-left: 1.5rem;
}
.professional-experience .education-section .education-timeline {
  position: relative;
}
.professional-experience .education-section .education-timeline .timeline-track {
  position: absolute;
  left: 1rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
}
.professional-experience .education-section .education-timeline .education-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}
.professional-experience .education-section .education-timeline .education-item:last-child {
  margin-bottom: 0;
}
.professional-experience .education-section .education-timeline .education-item .timeline-marker {
  position: absolute;
  left: 0.5rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent-color);
  border: 3px solid var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.professional-experience .education-section .education-timeline .education-item .education-content {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.professional-experience .education-section .education-timeline .education-item .education-content:hover {
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}
.professional-experience .education-section .education-timeline .education-item .education-content .degree-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.professional-experience .education-section .education-timeline .education-item .education-content .degree-header h3 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.professional-experience .education-section .education-timeline .education-item .education-content .degree-header .year {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.professional-experience .education-section .education-timeline .education-item .education-content .institution {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.professional-experience .education-section .education-timeline .education-item .education-content p {
  color: var(--muted-color);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .professional-experience .experience-section,
  .professional-experience .education-section {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .professional-experience .section-header h2 {
    font-size: 1.6rem;
  }
  .professional-experience .experience-cards .experience-card .card-header {
    flex-direction: column;
    gap: 0.8rem;
  }
  .professional-experience .experience-cards .experience-card .card-header .duration {
    align-self: flex-start;
  }
  .professional-experience .education-timeline .education-item .education-content .degree-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  .professional-experience .education-timeline .education-item .education-content .degree-header .year {
    align-self: flex-start;
  }
}
@media (max-width: 576px) {
  .professional-experience .section-header h2 {
    font-size: 1.4rem;
  }
  .professional-experience .section-header h2 i {
    font-size: 1.2rem;
  }
  .professional-experience .experience-cards .experience-card {
    padding: 1.3rem;
  }
  .professional-experience .education-timeline .timeline-track {
    left: 0.5rem;
  }
  .professional-experience .education-timeline .education-item {
    padding-left: 2rem;
  }
  .professional-experience .education-timeline .education-item .timeline-marker {
    left: 0;
  }
}
.professional-experience .card-links {
  margin-top: auto;
}
.professional-experience .card-links .link-item {
  border: 0;
  padding: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.professional-experience .card-links .link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.professional-experience .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# What I Bring Section
--------------------------------------------------------------*/
.what-i-bring .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.what-i-bring .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}
.what-i-bring .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}
.what-i-bring .service-item:hover::before {
  height: 100%;
}
.what-i-bring .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}
.what-i-bring .service-item .icon {
  margin-bottom: 1.5rem;
}
.what-i-bring .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all 0.3s ease-in-out;
}
.what-i-bring .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.what-i-bring .service-item p {
  color: var(--muted-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.faq .faq-item {
  background: var(--surface-color);
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.faq .faq-item summary {
  color: var(--heading-color);
  font: 600 1rem/1.5 var(--heading-font);
  cursor: pointer;
}
.faq .faq-item[open] {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}
.faq .faq-item[open] summary {
  color: var(--accent-color);
}
.faq .faq-item .faq-content {
  padding-top: 10px;
}
.faq .faq-item p {
  margin: 0;
}
.faq .faq-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}
.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}
.contact .info-box p {
  opacity: 1;
  margin-bottom: 2rem;
}
.contact .info-box a {
  color: var(--contrast-color);
}
@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}
.contact .info-item {
  overflow-wrap: anywhere;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact .info-item:last-child {
  margin-bottom: 0;
}
.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}
.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}
.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}
.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.contact .info-item .content p:last-child {
  margin-bottom: 0;
}
.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}
.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}
.contact .contact-form p {
  color: var(--muted-color);
  margin-bottom: 2rem;
}
.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}
.contact .contact-form .btn i {
  font-size: 1.25rem;
}
.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

.experience-dialog {
  color: var(--default-color);
  background: var(--surface-color);
  width: min(760px, 100% - 2rem);
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overscroll-behavior: contain;
}
.experience-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}
.experience-dialog .dialog-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
}
.experience-dialog h2 {
  font-size: 1.35rem;
  margin: 0;
}
.experience-dialog h3 {
  font-size: 1.2rem;
}
.experience-dialog h4 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
.experience-dialog .dialog-close {
  flex-shrink: 0;
  padding: 0.5rem 0.75rem;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  border-radius: 6px;
}
.experience-dialog .dialog-content {
  padding: 1.5rem;
}
.experience-dialog li {
  margin-bottom: 0.6rem;
}

.hero .metric-note {
  font-size: 0.85rem;
  color: var(--muted-color);
}
