/*

google fonts
raleway: 400, 500, 600, 700
*/
/* define custom css variables */
:root {
  --bg-black-900: #000000;
  --bg-black-100: #dddddd;
  --bg-black-50: #eff0f4;
  --bg-opacity: rgba(255, 255, 255, 0.5);
  --text-black-900: #000000;
  --text-black-700: #555555;
  --text-black-600: #666666;
  --text-black-300: #bbbbbb;
  --outer-shadow: 3px 3px 3px #d0d0d0, -3px -3px 3px #f8f8f8;
  --outer-shadow-0: 0 0 0 #d0d0d0, 0 0 0 #f8f8f8;
  --inner-shadow: inset 3px 3px 3px #d0d0d0, inset -3px -3px 3px #f8f8f8;
  --inner-shadow-0: inset 0 0 0 #d0d0d0, inset 0 0 0 #f8f8f8;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* override custom css variables for dark theme  */
body.dark {
  --bg-black-900: #ffffff;
  --bg-black-100: #222222;
  --bg-black-50: #1d1d1d;
  --bg-opacity: rgba(30, 30, 30, 0.5);
  --text-black-900: #ffffff;
  --text-black-700: #ffffff;
  --text-black-600: #bbbbbb;
  --outer-shadow: 3px 3px 3px #111216, -3px -3px 3px #252525;
  --outer-shadow-0: 0 0 0 #111216, 0 0 0 #252525;
  --inner-shadow: inset 3px 3px 3px #111216, inset -3px -3px 3px #252525;
  --inner-shadow-0: inset 0 0 0 #111216, inset 0 0 0 #252525;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
  background: var(--bg-black-50);
}

body.hidden-scrolling {
  overflow-y: hidden;
}

*:not(i) {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

:before,
:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.container {
  max-width: 1140px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.outer-shadow {
  box-shadow: var(--outer-shadow);
}

.inner-shadow {
  box-shadow: var(--inner-shadow);
}

.hover-in-shadow {
  position: relative;
  z-index: 1;
}

.hover-in-shadow:hover {
  box-shadow: var(--outer-shadow-0);
}

.hover-in-shadow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: -1;
}

.hover-in-shadow:hover::after {
  box-shadow: var(--inner-shadow);
}

.align-items-center {
  align-items: center;
}

.btn-1 {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--skin-color);
  background: transparent;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.btn-1::after {
  border-radius: 30px;
}

.effect-wrap .effect {
  position: absolute;
  z-index: -1;
}

.effect-1 {
  width: 30px;
  height: 30px;
  border: 4px solid #8a49ff;
  right: 10%;
  bottom: 10%;
  animation: spin 10s linear infinite;
}

.effect-2 {
  left: 3%;
  bottom: 20%;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: topBounce 3s ease-in-out infinite;
}

.effect-2 div {
  height: 3px;
  width: 3px;
  background: #ff9c07;
  margin: 0 3px 8px;
}

.effect-3 {
  height: 180px;
  width: 180px;
  border: 25px solid var(--skin-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -120px;
  animation: leftBounce 3s ease-in-out infinite;
}

.effect-4 {
  border-top: 30px solid transparent;
  border-left: 30px solid #06d79c;
  left: 30%;
  top: 20%;
  animation: spin 15s linear infinite;
}

.effect-4::before {
  content: "";
  border-top: 30px solid transparent;
  border-left: 30px solid #06d79c;
  position: absolute;
  opacity: 0.5;
  left: -35px;
  top: -25px;
}

.effect-5 {
  height: 50px;
  width: 50px;
  right: 10%;
  top: 30%;
  display: flex;
  justify-content: space-between;
  border-radius: 50%;
  overflow: hidden;
  animation: spin 10s linear infinite;
}

.effect-5 div {
  width: 1px;
  background: #4dd0e1;
  height: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes topBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
}
@keyframes leftBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.section-title {
  padding: 0 15px;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-black-900);
  text-transform: uppercase;
  margin: 0;
}

.section-title h2:before {
  content: attr(data-heading);
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--skin-color);
}

.section.hide {
  display: none;
}

/*
preloader
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1500;
  background: var(--bg-black-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader.fade-out {
  opacity: 0;
  transition: all 0.6s ease;
}

.preloader .box {
  width: 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.preloader .box div {
  height: 15px;
  width: 15px;
  background: var(--skin-color);
  border-radius: 50%;
  animation: loaderAni 0.9s ease infinite;
}

.preloader .box div:nth-child(2) {
  animation-delay: 0.1s;
}

.preloader .box div:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes loaderAni {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
/*--------------
header 
----------------*/
.header {
  padding: 20px 15px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.header .logo a {
  display: inline-block;
  text-align: center;
  line-height: 36px;
  height: 40px;
  width: 40px;
  font-size: 24px;
  color: var(--skin-color);
  border-radius: 50%;
  border: 2px solid var(--skin-color);
  font-weight: 600;
  text-transform: uppercase;
}

.header .hamburger-btn {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease;
}

.header .hamburger-btn::after {
  border-radius: 50%;
}

.header .hamburger-btn span {
  display: block;
  height: 2px;
  width: 16px;
  background: var(--bg-black-900);
  position: relative;
}

.header .hamburger-btn span::before,
.header .hamburger-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-black-900);
}

