@media (hover: none) {
  .cursor {
    visibility: hidden;
  }
}

body {
  --text-color: #222;
  --bkg-color: #fff;
}
body.dark-theme {
  --text-color: #eee;
  --bkg-color: #0e1212;
}

@media (prefers-color-scheme: dark) {
  /* defaults to dark theme */
  body {
    --text-color: #eee;
    --bkg-color: #121212;
  }
  body.light-theme {
    --text-color: #222;
    --bkg-color: #fff;
  }
}
* {
  box-sizing: border-box;
}
body {
  background: var(--bkg-color);
}

h1,
p {
  color: var(--text-color);
}

body {
  cursor: none;
  font-family: "Roboto mono", monospace;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: none;
}

a:hover .cursor__ball--big {
  height: 60px;
  width: 60px;
}

.container {
  max-width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;

  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.container section {
  flex: none;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Enable vertical scrolling for sections */
.container section.about,
.container section.skills,
.container section.exp,
.container section.achive,
.container section.contact {
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom scrollbar for sections */
.container section.about::-webkit-scrollbar,
.container section.skills::-webkit-scrollbar,
.container section.exp::-webkit-scrollbar,
.container section.achive::-webkit-scrollbar {
  width: 8px;
}

.container section.about::-webkit-scrollbar-track,
.container section.skills::-webkit-scrollbar-track,
.container section.exp::-webkit-scrollbar-track,
.container section.achive::-webkit-scrollbar-track {
  background: rgba(214, 26, 60, 0.1);
  border-radius: 4px;
}

.container section.about::-webkit-scrollbar-thumb,
.container section.skills::-webkit-scrollbar-thumb,
.container section.exp::-webkit-scrollbar-thumb,
.container section.achive::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 4px;
}

.container section.about::-webkit-scrollbar-thumb:hover,
.container section.skills::-webkit-scrollbar-thumb:hover,
.container section.exp::-webkit-scrollbar-thumb:hover,
.container section.achive::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff4757, #d61a3c);
}

/*--------------------------------------------------------------
  # CURSOR BALL
  --------------------------------------------------------------*/
body .cursor {
  z-index: 996;
  pointer-events: none;
}
body .cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}

body .cursor__ball circle {
  fill: white;
}

/*--------------------------------------------------------------
# light-mode/dark-mode button
--------------------------------------------------------------*/
.light-dark {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.light-dark i {
  font-size: 28px;
  color: var(--bkg-color);
}
.light-dark:hover {
  background: var(--text-color);
  color: var(--text-color);
}

/*--------------------------------------------------------------
  # BACKGROUND
  --------------------------------------------------------------*/

section#particle {
  padding: 0;
  background-color: var(--bkg-color);
}
canvas {
  background-color: var(--bkg-color);
  position: fixed;
}

.overlay {
  position: fixed;
  /* background: rgba(0,0,0,0.5); */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  /* overflow-y: auto; */
}
@media (max-width: 641px) {
  /*tablet*/
  #header {
    width: 300px;
    background: var(--bkg-color);
    border-right: 1px solid var(--bkg-color);
    left: -300px;
  }
}

@media (min-width: 641px) {
  /*laptops(min)*/
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/

/* PAGE arrow navigation */

.arrow {
  /* background: red; */
  color: #d61a3c;
  font-size: 45px;
}
.nav-prev {
  position: fixed;
  right: 116px;
  bottom: -2px;
  z-index: 10;
}
.nav-next {
  position: fixed;
  right: 66px;
  bottom: -2px;
  z-index: 10;
}
/**
  * Desktop Navigation 
  */
.nav-menu {
  font-family: "Poppins", sans-serif;

  padding: 0;
  display: block;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: var(--bkg-color);
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: var(--text-color);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}
.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}
.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  /* color: var(--text-color); */
}
@media (min-width: 641px) {
  /*laptops(min)*/
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }
  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: var(--text-color);
  }
}
.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
  color: var(--bkg-color);
  background: #d61a3c;
}
.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover > a span {
  color: var(--bkg-color);
}
.nav-menu a:hover,
.nav-menu li:hover > a {
  width: 100%;
  color: var(--bkg-color);
}
.nav-menu a:hover span,
.nav-menu li:hover > a span {
  display: block;
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: none;
  border-radius: 50px;
  padding: 5px;
  /* color: var(--bkg-color); */
}
.mobile-nav-toggle::before {
  color: var(--text-color);
}
.mobile-nav-toggle i {
  color: var(--text-color);
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
  color: var(--text-color);
  background-color: #d61a3c;
}

@media (max-width: 641px) {
  /*tablet*/
  .mobile-nav-toggle {
    display: block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  justify-content: center;
}
@media (min-width: 641px) {
  /*laptops(min)*/
  #hero {
    padding-left: 160px;
  }
}

#hero:before {
  content: "";

  /* background: rgba(0, 0, 0, 0.918); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  color: var(--text-color);
}
#hero p {
  color: var(--text-color);
  margin: 15px 0 0 0;
  font-size: 26px;
}
#hero p span {
  color: #d61a3c;
  letter-spacing: 1px;
}
#hero .social-links {
  margin-top: 30px;
}
#hero .social-links a {
  font-size: 30px;
  display: inline-block;
  color: var(--text-color);
  margin-right: 20px;
  transition: 0.3s;
}
.images {
  position: absolute;
}

.images .img1 {
  position: absolute;
  bottom: 150px;
  left: 750px;
  width: 500px;
  /* width: 400px;
  height: 400px; */
}
.images .img2 {
  position: absolute;
  bottom: 130px;
  left: 1050px;
  width: 200px;
  height: 200px;
}
.images .img3 {
  position: absolute;
  bottom: 380px;
  left: 1050px;
  width: 260px;
  height: 260px;
}

@media (max-width:481px) {
  .images .img1 {
    left: 600px;
  }
  .images .img3 {
    left: 900px;
  }
}

/* Animate the things */
.img1,
.img2,
.img3 {
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

@media (max-width: 1281px) {
  .images {
    transform: scale(0.8);
    position: absolute;
    bottom: 80px;
  }
}

@media (max-width: 1038px) {
  .images {
    transform: scale(0.7);
    position: absolute;
    bottom: 80px;
  }
}
@media (max-width: 641px) {
  .images {
    transform: scale(0.6);
    position: absolute;
    top: -200px;
    left: -360px;
  }
}
/* @media (max-width:481px) {
  .images{
    transform: scale(0.4);
    position: absolute;
    top: -700px;
    left: -400px;
  }
} */

@media (max-width: 641px) {
  /*tablet*/
  #hero {
    position: relative;
    bottom: -150px;
    justify-content: center;
    text-align: center;
    /* padding-bottom: 120px; */
  }

  #hero h1 {
    font-size: 52px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 24px;
  }
}

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

