/*Font Awesome Free Icon*/
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
/*Google fonts*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Rubik:500,700,900&display=swap");

/* CSS Variables */
:root {
  --bg-black-900: #f2f2fc;
  --bg-black-100: #fdf9ff;
  --bg-black-50: #e8dfec;
  --text-black-900: #302e4d;
  --text-black-700: #504e70;
  --skin-color: #ec1839;
}

body.dark {
  --bg-black-900: #151515;
  --bg-black-100: #222222;
  --bg-black-50: #393939;
  --text-black-900: #ffffff;
  --text-black-700: #e9e9e9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black-900);
}

::-webkit-scrollbar-thumb {
  background: var(--skin-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d41433;
}

/* General Style */
body {
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: border-box;
}

input,
textarea,
select {
  font-family: "Montserrat", sans-serif;
}

.section {
  background-color: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  padding: 0 30px;
  position: fixed;
  left: 270px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.section.active {
  opacity: 1;
  z-index: 2;
  animation: slideSection 1s ease;
  -webkit-animation: slideSection 1s ease;
  -moz-animation: slideSection 1s ease;
  -o-animation: slideSection 1s ease;
}

.section.back-section {
  z-index: 1;
}

@keyframes slideSection {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
}

@-webkit-keyframes slideSection {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
}

@-moz-keyframes slideSection {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
}

@-o-keyframes slideSection {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
}

.section .container {
  padding-top: 60px;
  padding-bottom: 70px;
}

.section-title {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  color: var(--text-black-900);
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  margin: 0 0 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  height: 4px;
  width: 50px;
  position: absolute;
  top: 100%;
  left: 0;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 25px;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

.shadow-dark {
  -webkit-box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.btn {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  padding: 12px 35px;
  color: #ffffff;
  border-radius: 40px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

/* Preloader */
.preloader {
  background-color: #222222;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 150;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.preloader.opacity-0 {
  opacity: 0;
}

.preloader .loader {
  height: 40px;
  width: 40px;
  border: 4px solid #e3e3e3;
  border-radius: 50%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

/* Aside */

.aside {
  width: 270px;
  background-color: var(--bg-black-100);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11;
  border-right: 1px solid var(--bg-black-50);
  /* padding: 30px; */
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  /* overflow-y: auto; */
}

.aside .aside-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

.aside .logo {
  padding: 30px 0;
}

.aside .logo a {
  font-size: 30px;
  color: var(--text-black-900);
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-text {
  font-size: 18px;
  margin-top: 10px;
  color: var(--skin-color);
  letter-spacing: 1px;
}

.logo-subtext {
  font-size: 13px;
  color: var(--text-black-700);
  font-weight: 500;
}

.aside .logo a::before {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: -20px;
  left: -10px;
}

.aside .logo a::after {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--bg-black-50);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  z-index: 1001; /* Higher than aside */
  border-radius: 5px;
  background-color: var(--bg-black-100);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-toggler span {
  height: 2px;
  width: 18px;
  display: inline-block;
  position: relative;
  background-color: var(--skin-color);
}

.nav-toggler.open span {
  background-color: transparent;
}

.nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  position: absolute;
  top: -6px;
  left: 0;
  background-color: var(--skin-color);
}

.nav-toggler.open span::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 0px;
}

.nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  position: absolute;
  top: 6px;
  left: 0;
  background-color: var(--skin-color);
}

.nav-toggler.open span::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: 0px;
}

.aside .nav {
  list-style: none;
  margin: 70px 0;
  padding: 0;
}

.aside .nav li {
  display: block;
}

.aside .nav li a {
  font-size: 16px;
  font-weight: 600;
  color: #302e4d;
  text-decoration: none;
  line-height: 45px;
  display: block;
  border-bottom: 1px solid #e8dfec;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.aside .nav li a:not(.active):hover {
  padding-left: 5px;
}

.aside .nav li a .fa {
  margin-right: 5px;
}

.aside .copyright-text {
  position: absolute;
  bottom: 5px;
  font-size: 13px;
  color: #7d7d7d;
}

/* Home Section */

.home {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
}

.home .intro {
  text-align: center;
}

.home .intro img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  display: inline-block;
  border: 4px solid var(--skin-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.home .intro h1 {
  font-size: 30px;
  color: #302e4d;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  margin: 20px 0 5px;
}

.home-seo-text {
  margin-top: 15px;
  font-size: 16px;
  color: var(--text-black-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home .intro span {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 22px;
  color: #504e70;
}

.home .intro .social-links {
  margin-top: 25px;
}

.home .intro .social-links a {
  height: 35px;
  width: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  color: #ffffff;
  margin: 0 4px;
  border-radius: 40%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home .intro .social-links a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.ityped-cursor {
  /* font-size: 2.2rem; */
  opacity: 1;
  -webkit-animation: blink 0.3s infinite;
  -moz-animation: blink 0.3s infinite;
  animation: blink 0.3s infinite;
  animation-direction: alternate;
}

@keyframes blink {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes blink {
  100% {
    opacity: 0;
  }
}

@-moz-keyframes blink {
  100% {
    opacity: 0;
  }
}

/* About Section */

.about .about-content {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #302e4d;
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 25px;
  color: #020203;
  margin: 0;
}

.about .about-content .personal-info {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.about .about-content .personal-info .info-item p {
  font-weight: 600;
  padding: 10px 0;
  font-size: 16px;
  margin: 0;
  color: #302e4d;
  border-bottom: 1px solid #e8dfec;
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: #504e70;
  margin-left: 4px;
  display: inline-block;
}

.about .about-content .personal-info .buttons {
  margin-top: 30px;
}

.about .about-content .personal-info .buttons .btn {
  margin-right: 15px;
  margin-top: 10px;
}

.about .about-content .skills {
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .skills .skill-item h5 {
  line-height: 40px;
  font-weight: 600;
  font-size: 16px;
  color: #302e4d;
  text-transform: capitalize;
  margin: 0;
}

.about .about-content .skills .skill-item {
  margin-bottom: 30px;
}

/* Skill Badges */
.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.skill-badge {
  background-color: var(--bg-black-100);
  border: 1px solid var(--bg-black-50);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black-700);
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.skill-badge:hover {
  border-color: var(--skin-color);
  color: var(--skin-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.skill-badge.ds-ai:hover {
  border-color: #2196f3;
  color: #2196f3;
}

.about .about-content .skills .skill-item .progress {
  background-color: #e3e3e3;
  height: 8px;
  border-radius: 4px;
  width: 100%;
  position: relative;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
}

.about .about-content .skills .skill-item .skill-porcent {
  line-height: 40px;
  position: absolute;
  right: 0;
  top: -40px;
  font-weight: 400;
  color: #302e4d;
}

.about .about-content .education {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 30px;
}

.about .about-content .experience {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 30px;
}

.about .about-content h3.title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #302e4d;
}

.about .about-content .timeline {
  background-color: #fdf9ff;
  padding: 30px 15px;
  border: 1px solid #d4d4e3;
  border-radius: 10px;
  position: relative;
  width: 100%;
}

.about .about-content .timeline .timeline-item {
  position: relative;
  padding-left: 37px;
  padding-bottom: 50px;
}

.about .about-content .timeline .timeline-item::before {
  content: "";
  width: 1px;
  position: absolute;
  height: 100%;
  left: 7px;
  top: 0;
}

.about .about-content .timeline .timeline-item:last-child {
  padding-bottom: 0px;
}

.about .about-content .timeline-box {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .timeline .circle-dot {
  position: absolute;
  left: 0;
  top: 0px;
  height: 15px;
  width: 15px;
  left: 0px;
  border-radius: 50%;
}

.about .about-content .timeline .timeline-date {
  font-size: 14px;
  font-weight: 400;
  color: #504e70;
  margin-bottom: 12px;
}

.about .about-content .timeline .timeline-date .fa {
  margin-right: 5px;
}

.about .about-content .timeline .timeline-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #302e4d;
}

.about .about-content .timeline .timeline-text {
  font-size: 16px;
  line-height: 25px;
  color: #504e70;
  margin: 0;
}

/* Services Section */

.service .container {
  padding-bottom: 40px;
}

.service .service-item {
  flex: 0 0 33.33%;
  -ms-flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: flex;
}

.service .service-item .service-item-inner {
  background-color: #fdf9ff;
  border: 1px solid #d4d4e3;
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.service .service-item .service-item-inner:hover {
  -webkit-box-shadow: 0 10px 40px rgba(48, 46, 77, 0.2);
  box-shadow: 0 10px 40px rgba(48, 46, 77, 0.2);
  transform: translateY(-10px);
  border-color: var(--skin-color);
}

.service .service-item .service-item-inner .icon {
  height: 60px;
  width: 60px;
  display: block;
  margin: 0 auto 30px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.service .service-item .service-item-inner .icon .fa {
  font-size: 40px;
  line-height: 60px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.service .service-item .service-item-inner:hover .icon .fa {
  font-size: 25px;
  color: #ffffff;
}

.service .service-item .service-item-inner h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #302e4d;
  font-weight: 700;
  text-transform: capitalize;
}

.service .service-item .service-item-inner p {
  font-size: 16px;
  color: #504e70;
  line-height: 25px;
  margin: 0;
}

/* Portfolio Section */

.portfolio .container {
  padding-bottom: 40px;
}

.portfolio .portfolio-filter {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.portfolio .portfolio-filter button {
  border: 1px solid var(--bg-black-50);
  background-color: var(--bg-black-100);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 5px;
  padding: 8px 25px;
  color: var(--text-black-700);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filter button.active {
  background-color: var(--skin-color);
  color: #fff;
  border-color: var(--skin-color);
  box-shadow: 0 5px 15px rgba(236, 24, 57, 0.3);
}

.portfolio .portfolio-filter button:hover:not(.active) {
  border-color: var(--skin-color);
  color: var(--skin-color);
}

.portfolio .portfolio-item {
  flex: 0 0 33.33%;
  -ms-flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
}

.portfolio .portfolio-item.hide {
  display: none;
}

.portfolio .portfolio-item.show {
  display: block;
  animation: showItem 0.5s ease;
}

@keyframes showItem {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes showItem {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

.portfolio .portfolio-item-inner {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-black-50);
}

.portfolio .portfolio-item-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.portfolio .portfolio-item-inner .portfolio-img img {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}

.portfolio .portfolio-item-inner:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  z-index: 1;
  transition: all 0.4s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

body.dark .portfolio .portfolio-item .portfolio-info {
  background: rgba(30, 30, 30, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-black-900);
  margin: 0;
  transform: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.portfolio-tags span {
  font-size: 11px;
  color: var(--skin-color);
  background-color: rgba(236, 24, 57, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.portfolio .portfolio-item-inner:hover .portfolio-info {
  background: var(--bg-black-100);
}

.portfolio .portfolio-item-inner:hover .portfolio-tags {
  max-height: 50px;
  opacity: 1;
  margin-top: 8px;
}

.portfolio .portfolio-item .portfolio-info .icon {
  position: absolute;
  right: 20px;
  top: -25px;
  height: 40px;
  width: 40px;
  background-color: var(--skin-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(236, 24, 57, 0.4);
  transform: scale(0);
  transition: all 0.3s ease;
  opacity: 0;
}

.portfolio .portfolio-item-inner:hover .portfolio-info .icon {
  transform: scale(1);
  opacity: 1;
}

/* Portfolio Detail Styles */
.portfolio-details {
  margin-top: 20px;
  padding: 15px;
  background-color: var(--bg-black-900);
  border-radius: 10px;
  border: 1px solid var(--bg-black-50);
}

.detail-item {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-black-700);
}

.detail-item strong {
  color: var(--text-black-900);
}

.detail-link {
  color: var(--skin-color);
  font-weight: 600;
  text-decoration: underline;
}

.portfolio .portfolio-item .portfolio-info .icon .fa {
  line-height: 40px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.portfolio-tags span {
  font-size: 11px;
  background-color: var(--bg-black-50);
  color: var(--text-black-700);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-tags span {
  background-color: var(--skin-color);
  color: #fff;
}

/* Lightbox */

.lightbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  border-radius: 10px;
  justify-content: center;
  cursor: zoom-out;
  padding: 30px;
}

.lightbox.open {
  display: flex;
  display: -ms-flexbox;
}

.lightbox .lightbox-content img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 500px;
  cursor: pointer;
  display: block;
  padding: 40px 0 30px;
}

.lightbox.open .lightbox-content {
  animation: lightboxImage 0.5s ease;
}

@keyframes lightboxImage {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes lightboxImage {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.lightbox .lightbox-content {
  position: relative;
}

.lightbox .lightbox-content .lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  z-index: -1;
}

.lightbox .lightbox-content .lightbox-close {
  position: absolute;
  height: 40px;
  width: 40px;
  top: 0px;
  right: 0px;
  font-size: 32px;
  text-align: right;
  color: #ffffff;
  line-height: 40px;
  cursor: pointer;
}

.lightbox .lightbox-controls .prev-item,
.lightbox .lightbox-controls .next-item {
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  top: 50%;
  margin-top: -20px;
  z-index: 110;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.lightbox .lightbox-controls .prev-item:active,
.lightbox .lightbox-controls .next-item:active {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.lightbox .lightbox-controls .prev-item:hover,
.lightbox .lightbox-controls .next-item:hover {
  transform: scale(1);
  -webkit-transform: scale(1);
}

.lightbox .lightbox-controls .prev-item {
  left: 30px;
}

.lightbox .lightbox-controls .next-item {
  right: 30px;
}

.lightbox .lightbox-controls .prev-item .fa,
.lightbox .lightbox-controls .next-item .fa {
  font-size: 32px;
  line-height: 40px;
}

/* Blog Section */

.blog .container {
  padding-bottom: 40px;
}

.blog .blog-item {
  flex: 0 0 33.33%;
  -ms-flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
  display: flex;
}

.blog .blog-item-inner {
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--bg-black-100);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-black-50);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog .blog-item-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog .blog-item-inner .blog-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog .blog-item-inner .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.blog .blog-item-inner:hover .blog-img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.blog .blog-item-inner .blog-img .blog-date {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: var(--skin-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.blog .blog-item-inner .blog-info {
  padding: 25px;
  background-color: var(--bg-black-100);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog .blog-item-inner .blog-info .blog-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog .blog-item-inner .blog-info .blog-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-black-700);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog .blog-item-inner .blog-info .blog-tags {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black-900);
  border-top: 1px solid var(--bg-black-50);
  padding-top: 15px;
  margin-top: auto;
}

.blog .blog-item-inner .blog-info .blog-tags a {
  color: var(--skin-color);
  text-decoration: none;
  font-weight: 700; /* More prominent */
}

/* Contact Section */

.contact .contact-info-item {
  flex: 0 0 33.33%;
  -ms-flex: 0 0 33.33%;
  max-width: 33.33%;
  text-align: center;
  margin-bottom: 40px;
}

.contact .contact-info-item .icon {
  display: inline-block;
}

.contact .contact-info-item .icon .fa {
  font-size: 40px;
}

.contact .contact-info-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #302e4d;
  text-transform: capitalize;
  margin: 15px 0 5px;
}

.contact .contact-info-item p {
  font-size: 16px;
  line-height: 25px;
  color: #504e70;
  margin: 0;
  font-weight: 400;
}

.contact .contact-form {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
}

.contact .contact-form .col-6 {
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  max-width: 50%;
}

.contact .contact-form .col-12 {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
}

.contact .contact-form .form-item {
  margin-bottom: 30px;
}

.contact .contact-form .form-item .form-control {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #d4d4e3;
  padding: 10px 25px;
  font-size: 16px;
  color: #504e70;
}

.contact .contact-form .form-item .form-control:focus {
  -webkit-box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.contact .contact-form .form-item textarea.form-control {
  height: 140px;
}

.contact .contact-form .btn {
  height: 50px;
  padding: 0 50px;
}

.aside .logo a::before {
  border-top: 4px solid var(--skin-color);
  border-left: 4px solid var(--skin-color);
}

.aside .logo a::after {
  border-right: 4px solid var(--skin-color);
  border-bottom: 4px solid var(--skin-color);
}

.aside .nav li a:hover,
body.dark .aside .nav li a:hover,
.blog .blog-item-inner .blog-info .blog-tags a,
.portfolio .portfolio-item .portfolio-info .icon .fa,
.lightbox .lightbox-controls .prev-item .fa,
.contact .contact-info-item .icon .fa,
.lightbox .lightbox-controls .next-item .fa,
.about .about-content .about-text h3 span,
.service .service-item .service-item-inner .icon .fa,
body.dark .aside .nav li a.active,
.aside .nav li a.active {
  color: var(--skin-color);
}

.btn,
.service .service-item .service-item-inner:hover .icon,
.about .about-content .timeline .circle-dot,
.blog .blog-item-inner .blog-img .blog-date,
.about .about-content .skills .skill-item .progress .progress-in,
.about .about-content .timeline-item::before,
.aside .nav-toggler span,
.section-title h2::before,
.section-title h2::after,
.aside .nav-toggler span::before,
.aside .nav-toggler span::after,
.home .intro .social-links a {
  background-color: var(--skin-color);
}

.contact .contact-info-item {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: var(--bg-black-100);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--bg-black-50);
  margin: 50px auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-black-900);
}

.modal-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal-text {
  font-size: 16px;
  color: var(--text-black-700);
  line-height: 1.7;
}

.portfolio-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--bg-black-50);
}

.detail-item {
  font-size: 14px;
  color: var(--text-black-900);
}

.detail-item strong {
  color: var(--skin-color);
  margin-right: 5px;
}

.detail-link {
  color: var(--skin-color);
  text-decoration: none;
  font-weight: 600;
}

.detail-link:hover {
  text-decoration: underline;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
}

.success-content {
  text-align: center;
  max-width: 400px;
}

.success-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.ok-btn {
  margin-top: 25px;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

/* Responsive Overhaul */

@media (max-width: 1199px) {
  .section {
    left: 0;
    padding: 0 15px;
  }
  .section.open {
    left: 0;
    opacity: 0.3;
    pointer-events: none;
  }
  .aside {
    left: -270px;
    z-index: 1000;
  }
  .aside.open {
    left: 0;
  }
  .nav-toggler {
    display: flex;
    left: 30px;
  }
  .nav-toggler.open {
    left: 300px;
  }
  .section .container {
    padding-top: 70px;
  }
}

@media (max-width: 991px) {
  .home .intro img {
    height: 150px;
    width: 150px;
  }
  .home .intro h1 {
    font-size: 24px;
  }
  .service .service-item,
  .blog .blog-item,
  .portfolio .portfolio-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .about .about-content .personal-info,
  .contact .contact-form .col-6,
  .service .service-item,
  .blog .blog-item,
  .portfolio .portfolio-item,
  .about .about-content .skills,
  .about .about-content .education,
  .about .about-content .experience {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .portfolio .portfolio-filter {
    text-align: center;
    margin-bottom: 20px;
  }

  .portfolio .portfolio-filter button {
    margin-bottom: 10px;
    padding: 8px 15px;
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .modal-content {
    padding: 15px;
    margin: 20px auto;
    width: 95%;
  }

  .modal-title {
    font-size: 18px;
  }

  .portfolio-details {
    flex-direction: column;
    gap: 5px;
  }

  .portfolio-tags span {
    font-size: 10px;
    padding: 2px 6px;
  }
}

@media (max-width: 575px) {
  .home .intro h1 {
    font-size: 20px;
  }
  .home-seo-text {
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .aside .logo img {
    height: 60px !important;
  }
  .logo-text {
    font-size: 13px;
  }
  .logo-subtext {
    font-size: 10px;
  }
  .nav-toggler {
    left: 15px;
    top: 15px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: #fff;
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