.header .hamburger-btn span::before {
  top: -6px;
}

.header .hamburger-btn span::after {
  top: 6px;
}

/*---------------
 navigation menu
 ----------------*/
.nav-menu {
  position: fixed;
  background: var(--bg-black-50);
  box-shadow: 0 0 8px var(--bg-black-100);
  padding: 15px;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}

.fade-out-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-black-50);
  z-index: -1;
  visibility: hidden;
}

.fade-out-effect.active {
  visibility: visible;
  z-index: 1000;
  animation: fadeOut 0.3s ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.nav-menu.open {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  transition: all 0.3s ease-in;
}

.nav-menu .effect-wrap {
  display: block;
  transition: all 0.3s ease-out;
}

@media screen and (min-width: 760px) {
  .nav-menu,
.fade-out-effect {
    width: 40%;
  }
  .nav-menu .effect-wrap {
    display: none;
  }
}
.nav-menu .close-nav-menu {
  height: 40px;
  width: 40px;
  display: block;
  font-size: 35px;
  line-height: 40px;
  border-radius: 50%;
  position: absolute;
  background: var(--bg-black-50);
  right: 15px;
  top: 15px;
  cursor: pointer;
  text-align: center;
  color: var(--text-black-600);
  transition: all 0.3s ease;
}

.nav-menu .close-nav-menu::after {
  border-radius: 50%;
}

.nav-menu-inner {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu ul {
  padding: 15px;
}

.nav-menu ul li {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.nav-menu ul li:last-child {
  margin-bottom: 0;
}

.nav-menu ul li a {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-black-600);
  padding: 5px 30px;
  text-transform: capitalize;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-menu ul li a.active {
  color: var(--skin-color);
}

.nav-menu ul li a::after {
  border-radius: 30px;
}

/*-------------
 home section
---------------*/
.home-section {
  position: relative;
}

.home-section .full-screen {
  padding: 50px 0;
  min-height: calc(100vh - 120px);
}

.home-section .home-text,
.home-section .home-img {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.home-section .home-text p {
  color: var(--text-black-300);
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
}

.home-section .home-text h2 {
  font-size: 55px;
  font-weight: 700;
  color: var(--text-black-900);
  margin: 0;
}

.home-section .home-text h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-black-600);
  margin: 0;
  text-transform: capitalize;
}

.home-section .home-text .btn-1 {
  margin-top: 30px;
}

.home-section .home-img .img-box {
  max-width: 450px;
  display: block;
  margin: auto;
  border-radius: 50%;
  padding: 15px;
}

.home-section .home-img .img-box img {
  width: 100%;
  border-radius: 50%;
  border: 10px solid transparent;
}

/*---------------
about section
-----------------*/
.about-section {
  padding: 80px 0 80px;
  min-height: 100vh;
}

.about-section .about-img {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0 15px;
}

.about-section .about-img .img-box {
  padding: 15px;
  border-radius: 5px;
}

.about-section .about-img .img-box img {
  width: 100%;
  border: 10px solid transparent;
  border-radius: 5px;
}

.about-section .about-img .social-links {
  margin-top: 20px;
  text-align: center;
}

.about-section .about-img .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  font-size: 16px;
  text-align: center;
  color: var(--text-black-600);
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-section .about-img .social-links a i {
  line-height: 40px;
}

.about-section .about-img .social-links a::after {
  border-radius: 50%;
}

.about-section .about-img .social-links a:hover {
  color: var(--skin-color);
}

.about-section .about-info {
  flex: 0 0 60%;
  min-width: 60%;
  padding: 0 15px;
  position: relative;
}

.about-section .about-info p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: var(--text-black-600);
}

.about-section .about-info span {
  font-weight: 600;
}

.about-section .about-info .btn-1 {
  margin: 30px 20px 0 0;
}

.about-section .about-tabs {
  padding: 60px 15px 50px;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}

.about-section .about-tabs .tab-item {
  display: inline-block;
  margin: 0 5px 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--text-black-600);
  font-weight: 500;
  text-transform: capitalize;
}

.about-section .about-tabs .tab-item:hover:not(.active) {
  opacity: 0.6;
}

.about-section .about-tabs .tab-item.active {
  color: var(--skin-color);
}

.about-section .tab-content {
  flex: 0 0 100%;
  max-width: 100%;
  display: none;
}

.about-section .tab-content.active {
  display: block;
  animation: fadeInTop 0.5s ease;
}

/*
  scroll down
*/
.about-section .scroll-down {
  display: inline-block;
  margin: 0 auto;
}

.about-section .scroll-down i,
.about-section .scroll-down span {
  color: var(--skin-color);
  opacity: 0;
  font-weight: 600;
  animation: scrollDown 2s linear infinite;
}

@keyframes scrollDown {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}
.about-section .scroll-down i {
  font-size: 70px;
  vertical-align: top;
}

.about-section .scroll-down span {
  font-size: 12px;
  display: inline-block;
  writing-mode: vertical-lr;
}

/*-------------
skills
---------------*/
.about-section .skills.tab-content.active {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-section .skills .skills-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 0 15px;
  padding: 15px;
  position: relative;
  text-align: center;
}