.this_way {
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 15px;
  color: #d61a3c;
  font-size: 40px;
}

.this_way p {
  font-size: 19px;
  padding-left: 10px;
}

@media (max-width: 641px) {
  .heading {
    transform: scale(0.9);
  }
}

@media (max-width: 481px) {
  /*mobille*/
  .this_way {
    position: absolute;
    z-index: 10;
    right: 10px;
    bottom: 25px;
  }

  .this_way {
    font-size: 30px;
  }
  .this_way p {
    font-size: 10px;
    padding-left: 20px;
  }
}
/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  /* background: var(--bkg-color); */
  color: var(--text-color);
  padding: 60px 0;
  overflow: hidden;
  z-index: 9;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/

.about > div {
  max-height: calc(100vh - 40px);
  padding: 0 20px;
  box-sizing: border-box;
}

.about .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}

/* About Content Grid */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 15px 0;
  animation: fadeInUp 0.8s ease-out;
  min-height: auto;
  max-width: 100%;
  overflow: visible;
}

/* About Blocks */
.about-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(214, 26, 60, 0.05);
  border-radius: 15px;
  border-left: 4px solid #d61a3c;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(214, 26, 60, 0.15);
  background: rgba(214, 26, 60, 0.08);
}

.about-block:nth-child(1) { animation-delay: 0.1s; }
.about-block:nth-child(2) { animation-delay: 0.2s; }
.about-block:nth-child(3) { animation-delay: 0.3s; }
.about-block:nth-child(4) { animation-delay: 0.4s; }

/* Block Icons */
.block-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  animation: pulse 2s infinite;
}

/* Block Content */
.block-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.block-content h3 {
  color: #d61a3c;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  font-family: "Roboto mono", monospace;
  word-wrap: break-word;
}

