/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --burger-size: 40px; /* desktop */
  --gradient: linear-gradient(
    45deg,
    #d80b0b,
    #fd6811,
    #fde828,
    #c4fd28,
    #53d409,
    #42e78c,
    #43f3ea,
    #43bbf3,
    #1024db,
    #9257ad,
    #ce37db,
    #e914b4,
    #f21a87,
    #ff0000
  );

  --main-color: #0d6efd;

  /* Burger menu */
  --burger-menu-size: 21px;

  /* Ratios */
  --burger-line-height-ratio: 0.107;

  /* Wrapper scale (visual padding) */
  --burger-wrapper-scale: 1.5;

  /* Colors */
  --burger-bg: #5fa8ff;
  --burger-bg-active: #0563bb;
  --burger-line: #fff;
  --burger-glow: rgba(46, 229, 157, 0.18);
}

/* ============================================================
  BASE / RESET / GLOBAL ELEMENTS
============================================================ */

body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ============================================================
  GLOBAL ANIMATIONS / KEYFRAMES
============================================================ */

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Animations */
@keyframes neon-pulse {
  0% {
    filter: drop-shadow(0 0 6px var(--burger-glow));
  }

  50% {
    filter: drop-shadow(0 0 14px var(--burger-glow));
  }

  100% {
    filter: drop-shadow(0 0 6px var(--burger-glow));
  }
}

/* FLOATING (IDLE) */
@keyframes floatIdle {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i {
  font-size: 20px;
}

.nav-menu a span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu li:hover > a {
  color: #fff;
  background: #0563bb;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu li:hover > a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover > a span {
  display: block;
}

.header-mobile {
  left: 0 !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/office-collab.png") top right no-repeat;
  background-size: cover;
  position: relative;
  filter: none !important;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #45505b;
}

#hero p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
}

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

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #0563bb;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

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

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.highlight-note {
  margin: 3rem;
  padding-left: 1rem;
  border-left: 5px solid #0d6efd;
  color: #333;
  font-style: italic;
  background-color: rgba(13, 110, 253, 0.03);
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
/* =========================
   SKILLS SECTION – MODERN UI
   ========================= */

#skills {
  position: relative;
}

#skills .section-title p {
  max-width: 820px;
  margin: 0 auto 1.5rem auto;
  color: #555;
}

/* Skill Card */
.skill-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.6rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Left accent bar */
.skill-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #0d6efd;
  opacity: 0.9;
}

/* Hover effect */
.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(13, 110, 253, 0.15);
  border-color: #0d6efd;
}

/* Card headings */
.skill-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #222;
}

.skill-card h4 i {
  font-size: 1.25rem;
  color: #0d6efd;
}

/* Skill list */
.skill-card ul li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Boxicons inside list */
.skill-card ul li i {
  font-size: 1.1rem;
  color: #0d6efd;
}

/*-------------------------------------------------------*/

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #f2f3f5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/

.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin: 28px 0 22px;
  color: #45505b;
}

.resume-column {
  display: flex;
  flex-direction: column;
}

.resume .resume-item {
  padding: 0 0 24px 22px;
  border-left: 2px solid #0563bb;
  position: relative;
  padding-bottom: 22px; /* was variable */
}

.resume .resume-item-compact {
  padding-bottom: 0;
  margin-bottom: 0;
}

.resume .resume-item h4 {
  line-height: 1.25;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 8px;
}

.resume .resume-item h5 {
  font-size: 15px;
  background: #f7f8f9;
  padding: 4px 14px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 3px;
}

.resume .resume-item p {
  line-height: 1.55;
  color: #444;
  margin-bottom: 8px;
}

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

.resume .resume-item ul li {
  padding-bottom: 5px;
  line-height: 1.45;
}

.resume .resume-item a {
  letter-spacing: 1px;
  font-weight: 500;
}

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

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: -8px;
  top: 3px;
  background: #fff;
  border: 2px solid #0563bb;
}