.about-section .skills-item .img-box {
  position: relative;
  width: 200px;
  height: 200px;
  animation: popUpDown 10s linear infinite;
}

@keyframes popUpDown {
  0%, 100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
}
.about-section .skills .skills-item .img-box img {
  width: 100%;
}

.about-section .skills-item .img-box h3 {
  position: absolute;
  top: 80px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
  animation: popUpDown 5s linear infinite;
}

.about-section .skills-item:hover .img-box h3 {
  color: var(--skin-color);
}

.about-section .skills-item .img-box.img-box-1 h3 {
  left: 70px;
}

.about-section .skills-item .img-box.img-box-2 h3 {
  left: 80px;
}

.about-section .skills-item-box.box-1,
.about-section .skills-item-box.box-2,
.about-section .skills-item .img-box {
  position: absolute;
}

.about-section .skills-item-box {
  z-index: 3;
}

.about-section .skills-item-box.box-1 {
  width: 300px;
  height: 300px;
  transform: rotate(0deg) translate(0, 0);
  white-space: nowrap;
}

.about-section .skills-item-box.box-2 {
  width: 225px;
  height: 225px;
  transform: rotate(-45deg) translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

.about-section .proficient .skills-item-box.box-1 {
  animation: spinRight 30s linear infinite;
}

.about-section .proficient .skills-item-box.box-2 {
  animation: spinLeft 30s linear infinite;
}

.about-section .familiar .skills-item-box.box-1 {
  animation: spinLeft 30s linear infinite;
}

.about-section .familiar .skills-item-box.box-2 {
  animation: spinRight 30s linear infinite;
}

@keyframes spinRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinLeft {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
.about-section .skills-item-box .skill {
  position: absolute;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.about-section .skills-item-box .skill.skill-5,
.about-section .skills-item-box .skill.skill-1 {
  top: 0;
  left: 0;
}

.about-section .skills-item-box .skill.skill-6,
.about-section .skills-item-box .skill.skill-2 {
  top: 0;
  right: 0;
}

.about-section .skills-item-box .skill.skill-7,
.about-section .skills-item-box .skill.skill-3 {
  bottom: 0;
  left: 0;
}

.about-section .skills-item-box .skill.skill-8,
.about-section .skills-item-box .skill.skill-4 {
  bottom: 0;
  right: 0;
}

.about-section .skills-item-box .skill.skill-1 {
  background: #ec9412;
}

.about-section .skills-item-box .skill.skill-2 {
  background: #fb839e;
}

.about-section .skills-item-box .skill.skill-3 {
  background: #1fc586;
}

.about-section .skills-item-box .skill.skill-4 {
  background: #2eb1ed;
}

.about-section .skills-item-box .skill.skill-5 {
  background: #2eb1ed;
}

.about-section .skills-item-box .skill.skill-6 {
  background: #8a49ff;
}

.about-section .skills-item-box .skill.skill-7 {
  background: #1fc586;
}

.about-section .skills-item-box .skill.skill-8 {
  background: #cc3a3b;
}

/*-------------
experience
---------------*/
.about-section .education,
.about-section .experience {
  padding-bottom: 80px;
}

.about-section .timeline {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}

.about-section .timeline::before {
  content: " ";
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background: var(--bg-black-100);
  position: absolute;
}

.about-section .timeline .timeline-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.about-section .timeline .timeline-item:nth-child(odd) {
  padding-right: calc(50% + 50px);
  text-align: right;
}

.about-section .timeline .timeline-item:nth-child(even) {
  padding-left: calc(50% + 50px);
}

.about-section .timeline .timeline-item-inner {
  padding: 30px;
  border-radius: 5px;
  position: relative;
}

.about-section .timeline .timeline-item-inner::before {
  content: " ";
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--bg-black-100);
  top: 37px;
  z-index: -1;
}

.about-section .timeline .timeline-item:nth-child(odd) .timeline-item-inner::before {
  right: -30px;
}

.about-section .timeline .timeline-item:nth-child(even) .timeline-item-inner::before {
  left: -30px;
}

.about-section .timeline .timeline-item-inner .icon {
  width: 40px;
  height: 40px;
  background: var(--bg-black-50);
  text-align: center;
  border: 1px solid var(--bg-black-100);
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--skin-color);
  position: absolute;
  top: 18px;
}

.about-section .timeline .timeline-item:nth-child(odd) .icon {
  right: -70px;
}

.about-section .timeline .timeline-item:nth-child(even) .icon {
  left: -70px;
}

.about-section .timeline .timeline-item-inner span {
  font-weight: 500;
  color: var(--skin-color);
  display: block;
  margin: 0 0 10px;
  text-transform: capitalize;
}

.about-section .timeline .timeline-item-inner h3 {
  font-size: 20px;
  color: var(--text-black-700);
  font-weight: 600;
  margin: 0 0 5px;
  text-transform: capitalize;
}

.about-section .timeline .timeline-item-inner h4 {
  font-size: 16px;
  font-style: italic;
  color: var(--text-black-600);
  margin: 0;
}

.about-section .timeline .timeline-item-inner p {
  font-size: 16px;
  color: var(--text-black-600);
  line-height: 26px;
  margin: 15px 0 0;
}

/*-------------------
service section
--------------------*/
.service-section {
  padding: 80px 0 80px;
  min-height: 100vh;
}

.service-section .service-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}

