/********************/
/* Gloable Variables  */
/********************/
:root {
  --ff-roboto: "Roboto", sans-serif;
  --ff-raleway: "Raleway", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;
  --ff-jetbrains: "JetBrains Mono", monospace;

  --primary-color: #1e90ff;
  --secondary-color: #28a745;
  --green-dark: #22c55e;
  --error-color: #dc3545;
  --background-color: #000000;
  --bg-black-transparent: #00000073;
  --bg-blue-transparent: #0103216b;
  --surface-color: #1e1e1e;
  --on-primary-color: #ffffff;
  --on-secondary-color: #ffffff;
  --on-background-color: #ffffff;
  --on-surface-color: #ffffff;
  --light-gray-color: #bdbdbd;
  --section-black-transparent: #00000000;
  --gold-color: #f8c202;

  --primary-color-2: #000000;
  --secondary-color-2: #1e90ff;
  --accent-color-2: #28a745;
  --bg-light-black: #000000;

  --navbar-color: #28a745;

  --body-bg-color: #000000;

  --section-bg-color: #1e90ff;
  --section-accent-color: #28a745;

  --yellow-border: #e4e15a;
  --orange-color: #dfa467;
  --light-green: #2aff3d;
  --bg-image: radial-gradient(#ffffff33 1px, #00091d 0);
}

.light {
  --primary-color: lighten(var(--primary-color), 15%);
  --secondary-color: lighten(var(--secondary-color), 15%);
  --error-color: lighten(var(--error-color), 15%);
  --background-color: #fff;
  --surface-color: #f5f5f5;
  --on-primary-color: #000;
  --on-secondary-color: #fff;
  --on-background-color: #000;
  --on-surface-color: #000;
  --background-color-2: #fff;
  --text-color-2: #333;
  --border-color-2: #ddd;
}
.dark {
  --primary-color: darken(var(--primary-color), 15%);
  --secondary-color: darken(var(--secondary-color), 15%);
  --error-color: darken(var(--error-color), 15%);
  --background-color: #121212;
  --surface-color: #1e1e1e;
  --on-primary-color: #fff;
  --on-secondary-color: #000;
  --on-background-color: #fff;
  --on-surface-color: #fff;
  --background-color-2: #333;
  --text-color-2: #fff;
  --border-color-2: #555;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  /* Background Pattern */
  background-color: #000000;
  background-image: radial-gradient(#ffffff33 1px, #00091d 0);
  background-size: 10px 10px;
}
* {
  font-family: var(--ff-roboto);
  font-family: var(--ff-jetbrains);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-container {
  background-color: var(--background-color);
  background-size: 10px 10px;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--primary-color);
}
@media screen and (max-width: 768px) {
  .section-container {
    border-radius: 14px;
    padding: 25px;
  }
}
@media screen and (max-width: 500px) {
  .section-container {
    border-radius: 0;
    padding: 10px;
    border: none;
  }
}
/********************/
/* Header | Navbar  */
/********************/
header {
  max-width: 1400px;
  margin: 0 auto;
  /* background: #3e1e68; */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  background-color: var(--bg-black-transparent);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

#logo span {
  font-family: var(--ff-jetbrains);
  font-weight: 500;
  color: var(--on-primary-color);
  padding: 5px 10px;
  font-size: 40px;
  text-transform: lowercase;
}

#logo code {
  font-family: var(--ff-jetbrains);
  color: var(--secondary-color);
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar ul li {
  margin: 0 10px;
}
.navbar a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 10px;
  color: var(--light-gray-color);
  transition: background-color 0.3s ease;
}
.navbar .icon {
  font-size: 20px;
}
.navbar .text {
  font-weight: 700;
  margin-top: 5px;
}
.navbar a:hover:not(.navbar li.active a) {
  color: var(--primary-color);
  transform: translateY(-3px);
  transition: 0.3s ease-in-out;
}
li.active a {
  color: var(--secondary-color);
}
@media screen and (max-width: 992px) {
  #logo span {
    font-size: 30px;
    font-weight: 900;
  }
}
#burger-menu {
  display: none;
  cursor: pointer;
  margin-right: 20px;
}
#burger-menu span {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}
#burger-menu span i {
  color: #e5e2e2;
  font-size: 30px;
  transition: all 0.8s;
}
#menu-toggle {
  display: none;
}
@media screen and (max-width: 900px) {
  #burger-menu {
    display: flex;
  }
  .navbar ul {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    padding-top: 50px;
    background: var(--background-color);
    background-image: var(--bg-image);
    flex-direction: column;
    z-index: 2;
    width: 260px;
    height: 100vh;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
  }
  .navbar ul li {
    margin: 0;
  }
  .navbar a {
    display: flex;
    flex-direction: row;
    padding: 9px 27px;
  }
  .navbar .icon {
    font-size: 20px;
    margin: 10px 15px;
  }
  .navbar .text {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
  }
  #menu-toggle:checked + .navbar ul {
    right: 0;
    display: flex;
    overflow: hidden;
  }
  .navbar a {
    padding: 10px 20px;
  }
}
/********************/
/*   Hero Section   */
/********************/
.hero {
  color: #fff;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.hero-left {
  max-width: 50%;
}
.hero-right {
  max-width: 50%;
  text-align: center;
}
.hero-greeting {
  width: 100%;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-title {
  width: 100%;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--on-primary-color);
}
.hero-title span {
  color: var(--secondary-color);
}
.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f6d15a;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 1px;
  font-family: var(--ff-jetbrains);
  border-bottom: 2px solid #e4e15a;
}
.hero-subtitle {
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero-left-content {
  max-width: 100%;
  text-align: left;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
}
/* New Subtitle for MERN Stack */
.mern-title {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #ffecb3;
}

.mern-stack {
  font-weight: 700;
  color: #f6d15a;
  border-bottom: 2px solid #e4e15a;
}

/*    HERO BUTTONS  */

.hero-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-buttons .btn {
  position: relative;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  color: var(--accent-color-2);
  cursor: pointer;
  /* background-color: #7d2ae8; */
  border: 1px solid var(--accent-color-2);
  background: transparent;
  transition: all 0.2s ease;
}

.social-icons {
  display: flex;
  gap: 0px;
}

.hero-buttons .btn:hover {
  background-color: var(--accent-color-2);
  color: var(--background-color-2);
}

.hero-buttons .btn:active {
  transform: scale(0.96);
}

.hero-buttons .btn:before,
.hero-buttons .btn:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.hero-buttons .btn:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.hero-buttons .btn:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
/* HERO BUTTONS END! */

.hero-social-icons {
  display: flex;
  gap: 10px;
  padding: 16px 13px;
  font-size: 1.5rem;
  background: transparent;
  color: var(--accent-color-2);
  margin-right: 0px;
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.3s;
}
.hero-social-icons i {
  font-size: 1.5rem;
  transition: all 0.3s;
  color: var(--accent-color-2);
}
.hero-social-icons:hover i {
  color: var(--primary-color);
}
.hero-image img {
  width: 80%;
  border-radius: 50%;
  border: 5px solid #24324d;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .hero {
    padding: 10px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .job-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-image img {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 10px 0;
  }
  .hero-content {
    flex-direction: column-reverse;
    padding: 10px 0;
  }
  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .hero-image img {
    width: 60%;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 2rem;
  }
  .job-title {
    font-size: 1.5rem;
  }
  .hero-buttons .btn {
    margin-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .hero .section-container {
    display: block;
  }
  .hero-image img {
    display: none;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 300px) {
  .hero-image img {
    width: 90%;
  }
}

/********************/
/* Statistics Section */
/********************/
#project-stats {
  max-width: 1200px;
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
}
.section-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.stats-item {
  color: var(--on-secondary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.stats-item span {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 800;
}
.stats-item p {
  text-align: left;
  line-height: 1.375;
}

/* About Section */
#about {
  max-width: 1200px;
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
}
.section-title {
  font-family: var(--ff-jetbrains);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  border-bottom: 5px solid var(--accent-color-2);
  display: inline-block;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.about-image {
  text-align: center;
  flex-basis: 40%;
  align-self: center;
  transition: all 0.6s;
}
.about-image img {
  /* border: 8px solid #fff; */
  border-radius: 10px;
  width: 100%;
  max-width: 250px;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.about-image img:hover {
  transform: scale(1.1);
}
.about-right {
  flex-basis: 60%;
  text-align: left;
}
.about-tabs {
  flex-shrink: 0;
  flex-grow: 2;
  flex-basis: 100%;
  margin-bottom: 20px;
  text-align: left;
}
.about-tabs ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
.about-tabs li {
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #d9d8d8;
  padding: 10px 20px;
  /* padding: 14px 25px; */
  border-radius: 26px;
  transition: background-color 0.3s, color 0.3s;
}
.about-tabs li.active {
  /* background-color: #c550ff; */
  /* background-color: #7d2ae8; */
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.about-tabs li:not(.active):hover {
  background-color: #3e1e68;
  background-color: var(--secondary-color-2);
  color: #fff;
  transition: background-color 0.3s;
}
.tab-heading {
  font-size: 1.3rem;
  padding: 10px;

  color: #e7e7e7;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--ff-raleway);
}
.about-tab p,
.experience-paragraph,
.education-tab p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f8f8f8;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.education-programing-lang {
  margin: 5px 0;
  font-weight: 700;
  color: #61dafb !important;
}

.tab-content {
  display: none;
  min-height: 400px;
  box-sizing: border-box;
}
.tab-content.active {
  display: block;
  /* background-color: rgba(45, 45, 45, 0.2); */
  background-color: var(--background-color);
  /* padding: 20px; */
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.about-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.about-social-icon {
  font-size: 1.5rem;
  color: #bcbcbc;
  text-decoration: none;
  transition: color 0.3s;
}
.about-social-icon:hover {
  color: #c550ff;
}
.roadmapcodecamp-link {
  color: #1976d2;
  text-decoration: none;
  font-weight: 700;
}
.roadmapcodecamp-link:hover {
  text-decoration: underline;
}
.skills-list,
.experience-list,
.education-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.skills-subheading,
.education-tab h4 {
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 10px;
  text-transform: uppercase;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.skills-subheading,
.education-tab h4 {
  /* background-color: white; */
  /* background-color: #171515; */
  /* background-color: #41516c; */
  background-color: #031c47;
  color: white;
  padding: 10px;
}

.skills-list i {
  font-size: 1rem;
  margin-right: 10px;
  color: #f8f8f8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.skills-list li,
.education-list li {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #333;
  padding: 10px;
  display: inline-block;
  /* border-radius: 5px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
.skills-list li:hover {
  background-color: #171515;
  color: #fff;
  transform: scale(1.05);
}
.quick-learner-line {
  font-size: 1.3rem;
  color: #e7e7e7;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: #1976d2;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.tab-content p b {
  font-weight: 700;
  color: #f1502f;
}
/* .education-list li:last-child {
  margin: 5px 0;
  font-weight: 700;
  color: #61dafb;
} */

.education-ielts:not(b) {
  color: #61dafb;
}

@media (max-width: 768px) {
  #about {
    padding: 10px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-content {
    flex-direction: column;
  }
  .about-image {
    flex: none;
    order: 1;
    max-width: 250px;
    margin: 0 auto;
  }
  .about-image img {
    height: auto;
  }
  .about-tabs ul {
    margin-top: 20px;
  }
  .about-tabs {
    flex: none;
    order: 2;
  }
  .about-right {
    flex: none;
    order: 3;
  }
  .about-tabs li {
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
  }
  .tab-heading {
    padding: 10px 0px;
  }
  .about-tab p,
  .experience-paragraph,
  .education-tab p {
    text-align: justify;
  }
}
@media (max-width: 430px) {
  .about-tabs ul {
    flex-direction: column;
    margin-top: 20px;
    justify-content: center;
  }
  .about-tabs li {
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
  }
  .education-list li {
    padding: 5px;
    margin-bottom: 5px;
  }
  .tab-content.active {
    padding: 5px;
    border-radius: 5px;
  }
}

/********************/
/* Experience Section */
/********************/
#work-experience {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.journey-introduction {
  max-width: 900px;
  /* background-color: #2c2c2c; */
  /* background-color: #010323; */
  background-color: var(--bg-blue-transparent);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  margin: 0 auto 40px;
}

.experience-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.experience-timeline {
  position: relative;
  width: 60%;
  border-left: 2px solid #ccc;
  padding-left: 40px;
}

.timeline-ring {
  position: absolute;
  left: -52px;
  top: 25px;
  width: 20px;
  height: 20px;
  background-color: #2c2c2c;
  border: 3px solid #ffa500;
  border-radius: 50%;
  z-index: 1;
}

.experience-item {
  position: relative;
  margin-bottom: 40px;
  text-align: left;
  /* background-color: #2c2c2c; */
  /* background-color: #010321; */
  background-color: var(--bg-blue-transparent);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #e7e7e7;
}

.experience-item h4 {
  /* font-family: "Raleway", sans-serif; */
  font-family: var(--ff-jetbrains);
  /* background-color: #41516c; */
  background-color: #062456;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.experience-item h4 i {
  margin-right: 10px;
}

.experience-item p {
  /* font-family: "Raleway", sans-serif; */
  font-family: var(--ff-jetbrains);
  margin-left: 40px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ddd;
  display: flex;
}

.experience-item ul {
  list-style: none;
  padding-left: 40px;
}

.experience-item li {
  margin-bottom: 10px;
  line-height: 25px;
  display: flex;
  align-items: flex-start;
  /* font-family: "Roboto", sans-serif; */
  font-family: var(--ff-jetbrains);
  font-size: 1rem;
}

.experience-item i {
  margin-right: 8px;
  color: #4caf50;
}

.experience-certificate {
  width: 35%;
  text-align: center;
  align-self: flex-start;
  border: 5px solid #4caf50;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.experience-certificate img {
  max-width: 100%;
  height: 400px;
  border-radius: 15px;
}

@media (max-width: 768px) {
  #work-experience {
    padding: 40px 0px;
  }
  .experience-content {
    flex-direction: column;
  }

  .experience-timeline,
  .experience-certificate {
    width: 100%;
    border: none;
    padding-left: 0;
  }

  .experience-item h4,
  .experience-item p {
    margin-left: 0;
  }
  .experience-item {
    padding: 10px 0;
  }
  .experience-item h4 {
    text-align: left;
    font-size: 1rem;
  }
  .experience-item p {
    font-size: 14px;
  }
  .journey-introduction {
    padding: 10px 0;
    font-size: 1rem;
  }
  .experience-item ul {
    padding: 0;
  }
  .experience-item li {
    font-size: 13px;
  }
}

/********************/
/*  Portfolio Section */
/********************/
.portfolio {
  text-align: center;
  padding: 0;
  color: #fff;
  max-width: 1200px;
  margin: 20px auto;
}
.portfolio p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.portfolio a.profolio-see-all {
  color: var(--primary-color);
  font-weight: bolder;
  text-decoration: none;
  transition: color 0.3s ease;
}
.portfolio p a.profolio-see-all:hover {
  color: #0056b3;
  transition: color 0.3s ease;
  text-decoration: underline;
}
.portfolio-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.portfolio-item {
  flex-basis: calc(50% - 30px);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.2s ease;
  background: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}
.portfolio-item:hover {
  transform: scale(1.05);
  border-radius: 10px;
  border-bottom: 3px solid var(--yellow-border);
  border-top: 3px solid var(--yellow-border);
}
.portfolio-item:before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7);*/
  background-color: var(--background-color);
  opacity: 0;
  transition: opacity 0.2s;
}
.portfolio-item:hover:before {
  opacity: 1;
}
.project-details {
  padding: 20px;
  text-align: center;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  transition: all 0.3s;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portfolio-item:hover .project-details {
  opacity: 1;
}
.portfolio-item img {
  max-width: 100%;
  height: auto;
}
.portfolio-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 10px;
}
.project-details p {
  color: #fff;
  font-size: 13px;
  margin: 10px 0;
}
.project-links a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 10px;
}
.project-links a:hover {
  color: #007bff;
}
.portfolio-item:hover .project-details {
  display: block;
}
@media (max-width: 800px) {
  .portfolio {
    margin: 10px auto;
  }
  .portfolio-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .portfolio-item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .portfolio p {
    font-size: 1rem;
  }
  .project-details p {
    font-size: 13px;
  }
  .project-links a {
    font-size: 13px;
  }
}

/********************/
/*  Contact Section */
/********************/
.contact {
  color: #fff;
  padding: 20px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.contact p {
  font-size: 1.2rem;
}
.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.contact-item {
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #e45a84;
  padding: 20px;
  border-radius: 10px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
}
.contact-item:hover {
  background: #fff;
  background: #41516c;
}
.contact-item i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 10px;
}
.contact-item p {
  color: #f3f0f0;
  font-size: 1rem;
  margin: 0;
}
.contact-item:hover .contact-item p {
  color: #000;
}
.contact-item a {
  text-decoration: none;
  color: #25d366;
  transition: color 0.3s ease;
}
.contact-item:hover {
  background: #fff;
  color: #000;
  /* background: #41516c; */
  background-color: var(--background-color);
}
.contact-item:hover p {
  color: #000;
}

.contact-item:hover p:nth-child(2) {
  color: white;
}

.contact-whatsapp {
  max-width: 500px;
  margin: 20px auto;
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--accent-color-2);
  /* background-color: #040404; */
  transition: all 0.3s ease;
}
.contact-whatsapp:hover {
  background-color: var(--primary-color);
  border: 2px solid transparent;
}
.contact-whatsapp:hover a,
.contact-whatsapp:hover i {
  color: var(--on-secondary-color);
}
.contact-whatsapp i {
  font-size: 1.5rem;
  color: #25d366;
  margin-right: 10px;
}
.contact-whatsapp a {
  color: #25d366;
  text-decoration: none;
  font-size: 1.2rem;
}
.contact .contact-social-icons {
  margin-top: 40px;
}
.contact .contact-social-icons a {
  display: inline-block;
  color: #007bff;
  font-size: 1.5rem;
  text-decoration: none;
}
.contact .contact-social-icons a:hover {
  color: #0056b3;
}
@media screen and (max-width: 650px) {
  .contact-details {
    display: block;
  }
  .contact-item {
    margin: 5px auto;
    padding: 20px 0;
  }
  .contact-form {
    padding: 20px 10px;
  }
  .contact p {
    font-size: 1rem;
  }
  .contact-whatsapp i,
  .contact-whatsapp a {
    font-size: 1rem;
  }
}

footer {
  /* background-color: #3e1e68; */
  background-color: var(--bg-black-transparent);
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.4);
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-left {
  text-align: left;
  flex: 1;
  margin-bottom: 20px;
}
.footer-left h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.footer-left p {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #ffecb3;
}
.footer-social-icons a {
  font-size: 1.5rem;
  color: var(--accent-color-2);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social-iconsa:not(.footer-social-icons a:first-child) {
  margin-right: 10px;
}
.footer-social-icons a:hover {
  color: var(--primary-color);
}
.footer-right {
  flex: 1;
}
.footer-right p {
  font-size: 1.2rem;
  margin: 0;
  color: #ffecb3;
  transition: opacity 0.3s;
  cursor: pointer;
}
.footer-right p:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    flex: none;
    width: 100%;
  }
  .footer-social-icons {
    margin: 20px 0;
  }
}
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.menu-container span:first-child {
  transform-origin: 0% 0%;
}
.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}
.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -1px);
  background: #232323;
}
.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px, 11px);
}
.about-me {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  background: rgba(45, 45, 45, 0.2);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.about-me h1 {
  color: var(--on-primary-color);
  font-size: 46px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  /* border-bottom: 3px solid #e45a84; */
  border-bottom: 3px solid var(--primary-color);
  /* background: linear-gradient(to right, transparent, #e45a84, transparent); */
  padding-bottom: 10px;
  font-family: var(--ff-jetbrains);
}
/* .about-me h1:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px;
  border-color: transparent transparent #e45a84;
  transform: translateX(-50%);
} */
.about-me-img img {
  width: 200px;
  height: 200px;
  max-width: 100%;
  border-radius: 50%;
  margin: 20px 0;
  transition: transform 0.3s;
  object-fit: cover;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); */
  /* border: 6px inset var(--primary-color-2); */
}
.about-me-img img:hover {
  transform: scale(1.1);
}
.about-me h2 {
  font-size: 24px;
  transition: color 0.3s;
  color: #fff;
  font-family: var(--ff-jetbrains);
}
.about-me-text {
  width: 100%;
  max-width: 865px;
  margin: 2rem auto;
  color: #fff;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.7);
  /* border: 2px outset #e45a84; */
  border-bottom: 2px outset var(--orange-color);
  border-top: 2px outset var(--orange-color);
  border-radius: 11px;
  padding: 30px 20px;
  transition: all 0.3s;
  font-family: var(--ff-jetbrains);
}
.about-me-text:hover {
  box-shadow: 5px 5px 10px var(--orange-color);
}
.about-me-text p {
  font-size: 17px;
  margin: 10px 0;
  transition: color 0.3s;
  /* font-family: var(--ff-raleway); */
  font-family: var(--ff-jetbrains);
  font-weight: bolder;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
  margin: 1rem auto;
}
.about-me-text p:nth-child(2) {
  /* font-family: "Pacifico", var(--ff-raleway), cursive; */
  font-family: var(--ff-jetbrains);
  font-size: 2rem;
  color: var(--accent-color-2);
}
.about-me-highlights {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  background: rgba(45, 45, 45, 0.2);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.about-me-highlights-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.about-me-highlights h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #fff;
  transition: color 0.3s;
}
.highlight-item {
  /* width: 300px; */
  /* height: 200px; */
  text-align: center;
  /* margin: 20px; */
  /* background: var(--secondary-color); */
  /* background-color: #38434f; */
  color: var(--on-primary-color);
  /* padding: 20px; */
  /* border-radius: 15px; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); */
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
}
/* .highlight-item i {
  font-size: 40px;
  color: var(--on-secondary-color);
  color: whitesmoke;
} */
.highlight-item span {
  font-size: 3rem;
  color: var(--light-green);
}
.highlight-item p {
  font-size: 25px;
  /* margin-top: 15px; */
  /* color: var(--on-secondary-color); */
  color: var(--on-primary-color);
  text-align: left;
  line-height: 1.8rem;
}
/* .highlight-item:hover {
  background-color: var(--accent-color-2);
  transform: scale(1.05);
  transition: background-color 0.3s, transform 0.3s;
} */
.about-me-skills {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  background: rgba(45, 45, 45, 0.2);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.about-me-skills-content {
  display: flex;
  flex-direction: column;
}
.about-me-skills-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #fff;
  transition: color 0.3s;
}
.about-me-skills-content ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.about-me-skills-content li {
  font-size: 68px;
  transition: color 0.3s;
  padding: 20px;
  border-radius: 50%;
  border-radius: 50%;
  color: var(--on-primary-color);
}
.about-me-skills-content li span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.about-me-skills-content li span:hover {
  background-color: var(--accent-color-2);
}
.proficiency {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proficiency-icon i {
  font-size: 30px;
  color: #4caf50;
}
.proficiency p {
  font-size: 18px;
  color: var(--on-primary-color);
}
.about-me-skills li:nth-child(1) i {
  color: #e44d26;
}
.about-me-skills li:nth-child(2) i {
  color: #379ad6;
}
.about-me-skills li:nth-child(3) i {
  color: #f0db4f;
}
.about-me-skills li:nth-child(4) i {
  color: #7952b3;
}
.about-me-skills li:nth-child(5) i {
  color: #f1502f;
}
.about-me-skills li:nth-child(6) i {
  color: #61dafb;
}
.about-me-skills li:nth-child(7) i {
  color: #f24e1e;
}
.about-me-skills li:nth-child(8) i {
  color: #393;
}
.about-me-skills li:nth-child(9) i {
  color: #cb3837;
}
.about-me-skills li:nth-child(10) i {
  color: #2ed6a2;
}
.about-me-skills li:nth-child(11) i {
  color: #ff6c37;
}
.about-me-skills li:nth-child(12) i {
  color: #47a248;
}
.about-me-skills li:nth-child(13) i {
  color: #336791;
}
.about-me-skills li:nth-child(14) i {
  color: #f0db4f;
}
.about-me-skills li:nth-child(15) i {
  color: #3776ab;
}
.about-me-skills li:nth-child(16) i {
  color: #007396;
}
.about-me-skills li:nth-child(17) i {
  color: #54a7c4;
}
.about-me-experience {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  background: rgba(45, 45, 45, 0.2);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.about-me-experience h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #fff;
  transition: color 0.3s;
}
.about-me-experience p {
  font-size: 20px;
  margin: 20px 0;
  transition: color 0.3s;
  color: #fff;
  line-height: 1.5;
}
.about-me-experience-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.about-me-experience-list li {
  font-size: 18px;
  margin: 10px 0;
  transition: color 0.3s;
  color: #fff;
}
.about-me-experience-list li i {
  color: #27ae60;
  margin: 5px;
  line-height: 1.5;
  font-size: 22px;
}
.about-me-experience-list li span {
  padding-left: 10px;
}

#profiles {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
}
.profile-badge--width-330,
.badge-base,
.badge-base iframe,
.profile-badge {
  max-width: 330px !important;
  width: 100% !important;
  margin: 10px;
}
.profile-badge-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.linkedin-badge {
  background-color: var(--background-color);
  padding: 20px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
.badge-base {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-base__link {
  color: var(--secondary-color);
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}
.badge-base__link:hover {
  color: var(--primary-color);
}
.github-profile {
  max-width: 330px;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
}
.github-profile h2 {
  padding: 9px 16px;
  background-color: #e9e5df;
  border-radius: 8px 8px 0 0;
}
.github-avatar img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 3px solid gray;
  transition: transform 0.2s ease-in-out;
  margin: 12px 16px 8px;
}
.github-avatar img:hover {
  border: 3px solid var(--primary-color);
}
.github-info {
  text-align: left;
  padding: 0 16px 16px;
}
.github-info h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
}
.github-info p {
  font-size: 14px;
  margin-top: 6px;
  transition: color 0.3s;
}
#github-link {
  display: inline-block;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  outline-width: 2px;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.167s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  vertical-align: middle;
  box-shadow: inset 0 0 0 1px #0073b1, inset 0 0 0 2px rgba(0, 0, 0, 0),
    inset 0 0 0 1px rgba(0, 0, 0, 0);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px #0a66c2;
  color: #0a66c2;
  margin: 10px 0 0;
}
#github-link:hover {
  background-color: rgba(112, 181, 249, 0.15);
  color: #0a66c2;
  box-shadow: inset 0 0 0 2px #0a66c2;
}
@media (max-width: 768px) {
  .about-me {
    margin: 20px auto;
  }
  .about-me h1 {
    font-size: 40px;
  }
  .about-me-img img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .about-me {
    margin: 10px auto;
  }
  .about-me h1 {
    font-size: 30px;
  }
  .about-me-img img {
    width: 120px;
    height: 120px;
  }
  .about-me-text p:nth-child(2) {
    font-size: 35px;
  }
  .about-me-skills-content h2,
  .about-me-experience h2 {
    font-size: 30px;
  }
  .about-me-experience p {
    font-size: 15px;
  }
  .about-me-skills-content li {
    font-size: 35px;
    padding: 10px;
  }
  .about-me-experience-list li {
    line-height: 1.4;
  }
  .footer-left h3 {
    font-size: 2.5rem;
  }
  .footer-social-icons a {
    font-size: 30px;
  }

  .highlight-item span {
    font-size: 2rem;
    font-weight: bolder;
  }
  .highlight-item p {
    font-size: 1.5rem;
  }

  .proficiency-icon i {
    font-size: 20px;
  }
  .about-me-skills-content ul {
    gap: 10px 8px;
  }
}
.complete-portfolio-container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
}