/* Certification subtle styling */
.cert-support {
  color: #8a8a8a;
  letter-spacing: 0.25px;
  transition: color 0.2s ease;
}

.cert-support:hover {
  color: #000;
}

/* =========================
   CV FLOATING BUTTON (FINAL)
========================= */

.resume-cv-download {
  display: flex;
  justify-content: center;
  margin: 4rem;
}

/* BASE BUTTON */
.cv-float-btn {
  all: unset;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 20px 44px;
  border-radius: 18px;

  background: linear-gradient(145deg, #0a0a0a, #141414);

  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(179, 11, 0, 0.35);

  animation: floatIdle 5s ease-in-out infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* SVG ICON */
.cv-svg-icon svg {
  width: 42px;
  height: 42px;
  /*fill: #B30B00;*/

  filter: drop-shadow(0 0 6px rgba(179, 11, 0, 0.55))
    drop-shadow(0 0 14px rgba(179, 11, 0, 0.35));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

/* TEXT */
.cv-text {
  font-size: 16px;
  white-space: nowrap;
}

/* SHARP NEON EDGE (NO FOG) */
.cv-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(120deg, #ff2a1a, #b30b00, #ff2a1a);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.75;
  pointer-events: none;
}

/* HOVER — STEEL / GROUNDED */
.cv-float-btn:hover {
  animation-play-state: paused;
  transform: translateY(0) scale(1.02);

  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.8),
    0 0 26px rgba(179, 11, 0, 0.65),
    inset 0 0 0 1px rgba(179, 11, 0, 0.75);
}

/* SVG HOVER — STRONGER, CLEANER */
.cv-float-btn:hover .cv-svg-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(179, 11, 0, 0.9))
    drop-shadow(0 0 22px rgba(179, 11, 0, 0.55));
}

/* CLICK */
.cv-float-btn:active {
  transform: scale(0.98);
}

/*===========================
  HIDE LINK BEHAVIOR (A TAG)
========================== */

/* Prevent URL preview / default link affordances */
.cv-float-btn {
  text-decoration: none !important;
  cursor: pointer;
}

/* Remove focus outline but keep accessibility */
.cv-float-btn:focus {
  outline: none;
}

/* Keyboard accessibility (important) */
.cv-float-btn:focus-visible {
  outline: 2px solid rgba(179, 11, 0, 0.9);
  outline-offset: 6px;
}

/* Prevent text selection / URL dragging */
.cv-float-btn,
.cv-float-btn * {
  user-select: none;
  -webkit-user-drag: none;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

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

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
  border-radius: 24px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #d7dce1;
  border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #d7dce1;
  border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #45505b;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #148af9;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.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: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

.domain-note {
  max-width: 900px;
  margin: 2rem auto 30px auto;
  padding: 14px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(
    90deg,
    rgba(71, 174, 255, 0.08),
    rgba(17, 219, 207, 0.08)
  );
  /* background: rgba(0, 0, 0, 0.015); */
  border-left: 4px solid #11dbcf;
  box-shadow: inset 0 0 0 1px rgba(17, 219, 207, 0.15);
  border-radius: 6px;
  letter-spacing: 0.2px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
  padding: 60px 0;
}

.contact .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact .contact-intro {
  max-width: 760px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6c757d;
}

/* Layout */
.contact-row {
  align-items: flex-start;
}

/* Info block */
.contact .info {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.contact .info > div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 26px;
}

.contact .info i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 18px;
  color: #0563bb;
  background: rgba(5, 99, 187, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-text {
  padding-left: 14px;
}

.contact .info h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #45505b;
}

.contact .info p {
  font-size: 14px;
  margin: 0;
  color: #6c757d;
}

.contact .info a {
  color: #45505b;
  text-decoration: none;
}

.contact .info a:hover {
  color: #0563bb;
}

/* Form */
.contact .php-email-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  font-size: 14px;
  border-radius: 6px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  resize: vertical;
}