.block-content p {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.block-content p span {
  color: #d61a3c;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.about .title {
  display: flex;
  flex-direction: column;
}

.about .title h5 {
  color: var(--text-color);
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}

.about .social-links {
  padding-left: 25px;

  margin-top: 30px;
}
.about .social-links a {
  font-size: 30px;
  display: inline-block;
  color: var(--text-color);
  margin-right: 20px;
  transition: 0.3s;
}

.about .pop {
  position: relative;
  bottom: 110px;
  left: -230px;
  z-index: -870;
  visibility: hidden;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

.about .pop img {
  rotate: 25deg;
}
@keyframes swing {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
@keyframes float {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
    transform: translatey(0px);
  }
  50% {
    /* box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2); */
    transform: translatey(-20px);
  }
  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
    transform: translatey(0px);
  }
}

.about .pop.show {
  visibility: visible;
  transition-duration: 3s;
}

.about span.marvel:hover {
  text-decoration: underline;
}

@media (min-width: 641px) {
  /*laptops(min)*/
  .about {
    padding: 60px 0px 0px 90px;
  }
  
  .about > div {
    padding: 0 30px 0 0;
    max-height: calc(100vh - 30px);
    max-width: calc(100vw - 120px);
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 10px 0;
  }
  
  .about-block {
    padding: 18px;
    font-size: 15px;
    width: 100%;
    min-height: auto;
  }
  
  .block-content p {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 641px) {
  /*tablets*/
  .about {
    padding: 60px 0;
  }
  
  .about > div {
    padding: 0 15px;
    max-height: calc(100vh - 20px);
  }
  
  .about h1 {
    padding-left: 22px;
  }

  .about .title h5 {
    font-size: 14px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px 0;
  }

  .about-block {
    padding: 15px;
    margin: 0;
  }

  .block-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .block-content h3 {
    font-size: 16px;
  }

  .block-content p {
    font-size: 14px;
  }
}

@media (max-width: 961px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */

  .about p {
    padding: 15px 20px 0px 20px;
    font-size: 20px;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  /*mobiles*/
  .about {
    padding: 60px 0;
  }
  
  .about > div {
    padding: 0 10px;
    max-height: calc(100vh - 10px);
  }
  
  .about .title h1 {
    font-size: 44px;
    padding-left: 10px;
  }

  .about-content {
    padding: 10px 0;
    gap: 12px;
  }

  .about-block {
    padding: 12px;
    margin: 0;
    gap: 12px;
  }

  .block-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .block-content h3 {
    font-size: 14px;
  }

  .block-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
  # Skills
  --------------------------------------------------------------*/
.skills .title {
  z-index: 996;

  display: flex;
  flex-direction: column;
}

.skills .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}
.skills .title h5 {
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
.skills .row {
  padding: 30px 0px 20px 20px;
  color: var(--text-color);
}

.skills .row h2 {
  color: #d61a3c;
  font-weight: 600;
}

.skills ul {
  padding-left: 10px;
}

.skills ul li {
  list-style: none;
  font-size: 20px;
}
.skills ul li span {
  border: 0.5px solid #d61a3c;
  padding: 0px 3px;
  border-radius: 2px;
  color: #d61a3c;
  font-size: 14px;
}

/* Modern Skills Container */
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  padding: 20px;
  animation: fadeInUp 0.8s ease-out;
}

/* Skills sections layout */
.frontend-section {
  grid-column: 1;
  grid-row: 1;
}

.backend-section {
  grid-column: 2;
  grid-row: 1;
}

.tools-section {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* Skills Category */
.skills-category {
  background: rgba(214, 26, 60, 0.05);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(214, 26, 60, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
}

.skills-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 26, 60, 0.15);
  background: rgba(214, 26, 60, 0.08);
}

.skills-category:nth-child(1) { animation-delay: 0.1s; }
.skills-category:nth-child(2) { animation-delay: 0.2s; }
.skills-category:nth-child(3) { animation-delay: 0.3s; }

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(214, 26, 60, 0.2);
}

.category-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.category-header h2 {
  margin: 0;
  font-size: 18px;
  color: #d61a3c;
  font-weight: 600;
  font-family: "Roboto mono", monospace;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Skill Item */
.skill-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(214, 26, 60, 0.1);
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(214, 26, 60, 0.08);
  transform: translateX(3px);
  border-color: rgba(214, 26, 60, 0.2);
}

.skill-name {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

/* Skill Levels */
.skill-level {
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.skill-level.advanced {
  background: #d61a3c;
  color: white;
}

.skill-level.intermediate {
  background: var(--text-color);
  color: var(--bkg-color);
}

.skill-level.beginner {
  background: rgba(214, 26, 60, 0.2);
  color: #d61a3c;
  border: 1px solid #d61a3c;
}

/* Frontend Section Accent */
.frontend-section .category-header {
  border-bottom-color: rgba(214, 26, 60, 0.3);
}

.frontend-section .category-icon {
  background: linear-gradient(135deg, #d61a3c, #ff4757);
}

.frontend-section .category-header h2 {
  color: #d61a3c;
}

/* Backend Section Accent */
.backend-section .category-header {
  border-bottom-color: rgba(214, 26, 60, 0.4);
}

.backend-section .category-icon {
  background: linear-gradient(135deg, #333, #555);
}

.backend-section .category-header h2 {
  color: var(--text-color);
}

/* Tools Section Accent */
.tools-section .category-header {
  border-bottom-color: rgba(214, 26, 60, 0.2);
}

.tools-section .category-icon {
  background: linear-gradient(135deg, #d61a3c, #b91735);
}

.tools-section .category-header h2 {
  color: #d61a3c;
}

/* Tools section specific grid layout */
.tools-section .skills-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

@media (min-width: 641px) {
  /*laptops(min)*/
  .skills {
    padding-left: 90px;
  }
}
@media (max-width: 641px) {
  /*tablet*/
  .skills .title h5 {
    font-size: 14px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    padding: 15px;
  }

  .frontend-section {
    grid-column: 1;
    grid-row: 1;
  }

  .backend-section {
    grid-column: 1;
    grid-row: 2;
  }

  .tools-section {
    grid-column: 1;
    grid-row: 3;
  }

  .tools-section .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .skills-category {
    padding: 15px;
    margin: 0 10px;
  }

  .category-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .category-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .category-header h2 {
    font-size: 16px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .skill-item {
    padding: 6px 10px;
  }

  .skill-name {
    font-size: 13px;
  }

  .skill-level {
    font-size: 9px;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  /*mobille*/
  .skills .title h1 {
    padding-left: 22px;
    font-size: 44px;
  }
  .skills .row h2 {
    font-size: 18px;
    font-weight: 600;
  }

  .skills ul li {
    font-size: 18px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 12px;
  }

  .frontend-section {
    grid-column: 1;
    grid-row: 1;
  }

  .backend-section {
    grid-column: 1;
    grid-row: 2;
  }

  .tools-section {
    grid-column: 1;
    grid-row: 3;
  }

  .skills-category {
    padding: 12px;
    margin: 0 5px;
  }

  .category-header {
    gap: 8px;
    margin-bottom: 10px;
  }

  .category-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .category-header h2 {
    font-size: 14px;
  }

  .skills-grid {
    gap: 5px;
  }

  .skill-item {
    padding: 5px 8px;
  }

  .skill-name {
    font-size: 14px;
  }

  .skill-level {
    font-size: 10px;
    padding: 2px 5px;
  }
}

/*--------------------------------------------------------------
  # Projects
  --------------------------------------------------------------*/
.projects .title {
  display: flex;
  flex-direction: column;
}

.projects .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}
.projects .title h5 {
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
.projects .row {
  /* padding: 30px 0px 20px 20px; */
  color: var(--text-color);
}

.projects .row h2 {
  color: #d61a3c;
}

@media (min-width: 641px) {
  /*laptops(min)*/
  .projects {
    padding-left: 90px;
  }
  .projects .row p {
    font-size: 1.2rem;
  }
}

@media (max-width: 641px) {
  /*tablet*/
  .projects .title h5 {
    font-size: 14px;
  }
  .projects .row p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  /*mobille*/
  .projects .title h1 {
    padding-left: 22px;
    font-size: 44px;
  }
  .projects .row h2 {
    font-size: 44px;
  }
  .projects .row p {
    font-size: 1rem;
  }
}

.wrapper {
  margin: 0;
  display: flex;
  width: 90%;
  /* justify-content: space-around; */
}

strong {
  font-weight: 700;
}

.canvas-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  -webkit-animation: fade-in 1s ease-in-out forwards;
  animation: fade-in 1s ease-in-out forwards;
}
.canvas-wrapper .canvas + .canvas {
  margin-left: 40px;
}

.canvas {
  font-family: "Poppins", sans-serif;

  position: relative;
  display: block;
  width: 330px;
  height: 330px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.canvas.YSC,
.canvas.RED {
  width: 500px;
}

.canvas_border {
  position: absolute;
  top: 40px;
  left: -40px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.canvas_border svg {
  height: 100%;
  width: 100%;
}

.rect-gradient {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  -webkit-animation: erase-line 1s ease-in-out forwards;
  animation: erase-line 1s ease-in-out forwards;
}

.canvas_img-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100%;
  height: 100%; */
  top: 0;
  left: 0;
  transform: rotate(-10deg) skew(-10deg);
  overflow: hidden;
  background: var(--bkg-color);
}

.canvas_img {
  transform: scale3d(0.9, 0.9, 0.9);
  /* opacity: 0.3; */
  width: 100%;
  /* max-width: 200px;
  max-height: 200px; */
}

.canvas_copy {
  position: absolute;
  bottom: -100px;
  left: 85%;
  /* text-transform: uppercase; */
  color: #d61a3c;
  z-index: 100;
}

.canvas_copy--left {
  left: -15%;
}
.canvas_copy--left.YSC,
.canvas_copy--left.RED {
  left: -5%;
}
.canvas_copy.YSC {
  color: #f8c700;
}

.canvas_copy_title {
  font-size: 22px;
  display: block;
  transform: translateX(-80px);
  transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  color: var(--bkg-color);
  border-radius: 15px 0px 0px 0px;
  padding: 10px;
}
.canvas_copy_title.YSC {
  color: #f8c700;
}
.canvas_copy_title.RED {
  color: #d61a3c;
}
.canvas_copy_title.mybooklist {
  padding-left: 15px;
}
.canvas_copy_title:nth-child(1) {
  transition-delay: 0.1s;
}
.canvas_copy_title:nth-child(2) {
  transition-delay: 0.2s;
}

.canvas_copy_subtitle {
  display: block;
  transform: rotate(270deg) translateY(-100%) translateX(calc(-100% - 80px));
  transform-origin: top left;
  position: absolute;
  left: 0;
  top: 25px;
  font-size: 24px;
  font-weight: 900;
  transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.35s;
  border-radius: 15px 15px 0px 0px;
  padding: 0px 10px;
}
.canvas_copy_subtitle.YSC {
  color: #f8c700;
}
.canvas_copy_subtitle.RED {
  color: #d61a3c;
}

.canvas_copy_details {
  text-transform: none;
  display: block;
  transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.14s;
  transform: translateX(-80px);
  font-weight: 600;
  border-radius: 0px 0px 15px 0px;
  padding-left: 10px;
}

.canvas_copy_details.YSC,
.canvas_copy_details.RED {
  border-radius: 0px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}

.canvas_copy_details.mybooklist {
  padding: 20px;
}

.canvas_border,
.canvas_img-wrapper,
.canvas_img {
  transition: all 0.25s ease-in-out 0s;
}

.canvas_border,
.canvas_img-wrapper {
  transform: rotate(-10deg) skew(-10deg);
}

.canvas_copy_title,
.canvas_copy_subtitle,
.canvas_copy_details {
  opacity: 0;
}

.canvas:hover .canvas_copy_title,
.canvas:hover .canvas_copy_subtitle,
.canvas:hover .canvas_copy_details,
.canvas:hover .canvas_img {
  opacity: 1;
  background-color: var(--text-color);
}
.canvas:hover .canvas_border,
.canvas:hover .canvas_img-wrapper {
  transform: rotate(-14deg) skew(-14deg) scale(0.96);
}
.canvas:hover .canvas_img {
  transform: scale3d(1, 1, 1);
}
.canvas:hover .canvas_copy_title,
.canvas:hover .canvas_copy_details {
  transform: translateX(0);
}
.canvas:hover .canvas_copy_subtitle {
  transform: rotate(270deg) translateY(-100%) translateX(-100%);
}
.canvas:hover .rect-gradient {
  -webkit-animation: draw-line 3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: draw-line 3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@-webkit-keyframes draw-line {
  from {
    stroke-dashoffset: 2000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 2000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes erase-line {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 2000;
  }
}
@keyframes erase-line {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 2000;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 641px) {
  .canvas_copy {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .canvas {
    transform: scale(0.9);
  }
}
/* floating tech_icon for plan-a-zoid */

.PAZ .tech_icons {
  visibility: hidden;
}

.PAZ .tech_icons .html {
  position: relative;
  top: 100px;
  left: 20px;
}
.PAZ .tech_icons .css {
  position: relative;
  top: 160px;
  left: 60px;
}
.PAZ .tech_icons .react {
  position: relative;
  top: 70px;
  left: 10px;
}
.PAZ .tech_icons .node {
  position: relative;
  top: 50px;
  left: 20px;
}
.PAZ .tech_icons .fire {
  position: relative;
  top: 100px;
  left: 20px;
}
.PAZ .tech_icons .boot {
  position: relative;
  top: 140px;
  left: 20px;
}

.PAZ .tech_icons.show {
  animation: 1.5s fadeIn;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

.PAZ .tech_icons img {
  width: 34px;
  border-radius: 400px;
  background-color: #ffffff6e;
  transform: translatey(0px);
  -webkit-animation: anim 6s ease-in-out infinite;
  animation: anim 6s ease-in-out infinite;
}

@-webkit-keyframes anim {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

@keyframes anim {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

/* floating tech_icon for my book list*/

.MBL .tech_icons {
  visibility: hidden;
}

.MBL .tech_icons .html {
  position: relative;
  top: 50px;
  left: 20px;
}
.MBL .tech_icons .css {
  position: relative;
  top: 100px;
  left: 20px;
}
.MBL .tech_icons .java {
  position: relative;
  top: 60px;
  left: 120px;
}
.MBL .tech_icons .boot {
  position: relative;
  top: 140px;
  left: 20px;
}

.MBL .tech_icons.show {
  animation: 1.5s fadeIn;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

.MBL .tech_icons img {
  width: 34px;
  border-radius: 400px;
  background-color: #ffffff6e;
  transform: translatey(0px);
  -webkit-animation: anim 6s ease-in-out infinite;
  animation: anim 6s ease-in-out infinite;
}

@-webkit-keyframes anim {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

@keyframes anim {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

button a {
  /* margin: 20px; */
  text-decoration: none;
  color: var(--text-color);
  cursor: none;
}
.custom-btn {
  cursor: none;
  font-size: 1rem;
  width: 130px;
  height: 40px;
  color: var(--text-color);
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}
.custom-btn.unactive[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 3 */
.btn-3 {
  background: var(--bkg-color);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-3.YSC {
  background: #f8c700;
}
.btn-3.email {
  background: #d61a3c;
}
.btn-3.code {
  background: #d61a3c;
}

.btn-3.email {
  font-family: "Poppins", sans-serif;
  position: relative;
  left: 60px;
  width: 100px;
  height: 36px;
}
.btn-3.code {
  font-family: "Poppins", sans-serif;
  /* position: relative;
  left: 60px; */
  width: 130px;
  height: 40px;
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-color);
}
.btn-3 span i {
  font-size: 20px;
  position: relative;
  top: 4px;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: var(--bkg-color);
  transition: all 0.3s ease;
}
.btn-3.YSC:before,
.btn-3.YSC::after {
  background: #f8c700;
}

.btn-3.email:before,
.btn-3.email:after {
  background: #d61a3c;
}
.btn-3.code:before,
.btn-3.code:after {
  background: #d61a3c;
}

.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover {
  background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}

.btn-3 span:hover a {
  color: var(--bkg-color);
}

.btn-3.email span:hover a {
  color: var(--text-color);
}
.btn-3.code span:hover a {
  color: var(--text-color);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: var(--bkg-color);
  transition: all 0.3s ease;
}
.btn-3.YSC span:before,
.btn-3.YSC span:after {
  background: #f8c700;
}

.btn-3.email span:before,
.btn-3.email span:after {
  background: #d61a3c;
}
.btn-3.code span:before,
.btn-3.code span:after {
  background: #d61a3c;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}

/* button colors */

button.btn-3.PURPLE a,
button.btn-3.RED a,
button.btn-3.BLUE a,
button.btn-3.SKYBLUE a,
button.btn-3.GREEN a,
button.btn-3.YELLOW a {
  color: white !important;
}

/* RED */
.btn-3.RED {
  background: #d61a3c;
}
.btn-3.RED {
  background: #d61a3c;
}
.btn-3.RED:before,
.btn-3.RED::after {
  background: #d61a3c;
}
.btn-3.RED span:before,
.btn-3.RED span:after {
  background: #d61a3c;
}

/* PURPLE */
.btn-3.PURPLE {
  background: #9300ff;
}
.btn-3.PURPLE {
  background: #9300ff;
}
.btn-3.PURPLE:before,
.btn-3.PURPLE::after {
  background: #9300ff;
}
.btn-3.PURPLE span:before,
.btn-3.PURPLE span:after {
  background: #9300ff;
}

/* BLUE */
.btn-3.BLUE {
  background: #2a66b3;
}
.btn-3.BLUE {
  background: #2a66b3;
}
.btn-3.BLUE:before,
.btn-3.BLUE::after {
  background: #2a66b3;
}
.btn-3.BLUE span:before,
.btn-3.BLUE span:after {
  background: #2a66b3;
}

/* YELLOW */
.btn-3.YELLOW {
  background: #ffdd2c;
}
.btn-3.YELLOW {
  background: #ffdd2c;
}
.btn-3.YELLOW:before,
.btn-3.YELLOW::after {
  background: #ffdd2c;
}
.btn-3.YELLOW span:before,
.btn-3.YELLOW span:after {
  background: #ffdd2c;
}

/* GREEN */
.btn-3.GREEN {
  background: #35b276;
}
.btn-3.GREEN {
  background: #35b276;
}
.btn-3.GREEN:before,
.btn-3.GREEN::after {
  background: #35b276;
}
.btn-3.GREEN span:before,
.btn-3.GREEN span:after {
  background: #35b276;
}

/* SKYBLUE */
.btn-3.SKYBLUE {
  background: #4fbfff;
}
.btn-3.SKYBLUE {
  background: #4fbfff;
}
.btn-3.SKYBLUE:before,
.btn-3.SKYBLUE::after {
  background: #4fbfff;
}
.btn-3.SKYBLUE span:before,
.btn-3.SKYBLUE span:after {
  background: #4fbfff;
}

/* ORANGE */
.btn-3.ORANGE {
  background: #ff5e24;
}
.btn-3.ORANGE {
  background: #ff5e24;
}
.btn-3.ORANGE:before,
.btn-3.ORANGE::after {
  background: #ff5e24;
}
.btn-3.ORANGE span:before,
.btn-3.ORANGE span:after {
  background: #ff5e24;
}

/*--------------------------------------------------------------
  #Personal Projects
  --------------------------------------------------------------*/
.p_projects .title {
  display: flex;
  flex-direction: column;
}

.p_projects .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}
.p_projects .title h5 {
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
.p_projects .row {
  padding: 30px 0px 20px 20px;
  color: var(--text-color);
}

.p_projects .row h2 {
  color: #d61a3c;
}

@media (min-width: 641px) {
  /*laptops(min)*/
  .p_projects {
    padding-left: 90px;
  }
}

@media (max-width: 641px) {
  /*tablet*/
  .p_projects .title h5 {
    font-size: 14px;
  }
  .p_projects .title h1 {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  /*mobille*/
  .p_projects .title h1 {
    padding-left: 22px;
    font-size: 38px;
  }
  .p_projects .row h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
  # Experiences
  --------------------------------------------------------------*/

.exp {
  padding: 60px 0;
  box-sizing: border-box;
}

.exp > div {
  max-height: calc(100vh - 40px);
  padding: 0 20px;
  box-sizing: border-box;
}

.exp .title {
  display: flex;
  flex-direction: column;
}

.exp .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}

.exp .title h5 {
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Experience Timeline */
.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px 0;
  position: relative;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, #d61a3c, rgba(214, 26, 60, 0.3));
  z-index: 1;
}

/* Experience Cards */
.experience-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(214, 26, 60, 0.05);
  border-radius: 15px;
  border-left: 4px solid #d61a3c;
  margin-left: 50px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 0.8s ease-out forwards;
  width: calc(100% - 50px);
  max-width: calc(100% - 50px);
  box-sizing: border-box;
  overflow-x: hidden;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }

.experience-card:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 15px 40px rgba(214, 26, 60, 0.15);
  background: rgba(214, 26, 60, 0.08);
}

.experience-card::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #d61a3c;
  border-radius: 50%;
  border: 3px solid var(--bkg-color);
  z-index: 2;
}

/* Experience Icon */
.exp-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  animation: pulse 3s infinite;
}

/* Experience Content */
.exp-content {
  flex: 1;
  min-width: 0;
}

.exp-header h2 {
  color: #d61a3c;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  font-family: "Roboto mono", monospace;
}

.exp-company {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.exp-company h3 {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.exp-company h3 a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.exp-company h3 a:hover {
  color: #d61a3c;
  border-bottom: 1px solid #d61a3c;
  cursor: pointer;
}

.exp-type {
  padding: 4px 12px;
  background: rgba(214, 26, 60, 0.1);
  color: #d61a3c;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exp-duration, .exp-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 14px;
  opacity: 0.8;
}

.exp-duration i, .exp-location i {
  color: #d61a3c;
  font-size: 16px;
}

.exp-description {
  margin-top: 15px;
  overflow: hidden;
}

.exp-description p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

.exp-description p a {
  color: #d61a3c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.exp-description p a:hover {
  color: #ff4757;
  border-bottom: 1px solid #ff4757;
  text-decoration: none;
}

/* Skill Tags */
.exp-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.skill-tag {
  padding: 5px 12px;
  background: rgba(214, 26, 60, 0.1);
  color: #d61a3c;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(214, 26, 60, 0.2);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #d61a3c;
  color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (min-width: 641px) {
  /*laptops(min)*/
  .exp {
    padding: 60px 0px 0px 90px;
  }
  
  .exp > div {
    padding: 0 30px 0 0;
    max-height: calc(100vh - 30px);
  }
}

@media (max-width: 641px) {
  /*tablet*/
  .exp {
    padding: 60px 0;
  }
  
  .exp > div {
    padding: 0 15px;
    max-height: calc(100vh - 20px);
  }
  
  .exp .title h1 {
    padding-left: 22px;
  }

  .exp .title h5 {
    font-size: 14px;
    padding-left: 22px;
  }

  .experience-timeline {
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .experience-timeline::before {
    left: 20px;
  }

  .experience-card {
    margin-left: 40px;
    padding: 20px;
    gap: 15px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .experience-card::before {
    left: -36px;
    top: 25px;
    width: 10px;
    height: 10px;
  }

  .exp-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .exp-header h2 {
    font-size: 18px;
  }

  .exp-company h3 {
    font-size: 16px;
  }

  .exp-type {
    font-size: 10px;
    padding: 3px 8px;
  }

  .exp-duration, .exp-location {
    font-size: 13px;
  }

  .exp-skills {
    gap: 6px;
  }

  .skill-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  /*mobiles*/
  .exp {
    padding: 60px 0;
  }
  
  .exp > div {
    padding: 0 10px;
    max-height: calc(100vh - 10px);
  }
  
  .exp .title h1 {
    padding-left: 10px;
    font-size: 38px;
  }
  
  .exp .title h5 {
    padding-left: 10px;
    font-size: 13px;
  }

  .experience-timeline {
    gap: 15px;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .experience-timeline::before {
    display: none;
  }

  .experience-card {
    margin-left: 0px;
    padding: 15px;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .experience-card::before {
    left: -26px;
    top: 20px;
    width: 8px;
    height: 8px;
  }

  .exp-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .exp-header h2 {
    font-size: 16px;
  }

  .exp-company {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .exp-company h3 {
    font-size: 14px;
  }

  .exp-type {
    font-size: 9px;
    padding: 2px 6px;
  }

  .exp-duration, .exp-location {
    font-size: 12px;
  }

  .exp-description p {
    font-size: 14px;
  }

  .skill-tag {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/*--------------------------------------------------------------
  # Achivements
  --------------------------------------------------------------*/
.achive .title {
  display: flex;
  flex-direction: column;
}

.achive .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}
.achive .title h5 {
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
.achive .row {
  font-family: "Poppins", sans-serif;

  padding: 30px 0px 20px 20px;
  color: var(--text-color);
}

.achive .row h2 {
  color: #d61a3c;
}

.achive .row p {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (min-width: 641px) {
  /*laptops(min)*/
  .achive {
    padding-left: 90px;
  }
}

@media (max-width: 641px) {
  /*tablet*/
  .achive .title h5 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  /*mobille*/
  .achive .title h1 {
    padding-left: 22px;
    font-size: 38px;
  }
  .achive .row h2 {
    font-size: 22px;
  }
}

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

.contact .title {
  display: flex;
  flex-direction: column;
}

.contact .title h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  color: #d61a3c;
}
.contact .title h5 {
  padding-left: 70px;
  padding-top: 20px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
/* .contact .row {
    padding: 30px 0px 20px 20px;
    color: var(--text-color);
  } */

/* .contact .row h2{
    color: #d61a3c;
  } */

.contact .inside {
  font-family: "Poppins", sans-serif;

  padding: 60px 150px 0px 30px;
}

.contact .info {
  width: 100%;
}
.contact .info i {
  font-size: 20px;
  color: var(--bkg-color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #d61a3c;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-color);
}

.contact .info .social-links {
  /* margin-top: 10px; */
}
.contact .info .social-links a {
  font-size: 30px;
  display: inline-block;
  color: var(--text-color);
  margin-right: 20px;
  transition: 0.3s;
}

@media (min-width: 641px) {
  /*laptops(min)*/
  .contact {
    padding-left: 90px;
  }
}

@media (max-width: 641px) {
  /*tablet*/
  .contact .title h5 {
    font-size: 14px;
  }
  .contact .title h1 {
    padding-left: 22px;
  }
  .contact .inside {
    padding: 60px 30px 0px 30px;
  }
}
@media (max-width: 480px) {
  /*mobille*/
  .contact .title h1 {
    font-size: 38px;
  }
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  z-index: 99999;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

/*--------------------------------------------------------------
  # Project Carousel
  --------------------------------------------------------------*/

.canvas-wrapper {
  overflow: hidden;
  font-size: 62.5%;
}

.canvas-wrapper svg {
  display: block;
  overflow: visible;
}

.canvas-wrapper .slider-container {
  position: relative;
  top: -100px;
  transform: scale(0.8);
  height: 85%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: all-scroll;
}

.canvas-wrapper .slider-control {
  z-index: 10;
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  transition: opacity 0.3s;
  will-change: opacity;
  /* color: black; */
  opacity: 0;
}
.canvas-wrapper .slider-control.inactive:hover {
  cursor: auto;
}
.canvas-wrapper .slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}
.canvas-wrapper .slider-control.left {
  left: -10%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.canvas-wrapper .slider-control.right {
  right: -10%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
}
.canvas-wrapper .right__arrow {
  position: absolute;
  right: -10%;
  top: 40%;
  font-size: 100px;
  font-weight: 100;
  z-index: 4;
  color: whitesmoke;
}
.canvas-wrapper .left__arrow {
  position: absolute;
  left: -10%;
  top: 40%;
  font-size: 100px;
  font-weight: 100;
  z-index: 4;
  color: whitesmoke;
}
@media (max-width: 991px) {
  .canvas-wrapper .right__arrow {
  }
  .canvas-wrapper .left__arrow {
  }
}

.canvas-wrapper .slider-pagi {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  font-size: 0;
  list-style-type: none;
}
.canvas-wrapper .slider-pagi__elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.canvas-wrapper .slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translate(-50%, -50%) scale(0);
}
.canvas-wrapper .slider-pagi__elem.active:before,
.slider-pagi__elem:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.canvas-wrapper .slider {
  z-index: 1;
  position: relative;
  height: 100%;
}
.canvas-wrapper .slider.animating {
  transition: transform 0.5s;
  will-change: transform;
}
.canvas-wrapper .slider.animating .slide__bg {
  transition: transform 0.5s;
  will-change: transform;
}

.canvas-wrapper .slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.canvas-wrapper .slide.active .slide__overlay,
.canvas-wrapper .slide.active .slide__text {
  opacity: 1;
  transform: translateX(0);
}
.canvas-wrapper .slide__bg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  will-change: transform;
}
.canvas-wrapper .slide:nth-child(1) {
  left: 0;
}
.canvas-wrapper .slide:nth-child(1) .slide__bg {
  left: 0;
  /* background-image: url("../img/helpinghandbg.png"); */
  background: rgb(14, 14, 14);
  background: linear-gradient(
    0deg,
    rgba(14, 14, 14, 1) 0%,
    rgba(154, 11, 40, 1) 55%,
    rgba(255, 0, 61, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(1) .slide__overlay-path {
  /* fill: #ffffff; */
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(1) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 75%;
  }
}
.canvas-wrapper .slide:nth-child(2) {
  left: 100%;
}
.canvas-wrapper .slide:nth-child(2) .slide__bg {
  left: -50%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(85, 0, 147, 1) 55%,
    rgba(147, 0, 255, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(2) .slide__overlay-path {
  /* fill: #e1ccae; */
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(2) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 80%;
  }
}

.canvas-wrapper .slide:nth-child(3) {
  left: 200%;
}
.canvas-wrapper .slide:nth-child(3) .slide__bg {
  left: -100%;
  /* background-image: url("../img/helpinghandbg.png"); */

  background: rgb(27, 26, 23);
  background: linear-gradient(
    0deg,
    rgba(27, 26, 23, 1) 0%,
    rgba(158, 53, 15, 1) 55%,
    rgba(255, 94, 36, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(3) .slide__overlay-path {
  /* fill: #ffffff; */
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(3) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 75%;
  }
}

.canvas-wrapper .slide:nth-child(4) {
  left: 300%;
}
.canvas-wrapper .slide:nth-child(4) .slide__bg {
  left: -150%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 58, 133, 1) 55%,
    rgba(42, 102, 179, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(4) .slide__overlay-path {
  /* fill: #adc5cd; */
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(4) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 80%;
  }
}
.canvas-wrapper .slide:nth-child(5) {
  left: 400%;
}
.canvas-wrapper .slide:nth-child(5) .slide__bg {
  left: -200%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 58, 133, 1) 55%,
    rgba(42, 102, 179, 1) 100%
  );
  /* background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(55, 111, 143, 1) 55%,
    rgba(79, 191, 255, 1) 100%
  ); */
  /* background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(163, 137, 0, 1) 55%,
    rgba(255, 221, 44, 1) 100%
  ); */
}
.canvas-wrapper .slide:nth-child(5) .slide__overlay-path {
  /* fill: #cbc6c3; */
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(5) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 80%;
  }
}
.canvas-wrapper .slide:nth-child(6) {
  left: 500%;
}
.canvas-wrapper .slide:nth-child(6) .slide__bg {
  left: -250%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 58, 133, 1) 55%,
    rgba(42, 102, 179, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(6) .slide__overlay-path {
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(6) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 80%;
  }
}
/* 
.canvas-wrapper .slide:nth-child(6) {
  left: 500%;
}
.canvas-wrapper .slide:nth-child(6) .slide__bg {
  left: -250%;
  background: rgb(14, 14, 14);
  background: linear-gradient(
    0deg,
    rgba(14, 14, 14, 1) 0%,
    rgba(154, 11, 40, 1) 55%,
    rgba(255, 0, 61, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(6) .slide__overlay-path {
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(6) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 75%;
  }
}
.canvas-wrapper .slide:nth-child(7) {
  left: 600%;
}
.canvas-wrapper .slide:nth-child(7) .slide__bg {
  left: -300%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 104, 54, 1) 55%,
    rgba(53, 178, 118, 1) 100%
  );
}
.canvas-wrapper .slide:nth-child(7) .slide__overlay-path {
}
@media (max-width: 991px) {
  .canvas-wrapper .slide:nth-child(7) .slide__text {
    background-color: rgba(14, 14, 14, 0.577);
    height: 75%;
  }
} */

.canvas-wrapper .slide__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.canvas-wrapper .slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  min-height: 810px;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;
  will-change: transform, opacity;
  transform: translate3d(-20%, 0, 0);
  opacity: 0;
}

@media (max-width: 991px) {
  .canvas-wrapper .slide__overlay {
    display: none;
  }
}
.canvas-wrapper .slide__overlay path {
  opacity: 0.8;
}
.canvas-wrapper .slide__text {
  font-family: "Poppins", sans-serif;

  position: absolute;
  width: 25%;
  top: 15%;
  /* bottom: 40%; */
  left: 5%;
  color: #fff;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
  will-change: transform, opacity;
  transform: translateY(-50%);
  opacity: 0;
}
@media (max-width: 991px) {
  .canvas-wrapper .slide__text {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20rem;
    text-align: center;
    transform: translateY(50%);
    transition: transform 0.5s 0.5s, opacity 0.5s 0.5s;
    padding: 0 1rem;
  }
  .canvas-wrapper .project__btn {
    display: flex;
  }
}
.canvas-wrapper .slide__text-heading {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  width: 300%;
  font-weight: 600;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
@media (max-width: 991px) {
  .canvas-wrapper .slide__text-heading {
    position: relative;
    top: 0;
    width: 100%;
    padding-top: 20px;
    font-size: 3.5rem;
  }
}
.canvas-wrapper .slide__text-desc {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  width: 360%;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
@media (max-width: 991px) {
  .canvas-wrapper .slide__text-desc {
    /* display: none; */
    /* position: absolute; */
    position: relative;
    top: 1px;
    bottom: 100px;
    width: 100%;
  }
}
.canvas-wrapper .slide__img {
  position: absolute;
  top: 50px;
  right: 20px;
  opacity: 80%;
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .canvas-wrapper .slide__img {
    right: 0px;
    /* display: none; */
  }
}
.canvas-wrapper .text__background {
  font-family: "Poppins", sans-serif;
  position: absolute;
  left: 400px;
  bottom: -80px;
  color: rgba(102, 11, 11, 0.4);
  font-size: 140px !important;
  font-weight: 700;
  z-index: 1;
}

.canvas-wrapper .text__background.HH {
  left: 510px;
}
.canvas-wrapper .slide__text-link {
  z-index: 5;
  display: inline-block;
  position: relative;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 2.3rem;
  perspective: 1000px;
}
@media (max-width: 991px) {
  .canvas-wrapper .slide__text-link {
    display: none;
  }
}
.canvas-wrapper .slide__text-link:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform-origin: 50% 100%;
  transform: rotateX(-85deg);
  transition: transform 0.3s;
  will-change: transform;
}
.canvas-wrapper .slide__text-link:hover:before {
  transform: rotateX(0);
}

/* PURPLE */

.canvas-wrapper .slide__text-heading.PURPLE {
  color: #9300ff !important;
}

.canvas-wrapper .text__background.PURPLE {
  color: rgba(149, 0, 255, 0.4) !important;
}

/* BLUE */

.canvas-wrapper .slide__text-heading.BLUE {
  color: rgb(42, 101, 179) !important;
}

.canvas-wrapper .text__background.BLUE {
  color: rgba(42, 101, 179, 0.4) !important;
}

/* YELLOW */

.canvas-wrapper .slide__text-heading.YELLOW {
  color: rgba(255, 221, 44, 1) !important;
}

.canvas-wrapper .text__background.YELLOW {
  color: rgba(255, 221, 44, 0.4) !important;
}

/* GREEN */

.canvas-wrapper .slide__text-heading.GREEN {
  color: rgba(53, 178, 118, 1) !important;
}

.canvas-wrapper .text__background.GREEN {
  color: rgba(53, 178, 118, 0.4) !important;
}

/* SKYBLUE */

.canvas-wrapper .slide__text-heading.SKYBLUE {
  color: rgb(79, 191, 255) !important;
}

.canvas-wrapper .text__background.SKYBLUEE {
  color: rgb(79, 191, 255, 0.4) !important;
}

/* ORANGE */

.canvas-wrapper .slide__text-heading.ORANGE {
  color: #ff5e24 !important;
}

.canvas-wrapper .text__background.ORANGE {
  color: rgba(255, 94, 36, 0.4) !important;
}

/*--------------------------------------------------------------
# ACHIEVEMENTS SECTION
--------------------------------------------------------------*/

/* Achievements Container */
.achievements-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px 0;
  animation: fadeInUp 0.8s ease-out;
}

/* Achievement Card */
.achievement-card {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 26, 60, 0.1);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
  margin: 20px 20px 0 20px;
}

.achievement-card:nth-child(1) {
  animation-delay: 0.1s;
}

.achievement-card:nth-child(2) {
  animation-delay: 0.2s;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d61a3c, #ff4757);
  border-radius: 16px 16px 0 0;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(214, 26, 60, 0.2);
  border-color: rgba(214, 26, 60, 0.3);
}

/* Achievement Icon */
.achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 50%;
  margin-right: 25px;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* Achievement Content */
.achievement-content {
  flex: 1;
}

.achievement-header {
  margin-bottom: 20px;
}

.achievement-position {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.achievement-position h2 {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.achievement-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievement-badge.winner {
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  color: white;
}

.achievement-badge.runner-up {
  background: linear-gradient(135deg, #ffa500, #ff6347);
  color: white;
}

.achievement-event h3 {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px 0;
  font-family: "Poppins", sans-serif;
}

.achievement-organizer {
  color: rgba(var(--text-color-rgb), 0.7);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}

.achievement-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(var(--text-color-rgb), 0.6);
  font-size: 14px;
}

.achievement-date i {
  font-size: 16px;
  color: #d61a3c;
}

/* Achievement Description */
.achievement-description {
  margin-top: 20px;
}

.achievement-description p {
  color: rgba(var(--text-color-rgb), 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

/* Achievement Highlights */
.achievement-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.highlight-tag {
  padding: 6px 12px;
  background: rgba(214, 26, 60, 0.1);
  color: #d61a3c;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(214, 26, 60, 0.2);
  transition: all 0.3s ease;
}

.highlight-tag:hover {
  background: #d61a3c;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .achievement-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .achievement-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }

  .achievement-position {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .achievement-position h2 {
    font-size: 20px;
  }

  .achievement-event h3 {
    font-size: 16px;
  }

  .achievements-container {
    padding: 20px 0;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .achievement-card {
    padding: 15px;
    margin: 10px;
  }

  .achievement-position h2 {
    font-size: 18px;
  }

  .achievement-event h3 {
    font-size: 15px;
  }

  .achievement-highlights {
    gap: 6px;
  }

  .highlight-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/*--------------------------------------------------------------
# CONTACT SECTION
--------------------------------------------------------------*/

/* Contact section scrolling is handled in the main sections rule above */

.container section.contact::-webkit-scrollbar {
  width: 8px;
}

.container section.contact::-webkit-scrollbar-track {
  background: rgba(214, 26, 60, 0.1);
  border-radius: 4px;
}

.container section.contact::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 4px;
}

.container section.contact::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff4757, #d61a3c);
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 30px 0;
  margin: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

/* Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 26, 60, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d61a3c, #ff4757);
  border-radius: 16px 16px 0 0;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(214, 26, 60, 0.2);
  border-color: rgba(214, 26, 60, 0.3);
}

/* Contact Icon */
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 28px;
  color: white;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  animation-play-state: paused;
}

/* Contact Content */
.contact-content h3 {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  font-family: "Poppins", sans-serif;
}

.contact-content > p {
  color: rgba(var(--text-color-rgb), 0.7);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  margin-bottom: 25px;
}

.contact-info span {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  font-family: "Courier New", monospace;
  background: rgba(214, 26, 60, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(214, 26, 60, 0.2);
}

/* Contact Action Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #d61a3c, #ff4757);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #ff4757, #d61a3c);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(214, 26, 60, 0.3);
  color: white;
  text-decoration: none;
}

.contact-btn i {
  font-size: 16px;
}

/* Social Links Modern */
.social-links-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 26, 60, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(214, 26, 60, 0.1);
  border-color: rgba(214, 26, 60, 0.3);
  transform: translateY(-2px);
  color: var(--text-color);
  text-decoration: none;
}

.social-link.twitter:hover { 
  background: rgba(0, 0, 0, 0.1); 
  border-color: rgba(0, 0, 0, 0.3); 
}

.social-link.linkedin:hover { 
  background: rgba(0, 119, 181, 0.1); 
  border-color: rgba(0, 119, 181, 0.3); 
}

.social-link.github:hover { 
  background: rgba(51, 51, 51, 0.1); 
  border-color: rgba(51, 51, 51, 0.3); 
}

.social-link.instagram:hover { 
  background: rgba(225, 48, 108, 0.1); 
  border-color: rgba(225, 48, 108, 0.3); 
}

.social-link.facebook:hover { 
  background: rgba(24, 119, 242, 0.1); 
  border-color: rgba(24, 119, 242, 0.3); 
}

.social-link i {
  font-size: 16px;
}

/* Contact Footer */
.contact-footer {
  margin-top: 40px;
  padding: 30px 20px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.footer-content h4 {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.footer-content > p {
  color: rgba(var(--text-color-rgb), 0.7);
  font-size: 14px;
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.5;
}

.footer-decoration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 26, 60, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  max-width: 100%;
  word-break: break-word;
}

.code-bracket {
  color: #d61a3c;
  font-weight: bold;
}

.code-text {
  color: rgba(var(--text-color-rgb), 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .social-links-modern {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-footer {
    margin-top: 30px;
    padding: 20px 10px;
  }

  .footer-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-content > p {
    font-size: 13px;
    margin-bottom: 20px;
    padding: 0 10px;
    text-wrap: wrap;
  }

  .footer-decoration {
    gap: 5px;
    padding: 15px;
    font-size: 12px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 20px;
  }

  .contact-content h3 {
    font-size: 18px;
  }

  .social-links-modern {
    grid-template-columns: 1fr;
  }

  .contact-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .contact-footer {
    margin-top: 25px;
    padding: 15px 5px;
  }

  .footer-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-content > p {
    font-size: 12px;
    margin-bottom: 15px;
    padding: 0 5px;
    line-height: 1.4;
  }

  .footer-decoration {
    gap: 4px;
    padding: 12px;
    font-size: 11px;
    margin: 0 5px;
    word-break: break-all;
  }

  .code-text {
    text-align: center;
    line-height: 1.3;
  }
}