.service-section .service-item-inner {
  padding: 50px 15px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
}

.service-section .service-item-inner .icon {
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto 30px;
  position: relative;
  color: var(--text-black-600);
}

.service-section .service-item-inner .icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-section .service-item-inner:hover .icon {
  box-shadow: var(--inner-shadow-0);
}

.service-section .service-item-inner:hover .icon::after {
  box-shadow: var(--outer-shadow);
}

.service-section .service-item-inner .icon i {
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease;
}

.service-section .service-item-inner:hover .icon i {
  color: var(--skin-color);
}

.service-section .service-item-inner h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-black-700);
  margin: 0 0 10px;
  text-transform: capitalize;
}

.service-section .service-item-inner p {
  font-size: 16px;
  color: var(--text-black-600);
  margin: 0;
  line-height: 26px;
}

/*------------------
portfolio section
-------------------*/
.portfolio-section {
  padding: 80px 0 80px;
  min-height: 100vh;
}

.portfolio-section .section-title {
  margin-bottom: 40px;
}

.portfolio-section .portfolio-filter {
  padding: 0 15px;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.portfolio-section .filter-item {
  display: inline-block;
  margin: 0 5px 10px;
  padding: 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--text-black-600);
}

.portfolio-section .filter-item:hover:not(.active) {
  opacity: 0.6;
}

.portfolio-section .filter-item.active {
  color: var(--skin-color);
}

.portfolio-section .no-data {
  height: 40px;
  width: 120px;
  line-height: 40px;
  margin: auto;
  border-radius: 5px;
  padding: 0 15px;
  margin-top: 80px;
  font-size: 16px;
  color: var(--text-black-600);
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
}

.portfolio-section .no-data.hide {
  display: none;
}

.portfolio-section .no-data.show {
  display: block;
  animation: fadeInTop 0.5s ease;
}

.portfolio-section .portfolio-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}

.portfolio-section .portfolio-item.hide {
  display: none;
}

.portfolio-section .portfolio-item.show {
  display: block;
  animation: fadeInTop 0.5s ease;
}

.portfolio-section .portfolio-item-inner {
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.portfolio-section .portfolio-item-img img {
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s ease;
}

.portfolio-section .portfolio-item-inner:hover .portfolio-item-img img {
  transform: translateY(-25px);
}

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

.portfolio-section .portfolio-item-img .view-project {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: var(--skin-color);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: translateY(-5px);
  z-index: -1;
  opacity: 0;
}

.portfolio-section .portfolio-item-inner:hover .view-project {
  transform: translateY(0px);
  opacity: 1;
}

.portfolio-section .portfolio-item-details {
  display: none;
}

.portfolio-section .portfolio-item-inner p {
  font-size: 16px;
  margin: 10px 0 0;
  color: var(--text-black-600);
  text-transform: capitalize;
}

/*--------------
portfolio popup
----------------*/
.portfolio-popup {
  background: var(--bg-black-50);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
}

.portfolio-popup.open {
  visibility: visible;
  opacity: 1;
}

.portfolio-popup .pp-loader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1005;
  background: var(--bg-opacity);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}

.portfolio-popup .pp-loader.active {
  visibility: visible;
  opacity: 1;
}

.portfolio-popup .pp-loader div {
  height: 40px;
  width: 40px;
  border: 3px solid var(--skin-color);
  border-radius: 50%;
  border-right: 3px solid transparent;
  animation: spin 2s linear infinite;
}

.portfolio-popup .pp-details {
  max-width: 1350px;
  width: 85%;
  margin: auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.portfolio-popup .pp-details.active {
  opacity: 1;
}

.portfolio-popup .pp-details-inner {
  padding: 30px 0;
}

.portfolio-popup .pp-title {
  padding: 0 15px;
}

.portfolio-popup .pp-title h2 {
  font-size: 28px;
  color: var(--text-black-900);
  text-transform: capitalize;
  font-weight: 600;
  margin: 0 0 5px;
}

.portfolio-popup .pp-title p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black-600);
  margin: 0 0 15px;
  border-bottom: 1px solid var(--bg-black-100);
  padding-bottom: 10px;
}

.portfolio-popup .pp-title p span {
  font-weight: 400;
  text-transform: capitalize;
}

.portfolio-popup .pp-project-details h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-black-700);
  margin: 0 0 15px;
  text-transform: capitalize;
}

.portfolio-popup .description {
  flex: 0 0 65%;
  max-width: 65%;
  padding: 0 15px;
}

.portfolio-popup .description p {
  font-size: 16px;
  color: var(--text-black-600);
  line-height: 26px;
  margin: 0;
}

.portfolio-popup .info {
  flex: 0 0 35%;
  max-width: 35%;
  padding: 0 15px;
}

.portfolio-popup .info ul li {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-black-600);
  font-size: 16px;
}

.portfolio-popup .info ul li span {
  font-weight: 400;
}

.portfolio-popup .info ul li a {
  color: var(--skin-color);
}

.portfolio-popup .info ul li:last-child {
  margin-bottom: 0;
}