.contact .php-email-form button[type="submit"] {
  background: #0563bb;
  border: 0;
  padding: 10px 34px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0678e3;
}

/* Feedback states */
.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  font-size: 14px;
}

/* ==================================================
   Neon / Glow Enhancement – Contact Form
   ================================================== */

/* Base input styling */
.contact .php-email-form input,
.contact .php-email-form textarea {
  background: #ffffff;
  border: 1px solid rgba(5, 99, 187, 0.25);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* Hover: subtle neon hint */
.contact .php-email-form input:hover,
.contact .php-email-form textarea:hover {
  border-color: rgba(71, 174, 255, 0.7);
  box-shadow:
    0 0 0 2px rgba(71, 174, 255, 0.12),
    0 0 12px rgba(71, 174, 255, 0.25);
}

/* Focus: controlled neon glow */
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  outline: none;
  border-color: #47aeff;
  background-color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(71, 174, 255, 0.25),
    0 0 18px rgba(71, 174, 255, 0.45);
}

/* Placeholder refinement */
.contact .php-email-form ::placeholder {
  color: #9aa7b2;
  transition: color 0.2s ease;
}

.contact .php-email-form input:focus::placeholder,
.contact .php-email-form textarea:focus::placeholder {
  color: #c5d8f0;
}

/* ==================================================
   Neon Button – Calm, Not Aggressive
   ================================================== */

.contact .php-email-form button[type="submit"] {
  position: relative;
  background: linear-gradient(135deg, #0563bb, #47aeff);
  box-shadow:
    0 0 0 rgba(71, 174, 255, 0),
    inset 0 0 0 rgba(255, 255, 255, 0);
}

/* Hover glow */
.contact .php-email-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #0678e3, #6bc4ff);
  box-shadow:
    0 0 12px rgba(71, 174, 255, 0.6),
    0 0 28px rgba(71, 174, 255, 0.35);
}

/* Active (click) feedback */
.contact .php-email-form button[type="submit"]:active {
  box-shadow:
    0 0 6px rgba(71, 174, 255, 0.6),
    inset 0 0 8px rgba(0, 0, 0, 0.15);
  transform: translateY(1px);
}

/* Invalid email feedback */
.contact .php-email-form input[type="email"]:invalid {
  border-color: rgba(255, 88, 40, 0.8);
  box-shadow:
    0 0 0 2px rgba(255, 88, 40, 0.2),
    0 0 14px rgba(255, 88, 40, 0.4);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0563bb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

.facts-section {
  margin-top: 40px;
}

/* INITIAL STATE (important) */
.fact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

/* WHEN VISIBLE */
.fact-card.visible {
  border: 1px solid #0d6efd;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.fact-header i {
  font-size: 1.25rem;
  color: #2563eb;
}

.fact-header span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.fact-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Hover stays subtle */
.fact-card:hover {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
}

.rounded-service {
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rounded-service:hover {
  transform: translateY(-6px);
}

/*--------------------------------------------------------------
# Language Switch
--------------------------------------------------------------*/

.lang-switch {
  position: fixed;
  top: 7px;
  left: 21px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 4px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: hidden;
  z-index: 3;
}

.lang-option {
  position: relative;
  z-index: 2;
  padding: 6px 16px 6px 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 20px;
  transition: color 0.3s ease;
  color: var(--text-muted);
}

/* Sliding background */
.lang-switch::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 50%;
  height: calc(100% - 8px);
  background: var(--primary-color);
  border-radius: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Active text */
.lang-option.active {
  color: var(--main-color);
}

/* Move slider when FR active */
.lang-switch.fr-active::before {
  transform: translateX(100%);
}

/* English Flag */
.lang-option[data-lang="en"]::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 12px;
  background-image: url("../icons/gb.png");
  background-size: cover;
  border-radius: 2px;
}

/* French Flag */
.lang-option[data-lang="fr"]::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 12px;
  background-image: url("../icons/fr.png");
  background-size: cover;
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Mobile nav toggle button
--------------------------------------------------------------*/

/* Wrapper (true circle, no clipping) */
#wrapper {
  position: fixed;
  display: none;

  width: calc(var(--burger-menu-size) * var(--burger-wrapper-scale));
  height: calc(var(--burger-menu-size) * var(--burger-wrapper-scale));

  background: var(--burger-bg);
  border-radius: 50%;

  top: 7px;
  right: 21px;
  z-index: 333;

  cursor: pointer;
  overflow: visible;

  place-items: center;

  transform: translateZ(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#wrapper::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;

  background: radial-gradient(
    circle at center,
    var(--burger-bg-active) 60%,
    transparent 61%
  );

  transform: scale(0);
  transition: transform 0.35s ease;
  z-index: 0;
}

#wrapper:has(.icon.close)::before {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px var(--burger-glow));
  animation: neon-pulse 1.6s ease-out 1 0.35s;
  box-shadow: 0 10px 25px rgba(13, 97, 241, 0.35);
}

#wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(13, 97, 241, 0.35);
}

#wrapper:active {
  background: var(--burger-bg-active);
  transform: scale(0.97);
  box-shadow: 0 10px 25px rgba(13, 97, 241, 0.35);
}

/* Icon container */
.circle {
  position: relative;
  width: var(--burger-menu-size);
  height: var(--burger-menu-size);
  margin: auto;
  z-index: 3;
}

/* Burger lines */
.line {
  position: absolute;
  height: calc(var(--burger-menu-size) * var(--burger-line-height-ratio));
  width: 100%;

  background-color: var(--burger-line);
  border-radius: calc(
    var(--burger-menu-size) * var(--burger-line-height-ratio)
  );

  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;

  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    top 0.45s ease,
    opacity 0.25s ease;
}

.top {
  top: calc(var(--burger-menu-size) * 0.18);
}

.middle {
  top: calc(var(--burger-menu-size) * 0.45);
}

.bottom {
  top: calc(var(--burger-menu-size) * 0.71);
}

/* Close state */
.close .top,
.close .bottom {
  top: calc(var(--burger-menu-size) * 0.45);
  transform: rotate(225deg);
}

.close .bottom {
  opacity: 0;
}

.close .middle {
  transform: rotate(135deg);
}

/*--------------------------------------------------------------
# Mobile nav background blur effect
--------------------------------------------------------------*/

/* Overlay */
.blur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9996; /* below header (9997) */
}

/* Blur main content */
#page-content {
  transition: filter 0.35s ease;
}

html.mobile-nav-active,
body.mobile-nav-active {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

/* Activate blur overlay ONLY when menu is open AND not on Home */
.mobile-nav-active .blur-overlay {
  opacity: 0;
  pointer-events: auto;
}

/* Blur only when menu is open AND not on home */
.mobile-nav-active.not-home #main {
  filter: blur(6px);
}

.Iam {
  color: #45505b !important;
  font-size: 26px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.clr-main {
  color: var(--main-color);
}

.my-icon {
  position: relative;
  display: inline-block;
  font-family: "boxicons" !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  width: 17.6px;
  height: 17.6px;
  color: var(--main-color);
}

.my-icon-hub::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;

  -webkit-mask: url("../icons/hub.svg") no-repeat center;
  mask: url("../icons/hub.svg") no-repeat center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

h4 > .sum-span {
  color: #666;
}

#signature.mt-3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.6px;
  font-weight: 500;
}

#signature.mt-3 {
  width: 100%;
  justify-content: center;
}

#signature.mt-3 p {
  position: relative;
  max-width: 720px;
  margin: 0;
  padding: 14px 18px;
  border-left: 3px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.3s ease;
}

#signature.mt-3 p:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