.portfolio-heading {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #010321, #0d253f, #000000);
  color: var(--on-primary-color);
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Soft shadow for depth */
  overflow: hidden; /* Hide the overflowing glow effects */
}

.portfolio-heading:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.2), transparent);
  animation: pulse 6s infinite; /* Subtle pulsing background effect */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.portfolio-heading h1 {
  font-size: 42px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glowing text */
  color: #fff;
}

.portfolio-heading h1:before,
.portfolio-heading h1:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 60px;
  background-color: #28a745;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px #28a745; /* Neon effect */
}

.portfolio-heading h1:before {
  right: 100%;
  margin-right: 15px;
}

.portfolio-heading h1:after {
  left: 100%;
  margin-left: 15px;
}

.portfolio-heading p {
  font-size: 18px;
  line-height: 1.6;
  color: #bdbdbd;
  animation: fadeIn 1.5s ease-in-out; /* Smooth fade-in */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-heading h1,
.portfolio-heading p {
  animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-heading h1:hover {
  color: #e4e15a; /* A slight interactive color change on hover */
  transition: color 0.3s;
}

#project-tabs-nav {
  text-align: center;
  margin: 20px 0;
}
#project-tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#project-tabs li {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
#project-tabs li:hover:not(#project-tabs li.active) {
  background-color: var(--primary-color);
  color: var(--on-secondary-color);
  transition: background-color 0.3s;
}
#project-tabs li.active {
  background-color: var(--accent-color-2);
  color: var(--on-secondary-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}