.portfolio-popup .separator {
  height: 1px;
  width: 100%;
  display: block;
  background: var(--bg-black-100);
}

.portfolio-popup .pp-img {
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 5px;
}

.portfolio-popup .pp-main {
  min-height: 100vh;
  max-width: 1350px;
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-popup .pp-main-inner {
  padding: 70px 0 50px;
  position: relative;
}

.portfolio-popup .pp-project-details-btn {
  position: absolute;
  left: 0;
  top: 15px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--skin-color);
  cursor: pointer;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
}

.portfolio-popup .pp-project-details-btn i {
  margin-left: 4px;
}

.portfolio-popup .pp-project-details-btn::after {
  border-radius: 30px;
}

.portfolio-popup .pp-close {
  position: absolute;
  right: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top: 15px;
  text-align: center;
  line-height: 35px;
  font-size: 35px;
  color: var(--text-black-600);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-popup .pp-close:after {
  border-radius: 50%;
}

.portfolio-popup .pp-counter {
  position: absolute;
  right: 0;
  bottom: 5px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: var(--text-black-600);
}

.portfolio-popup .pp-prev,
.portfolio-popup .pp-next {
  position: fixed;
  top: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 1010;
  color: var(--text-black-900);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.portfolio-popup .pp-prev:hover,
.portfolio-popup .pp-next:hover {
  opacity: 1;
}

.portfolio-popup .pp-prev i,
.portfolio-popup .pp-next i {
  line-height: 40px;
}

.portfolio-popup .pp-prev i {
  transform: rotate(180deg);
}

.portfolio-popup .pp-prev {
  left: 15px;
}

.portfolio-popup .pp-next {
  right: 15px;
}

/*--------------------
contact section
----------------------*/
.contact-section {
  padding: 80px 0 80px;
  min-height: 100vh;
}

.contact-section .contact-item {
  flex: 0 0 33.33%;
  max-width: 100%;
  padding: 15px;
  display: flex;
}

.contact-section .contact-item-inner {
  padding: 30px 15px;
  text-align: center;
  border-radius: 5px;
  width: 100%;
}

.contact-section .contact-item-inner i {
  font-size: 25px;
  color: var(--skin-color);
}

.contact-section .contact-item-inner span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-black-600);
  margin: 15px 0 10px;
  text-transform: capitalize;
}

.contact-section .contact-item-inner p {
  font-size: 16px;
  color: var(--text-black-600);
  line-height: 26px;
  font-weight: 500;
  margin: 0;
  word-break: break-word;
}

.contact-section .contact-form {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 50px;
}

.contact-section .w-50 {
  padding: 0 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

.contact-section .input-group {
  margin: 0 0 25px;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.contact-section .input-group::after {
  border-radius: 30px;
}

.contact-section .input-group .input-control {
  height: 45px;
  display: block;
  width: 100%;
  border-radius: 30px;
  border: none;
  background: transparent;
  font-size: 16px;
  padding: 0 15px;
  color: var(--text-black-700);
}

.contact-section .input-group textarea.input-control {
  height: 180px;
  padding: 15px;
  resize: none;
}

.contact-section .submit-btn {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: right;
  padding: 0 15px;
}

/* ============================================================
   DESIGN SYSTEM UPDATES — 2026
   ============================================================ */

/* ---- Logo wordmark pill (glass background) ---- */
.header .logo a {
  width: auto;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  background: rgba(29, 29, 29, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body:not(.dark) .header .logo a {
  background: rgba(239, 240, 244, 0.55);
}

/* ---- Header right grouping ---- */
.header .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---- Posts nav button in header ---- */
.header .posts-nav-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black-700);
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: var(--outer-shadow);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: Raleway, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color 0.2s;
}
.header .posts-nav-btn:hover {
  color: var(--skin-color);
}

/* ---- Typing cursor ---- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--skin-color);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
.hero-bracket {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-black-600);
  margin-top: 6px;
  margin-bottom: 20px;
  text-transform: none;
}

.hero-bracket-2 {
  font-weight: 300;
}

/* ---- Available badge ---- */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 197, 134, 0.6); }
  50% { box-shadow: 0 0 0 5px rgba(31, 197, 134, 0); }
}
.home-section .home-img .img-box {
  position: relative;
}
.available-badge {
  position: absolute;
  bottom: 18px;
  right: 12px;
  background: rgba(10, 30, 15, 0.92);
  border: 1px solid #1fc586;
  border-radius: 999px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #1fc586;
  white-space: nowrap;
  pointer-events: none;
}
.available-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1fc586;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
body:not(.dark) .available-badge {
  background: rgba(230, 255, 240, 0.95);
}

/* ---- Home social icons row ---- */
.home-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.home-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-black-600);
  transition: color 0.2s;
  text-decoration: none;
}
.home-social-link:hover {
  color: var(--skin-color);
}
@media (max-width: 767px) {
  .home-socials { justify-content: center; }
}

/* ---- Stats strip ---- */
.stats-strip {
  display: flex;
  background: #111;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
body:not(.dark) .stats-strip {
  background: var(--bg-black-100);
  border-color: #cccccc;
}
.stat-item {
  flex: 1;
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid #2a2a2a;
}
.stat-item:last-child {
  border-right: none;
}
body:not(.dark) .stat-item {
  border-right-color: #cccccc;
}
.stat-val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--skin-color);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-black-600);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 33.33%; border-bottom: 1px solid #2a2a2a; }
  body:not(.dark) .stat-item { border-bottom-color: #cccccc; }
}