#signature.mt-3 i {
  margin-left: 10px;
  font-size: 18px;
  color: var(--primary-color);
  vertical-align: middle;
  opacity: 0.85;
}

/* ============================================================
   RESPONSIVE LAYER (ALL MEDIA QUERIES AT BOTTOM)
   — MOBILE FIRST STRUCTURE
============================================================ */

/* Extreme small devices (≤320px) */
@media (max-width: 320px) {
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 12px !important;
  }
  .portfolio .portfolio-wrap .portfolio-info p {
    font-size: 9px !important;
  }

  .skill-card {
    padding: 0.9rem;
  }

  .skill-card h4 {
    font-size: 0.88rem;
  }

  .skill-card ul li {
    font-size: 0.8rem;
  }
}

/* Very small devices (≤360px) */
@media (max-width: 360px) {
  #wrapper {
    width: calc(2 * var(--burger-menu-size) * var(--burger-wrapper-scale) / 2);
    height: calc(2 * var(--burger-menu-size) * var(--burger-wrapper-scale) / 2);
  }

  .line {
    width: calc(2 * 100% / 2);
    height: calc(
      2 * var(--burger-menu-size) * var(--burger-line-height-ratio) / 2
    );
  }

  .circle {
    display: flex;
    justify-content: center;
  }

  .resume .resume-title {
    font-size: 19px;
  }

  .resume .resume-item {
    padding-left: 16px;
  }

  .cv-float-btn {
    padding: 14px 22px;
    gap: 12px;
  }

  .cv-text {
    font-size: 13px;
  }

  .cv-svg-icon svg {
    width: 30px;
    height: 30px;
  }

  #hero h1 {
    font-size: 22px;
  }

  #hero p {
    font-size: 15px;
  }

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

  .fact-header span {
    font-size: 0.95rem;
  }

  .fact-card p {
    font-size: 0.65rem !important;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 13px !important;
  }

  .highlight-note {
    margin: 0.5rem !important;
  }
}

/* Very small devices (≤375px) */
@media (max-width: 375px) {
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 14px;
  }
  .portfolio .portfolio-wrap .portfolio-info p {
    font-size: 10px;
  }

  .skill-card {
    padding: 1rem;
  }

  .skill-card h4 {
    font-size: 0.9rem;
  }

  .skill-card ul li {
    font-size: 0.83rem;
  }

  .fact-card p {
    font-size: 0.7rem;
  }
}

/* Small phones (≤425px) */
@media (max-width: 425px) {
  .skill-card {
    padding: 1.1rem;
  }

  .skill-card h4 {
    font-size: 0.92rem;
  }

  .skill-card ul li {
    font-size: 0.85rem;
  }

  .resume .resume-item h4 {
    font-size: 14px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 15px;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    font-size: 11px !important;
  }

  .fact-card p {
    font-size: 0.75rem !important;
  }
}