@media screen and (max-width: 520px) {
  #project-tabs {
    gap: 5px;
  }
}
@media screen and (max-width: 480px) {
  #project-tabs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  .portfolio-heading {
    padding: 20px;
  }
  .portfolio-heading h1 {
    font-size: 35px;
  }
}
.projects {
  width: 100%;
  background: rgba(45, 45, 45, 0.2);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
}
.projects-list .project-item {
  width: calc(48.33% - 20px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
  min-height: 240px;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}
.projects-list .project-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
  opacity: 0;
  background-color: var(--background-color);
  transition: all 0.2s;
}
.projects-list .project-item:hover {
  border-bottom: 3px solid var(--yellow-border);
  border-top: 3px solid var(--yellow-border);
}
.projects-list .project-item:hover:before {
  opacity: 1;
}
.projects-list .project-item img {
  max-width: 100%;
  height: auto;
}
.portfolio-project-details {
  position: absolute;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
  /* background: rgba(0, 0, 0, 0.1); */
  opacity: 0;
  background: var(--background-color);
  color: #fff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects-list .project-item:hover .portfolio-project-details {
  opacity: 1;
}
.portfolio-project-details h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 10px;
}
.portfolio-project-details p {
  color: #fff;
  font-size: 13px;
  margin: 10px 0;
}
.portfolio-project-links {
  margin-top: 20px;
}
.portfolio-project-links a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 10px;
}
.portfolio-project-links a:hover {
  color: #007bff;
}
@media (max-width: 992px) {
  .projects-list .project-item {
    width: calc(80% - 20px);
  }
}
@media (max-width: 480px) {
  .projects-list .project-item {
    width: 100%;
  }
}
.projects-list .project-item.open {
  animation: fadeIn 0.6s ease-in-out;
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.projects-list .project-item.hide {
  animation: fadeOut 0.6s ease-in-out, zoomOut 0.6s ease-in-out;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  display: none;
  pointer-events: none;
  height: 0;
  width: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
}
@keyframes zoomOut {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