/* ---- Home extra sections (below hero) ---- */
.home-extra-section {
  padding: 44px 0 0;
}
.home-extra-section.home-now-wrap {
  padding-bottom: 20px;
}
.home-extra-section .container {
  padding: 0 15px;
}
.home-extra-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--skin-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
  display: block;
}
body:not(.dark) .eyebrow-line {
  background: var(--bg-black-100);
}

/* ---- Featured project cards ---- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  box-shadow: var(--outer-shadow);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  background: var(--bg-black-50);
  text-decoration: none;
}
.feat-card:hover {
  transform: translateY(-4px);
}
.feat-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.feat-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.feat-card:hover .feat-card-img-wrap img {
  transform: scale(1.03);
}
.feat-card-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.feat-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-black-900);
  line-height: 1.3;
}
.feat-card-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.feat-card-tag {
  font-size: 11px;
  color: var(--skin-color);
  font-weight: 600;
}
.feat-card-desc {
  font-size: 12px;
  color: var(--text-black-600);
  line-height: 1.55;
  margin-top: 4px;
  flex: 1;
}
.feat-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--skin-color);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 991px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 574px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ---- Video cards ---- */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vid-card {
  box-shadow: var(--outer-shadow);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  background: var(--bg-black-50);
  text-decoration: none;
}
.vid-card:hover {
  transform: translateY(-3px);
}
.vid-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.vid-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.vid-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-play-circle {
  width: 50px;
  height: 50px;
  background: rgba(251, 131, 158, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.vid-card:hover .vid-play-circle {
  transform: scale(1.1);
}
.vid-play-circle {
  background: var(--skin-color) !important;
}
.vid-play-circle i {
  color: #fff;
  font-size: 16px;
  margin-left: 3px;
}
/* Short video — 9:16 ratio */
.vid-thumb-short {
  aspect-ratio: 9 / 16 !important;
  max-height: 340px;
}
.vid-short-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--skin-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.vid-card-body {
  padding: 12px 14px 14px;
}
.vid-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 3px;
}
.vid-card-sub {
  font-size: 12px;
  color: var(--text-black-600);
}
@media (max-width: 991px) {
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 574px) {
  .vid-grid { grid-template-columns: 1fr; }
}

/* ---- Media section grids ---- */
.media-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.media-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .media-vid-grid,
  .media-demo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 574px) {
  .media-vid-grid,
  .media-demo-grid { grid-template-columns: 1fr; }
}

/* ---- Media section ---- */
.media-section {
  padding: 80px 0;
  min-height: 100vh;
}

/* ---- "What I'm Doing" cards ---- */
.now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.now-card {
  box-shadow: var(--outer-shadow);
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-black-50);
}
.now-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.now-card p {
  font-size: 13px;
  color: var(--text-black-700);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 991px) {
  .now-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 574px) {
  .now-grid { grid-template-columns: 1fr; }
}

/* ---- Skills tab override (pill grid replaces orbit) ---- */
.about-section .skills.tab-content.active {
  display: block !important;
  height: auto !important;
  width: 100% !important;
  flex-direction: unset !important;
  margin-top: 0 !important;
  padding: 0 15px !important;
  justify-content: unset !important;
}

/* ---- Achievements tab ---- */
.about-section .achievements.tab-content.active {
  display: block !important;
  width: 100% !important;
}

/* ---- About inline stats ---- */
.about-inline-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #111;
  border: 1px solid #2a2a2a;
}
body:not(.dark) .about-inline-stats {
  background: var(--bg-black-100);
  border-color: #cccccc;
}
.inline-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.inline-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--skin-color);
  line-height: 1;
  display: block;
}
.inline-stat-lbl {
  font-size: 10px;
  color: var(--text-black-600);
  margin-top: 3px;
  text-align: center;
  font-weight: 500;
  display: block;
}

/* ---- Skill group sub-categories ---- */
.skill-group {
  width: 100%;
  margin-bottom: 18px;
}
.skill-group:last-child { margin-bottom: 32px; }
.skill-group-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--skin-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.skill-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bg-black-100);
  display: block;
}
.skill-group-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* ---- Skill pill grid ---- */
.skill-cat-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
  padding-top: 10px;
}
.skill-cat-btn {
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-black-600);
  cursor: pointer;
  box-shadow: var(--outer-shadow);
  background: transparent;
  border: none;
  font-family: Raleway, sans-serif;
  transition: all 0.2s;
  user-select: none;
}
.skill-cat-btn:hover {
  color: var(--skin-color);
}
.skill-cat-btn.active {
  color: var(--skin-color);
  box-shadow: var(--inner-shadow);
}
.skill-pill-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 36px;
  width: 100%;
}
.skill-pill {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.15s;
  cursor: default;
  user-select: none;
  white-space: nowrap;
}
.skill-pill:hover {
  transform: scale(1.06);
}