/* Large phones (≤576px) */
@media (max-width: 576px) {
  body {
    font-size: 14px !important;
  }

  .resume .resume-title {
    font-size: 21px !important;
  }

  .resume .resume-item h4 {
    font-size: 15px;
  }

  .resume .resume-item p,
  .resume .resume-item ul li {
    font-size: 14px !important;
  }

  .contact .contact-intro {
    font-size: 14px !important;
  }

  .contact .info,
  .contact .php-email-form {
    padding: 22px 18px !important;
  }

  .contact .info h4 {
    font-size: 14.5px !important;
  }

  .contact .info p {
    font-size: 13.5px !important;
  }
  .cv-float-btn {
    padding: 16px 28px !important;
    gap: 14px !important;
  }

  .cv-text {
    font-size: 14px !important;
  }

  .cv-svg-icon svg {
    width: 34px !important;
    height: 34px !important;
  }

  .section-title h2 {
    font-size: 22px !important;
  }

  #hero h1 {
    font-size: 26px !important;
  }

  #hero p {
    font-size: 16px !important;
  }

  #hero .social-links a {
    font-size: 20px !important;
    margin-right: 14px !important;
  }

  .about .content h3 {
    font-size: 22px !important;
  }

  .about .content ul li {
    font-size: 14px !important;
  }

  /* FACTS */
  .fact-card {
    padding: 18px 18px !important;
  }

  .fact-card p {
    font-size: 0.8rem !important;
  }

  .fact-header i {
    font-size: 1.1rem !important;
  }

  /* SKILLS */
  .skills .progress {
    height: auto !important;
  }

  /* SERVICES */
  .services .icon-box h4 {
    font-size: 18px !important;
  }

  .services .icon-box p {
    font-size: 13px !important;
  }

  .skill-card {
    padding: 1.2rem !important;
    border-radius: 12px !important;
  }

  .skill-card h4 {
    font-size: 0.95rem !important;
  }

  .skill-card ul li {
    font-size: 0.88rem !important;
  }

  .skill-card::before {
    width: 3px !important;
  }

  .highlight-note {
    margin: 1.5rem;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }

  .resume-column {
    margin-bottom: 40px;
  }

  .resume .resume-item {
    padding-left: 18px;
  }
  .cv-float-btn {
    padding: 18px 36px;
  }

  .cv-text {
    font-size: 15px;
  }

  .cv-svg-icon svg {
    width: 38px;
    height: 38px;
  }
  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.6;
  }

  #hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

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

  /* FACTS */
  .fact-card {
    margin-bottom: 20px;
  }

  .fact-header span {
    font-size: 1rem;
  }

  /* SERVICES */
  .services .icon-box {
    padding: 50px 16px 60px;
  }

  /* Disable aggressive hover scaling on touch */
  .rounded-service:hover {
    transform: none;
  }

  #skills .section-title p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .skill-card {
    margin-bottom: 1.5rem;
    padding: 1.3rem;
  }

  .skill-card h4 {
    font-size: 0.98rem;
    gap: 0.45rem;
  }

  .skill-card h4 i {
    font-size: 1.15rem;
  }

  .skill-card ul li {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .sum-span {
    font-size: 0.8rem !important;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }

  #hero {
    padding-left: 160px;
  }

  .nav-menu a {
    width: 56px;
  }

  .nav-menu a span {
    display: none;
    color: #fff;
  }

  .testimonials .testimonial-item p {
    width: 80%;
  }

  /* Disable blur on desktop */
  .blur-overlay {
    display: none;
  }

  #page-content {
    filter: none !important;
  }
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
  #hero p span {
    font-size: 20px !important;
  }
  .resume .resume-title {
    font-size: 24px;
  }
  #header {
    width: auto;
    background: transparent;
    left: -300px;
    overflow: hidden;
  }
  .contact .info {
    margin-bottom: 32px;
  }
  /* Navbar compact layout for tablet & mobile */
  #wrapper {
    display: flex !important;
  }

  /* Center the whole menu */
  .nav-menu {
    display: flex;
    justify-content: center;
  }

  .nav-menu ul {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: auto;
  }

  /* Let links fit their content */
  .nav-menu a {
    width: auto;
    min-width: unset;
    padding: 10px 16px;
    justify-content: flex-start;
  }

  /* Icons + text spacing */
  .nav-menu a i {
    margin-right: 8px;
  }

  .nav-menu a span {
    display: inline; /* ensure text is visible */
    white-space: nowrap; /* prevent wrapping */
  }
}

/* Large tablets / small laptops (≤1024px) */
@media (max-width: 1024px) {
  #main {
    margin-left: 0;
  }

  .services .icon-box {
    padding: 60px 18px 70px;
  }

  .fact-card {
    padding: 20px 22px;
  }

  .skill-card {
    padding: 1.4rem;
  }

  .skill-card h4 {
    font-size: 1rem;
  }

  .skill-card ul li {
    font-size: 0.92rem;
  }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .line,
  #wrapper {
    transition: none;
  }
}