/* ---- Achievement cards ---- */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 40px;
}
.achieve-card {
  box-shadow: var(--outer-shadow);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s;
  background: var(--bg-black-50);
}
.achieve-card:hover {
  transform: translateY(-2px);
}
.achieve-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.achieve-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 4px;
}
.achieve-detail {
  font-size: 12px;
  color: var(--text-black-600);
  line-height: 1.55;
}
@media (max-width: 991px) {
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 574px) {
  .achieve-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTFOLIO SECTION REDESIGN
   ============================================================ */

/* ---- Card grid item ---- */
.portfolio-section .portfolio-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 12px;
  display: flex;
}

/* ---- Card inner ---- */
.portfolio-section .portfolio-item-inner {
  padding: 0 !important;
  border-radius: 8px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.22s;
}
.portfolio-section .portfolio-item-inner:hover {
  transform: translateY(-5px);
}

/* ---- Image wrapper: 16:9 ratio ---- */
.portfolio-section .portfolio-item-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.portfolio-section .portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.3s;
  transform: translateY(0) !important;
}
.portfolio-section .portfolio-item-inner:hover .portfolio-item-img img {
  transform: scale(1.04) !important;
}
.portfolio-section .portfolio-item-img .view-project { display: none !important; }

/* ---- Card body ---- */
.portfolio-item-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.portfolio-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 2px;
  line-height: 1.3;
}
.portfolio-item-sub {
  font-size: 11px;
  color: var(--skin-color);
  font-weight: 600;
  margin-bottom: 6px;
}
.portfolio-item-desc {
  font-size: 12px;
  color: var(--text-black-600);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 8px;
}
.portfolio-section .portfolio-item-inner p.portfolio-item-title { display: none !important; }

/* ============================================================
   PORTFOLIO POPUP REDESIGN
   ============================================================ */
.portfolio-popup {
  background: rgba(0,0,0,0.78) !important;
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px 48px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.22s, visibility 0.22s !important;
}
.portfolio-popup.open {
  opacity: 1 !important;
  visibility: visible !important;
}
.portfolio-popup .pp-modal {
  background: var(--bg-black-50);
  max-width: 860px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  margin: auto 0;
  animation: fadeInTop 0.22s ease;
}
.portfolio-popup .pp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-black-600);
  cursor: pointer;
  z-index: 10;
  transition: color 0.15s;
  font-weight: 300;
  box-shadow: none !important;
}
body:not(.dark) .portfolio-popup .pp-close { background: rgba(255,255,255,0.7); }
.portfolio-popup .pp-close:hover { color: var(--text-black-900); }
.portfolio-popup .pp-close::after,
.portfolio-popup .pp-close::before { display: none !important; }
.portfolio-popup .pp-main-inner {
  position: relative;
  width: 100%;
  background: #111;
}
.portfolio-popup .pp-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #111;
}
.portfolio-popup .pp-counter {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 2px 8px;
  border-radius: 999px;
}
.portfolio-popup .pp-prev,
.portfolio-popup .pp-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #fff;
  z-index: 5;
  transition: background 0.15s;
  box-shadow: none !important;
  line-height: 1;
}
.portfolio-popup .pp-prev { left: 10px; transform: translateY(-50%); }
.portfolio-popup .pp-next { right: 10px; transform: translateY(-50%); }
.portfolio-popup .pp-prev:hover,
.portfolio-popup .pp-next:hover { background: rgba(0,0,0,0.8); }

/* Expand button */
.portfolio-popup .pp-expand-btn {
  position: absolute;
  bottom: 10px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #fff;
  z-index: 5;
  transition: background 0.15s;
}
.portfolio-popup .pp-expand-btn:hover { background: rgba(0,0,0,0.8); }

/* Fullscreen overlay */
.pp-img-fullscreen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pp-img-fullscreen.open {
  display: flex;
}
.pp-fs-img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  display: block;
}
.pp-fs-close {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: Raleway, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}
.pp-fs-close:hover { background: rgba(255,255,255,0.25); }
.pp-fs-prev,
.pp-fs-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  transition: background 0.15s;
}
.pp-fs-prev { left: 16px; }
.pp-fs-next { right: 16px; }
.pp-fs-prev:hover,
.pp-fs-next:hover { background: rgba(255,255,255,0.3); }
.portfolio-popup .pp-body { padding: 24px 28px 30px; }
.portfolio-popup .pp-body-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-black-100);
  margin-bottom: 20px;
}
.portfolio-popup .pp-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-black-900);
  margin-bottom: 4px;
}
.portfolio-popup .pp-modal-sub {
  font-size: 13px;
  color: var(--skin-color);
  font-weight: 600;
  margin-bottom: 4px;
}
.portfolio-popup .pp-modal-cats {
  font-size: 12px;
  color: var(--text-black-600);
}
.portfolio-popup .pp-modal-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
}
.portfolio-popup .pp-col-h {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 10px;
}
.portfolio-popup .pp-stack-h { margin-top: 16px; }
.portfolio-popup .pp-brief-text {
  font-size: 14px;
  color: var(--text-black-700);
  line-height: 1.7;
  margin: 0;
}
.portfolio-popup .pp-info-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.portfolio-popup .pp-info-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-black-600);
  min-width: 42px;
  flex-shrink: 0;
}
.portfolio-popup .pp-info-val {
  font-size: 12px;
  color: var(--text-black-700);
  word-break: break-word;
}
.portfolio-popup .pp-tools-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.portfolio-popup .pp-tool-chip {
  font-size: 11px;
  color: var(--text-black-700);
  background: var(--bg-black-100);
  padding: 3px 9px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}
@media (max-width: 640px) {
  .portfolio-popup .pp-modal-cols { grid-template-columns: 1fr; }
  .portfolio-popup .pp-body { padding: 18px 16px 24px; }
  .portfolio-popup .pp-modal-title { font-size: 18px; }
}

/* ---- Portfolio card enhancements ---- */
.port-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  border: 1px solid;
  white-space: nowrap;
  pointer-events: none;
}
.port-card-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.port-tool-chip {
  font-size: 10px;
  color: var(--text-black-600);
  background: var(--bg-black-100);
  padding: 2px 7px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
}
.port-view-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--skin-color);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---- Portfolio popup enhancements ---- */
.pp-action-btns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pp-live-btn,
.pp-gh-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  font-family: Raleway, sans-serif;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.pp-live-btn {
  color: var(--skin-color);
  background: transparent;
  border: 1.5px solid var(--skin-color);
}
.pp-live-btn:hover {
  background: var(--skin-color);
  color: #fff;
}
.pp-gh-btn {
  color: var(--text-black-700);
  background: transparent;
  border: 1.5px solid var(--bg-black-100);
}
.pp-gh-btn:hover {
  background: var(--bg-black-100);
}

/* ---- Posts section ---- */
.posts-section {
  padding: 80px 0;
  min-height: 100vh;
}
.posts-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.post-intro {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bg-black-100);
  margin-bottom: 28px;
}
.post-intro-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--bg-black-100);
  object-fit: cover;
  box-shadow: var(--outer-shadow);
}
.post-intro-right {
  flex: 1;
}
.post-intro-handle {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-black-900);
  display: block;
  margin-bottom: 5px;
}
.post-intro-bio {
  font-size: 13px;
  color: var(--text-black-700);
  line-height: 1.65;
  margin: 0 0 10px;
}
.post-intro-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-black-600);
  box-shadow: var(--outer-shadow);
  transition: color 0.15s;
  text-decoration: none;
}
.post-social-link:hover {
  color: var(--skin-color);
}
.post-tag-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.post-tag-btn {
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-black-600);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: Raleway, sans-serif;
  box-shadow: var(--outer-shadow);
  transition: all 0.15s;
}
.post-tag-btn.active {
  color: #fff;
}
.post-tag-btn:hover:not(.active) {
  color: var(--skin-color);
}
.feat-post-card {
  box-shadow: var(--outer-shadow);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--bg-black-50);
  text-decoration: none;
  display: block;
}
.feat-post-card:hover {
  transform: translateY(-2px);
}
.feat-post-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--skin-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-post-label-line {
  flex: 1;
  height: 1px;
  background: var(--bg-black-100);
  display: block;
}
.feat-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.feat-post-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--skin-color);
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
}
.feat-post-excerpt {
  font-size: 14px;
  color: var(--text-black-700);
  line-height: 1.7;
  margin: 0;
}
.feat-post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-color);
  margin-top: 14px;
}
.post-item {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bg-black-100);
  margin-bottom: 22px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.post-date,
.post-read {
  font-size: 12px;
  color: var(--text-black-600);
}
.post-meta-dot {
  font-size: 10px;
  color: var(--bg-black-100);
}
.post-tag-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.post-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--skin-color);
  line-height: 1.4;
  margin-bottom: 6px;
  display: block;
  text-decoration: none;
  transition: text-decoration 0.15s;
}
.post-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-excerpt {
  font-size: 13px;
  color: var(--text-black-600);
  line-height: 1.65;
  margin: 0;
}
.posts-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-black-700);
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.15s;
  background: none;
  border: none;
  font-family: Raleway, sans-serif;
  text-decoration: none;
}
.posts-all-link:hover {
  color: var(--skin-color);
}
.posts-footer {
  border-top: 1px solid var(--bg-black-100);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.posts-footer-text {
  font-size: 12px;
  color: var(--text-black-600);
}
.posts-footer-socials {
  display: flex;
  gap: 8px;
}

/* CV dropdown */
.cv-dropdown {
  position: relative;
  display: inline-flex;
  gap: 4px;
  vertical-align: middle;
}
.cv-btn-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.cv-btn-toggle i {
  transition: transform 0.25s ease;
}
.cv-dropdown.open .cv-btn-toggle i {
  transform: rotate(180deg);
}
.cv-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #eff0f4;
  border-radius: 12px;
  padding: 6px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
body.dark .cv-dropdown-panel {
  background: #2a2a2a;
}
.cv-dropdown.open .cv-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cv-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-black-700);
  font-size: 14px;
  transition: background 0.2s ease;
  text-decoration: none;
}
.cv-option:hover {
  background: rgba(0, 0, 0, 0.05);
}
body.dark .cv-option:hover {
  background: rgba(255, 255, 255, 0.06);
}
.cv-option-tag {
  font-size: 11px;
  color: var(--skin-color);
  font-weight: 600;
}

/*# sourceMappingURL=styles.css.map */