.home-content .btn:hover,
.about-btn:hover {
  background-color: white;
  color: #f39c12;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(243,156,18,0.3);
}
.navbar .nav-links li a:hover {
  color: #f39c12;
  transform: scale(1.1);
  text-shadow: 0 0 5px #f39c12;
}
.card-back {
  background: linear-gradient(135deg, #010f46 0%, #0b0b0b 100%);
}
.skill-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}
.experience-card {
  background: #161616;
  color: #fff;
}
.experience-card p {
  color: #ddd;
}
.skill-item:nth-child(1) { --delay: 0s; }
.skill-item:nth-child(2) { --delay: 0.1s; }
.skill-item:nth-child(3) { --delay: 0.2s; }
/* Continue for all items */
.card-front, .card-back {
  transition: transform 0.6s ease-in-out;
}
.footer-link:hover {
  border-image: linear-gradient(45deg, #f39c12, #c9a227) 1;
}
.projects-container {
  gap: 20px;
}
.skills-grid {
  gap: 15px;
}
.skill-item {
  padding: 20px 15px; /* for touch devices */
}
.about-btn, .home-content .btn {
  padding: 20px 35px;
  margin-top: 20px
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}
h1, h2, h3 {
  color: var(--gold);
  letter-spacing: 0.5px;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #010f46 0%, #0b0b0b 100%);
  color: #e6e6e6; /* light gray text */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid #4e4242; /* subtle border for separation */
}

.navbar .logo a {
  color: #f39c12; /* gold accent */
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .logo a:hover {
  color: white;
  transform: scale(1.05);
}

.navbar .nav-links {
  display: flex;
  list-style: none;
}

.navbar .nav-links li {
  margin: 0 20px;
}

.navbar .nav-links li a {
  color: #e6e6e6; /* light gray links */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: #f39c12; /* gold hover */
  transform: scale(1.1);
}


.nav-btn {
  display: none;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #f39c12;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background-color: rgba(243, 156, 18, 0.8);
}

.nav-links a.active {
  color: #f39c12;
  font-weight: bold;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #f39c12;
  bottom: 0;
  left: 0;
}
/* Back to Top Arrow */
.arrow-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  color: #f39c12;
  background-color: #010f46;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: 0.3s;
}

.arrow-up:hover {
  background-color: #444;
}

.arrow-up i {
  color: white;
}
.show-arrow {
  display: block;
}

.weblytics-logo {
  font-family: "Brush Script MT", cursive;
  font-size: 25px;
  color: #f39c12;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.weblytics-logo:hover {
  color: white;
  transform: scale(1.1);
}

/* Home Section */
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000000;
  color: white;
  text-align: center;
  /* background-image: url("images/backg1.jpg");
  background-repeat: no-repeat;
  background-size: cover; */
}

.home-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

.home-content .intro {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
  font-weight: 500;
  animation: fadeIn 2s ease-in-out 0.5s;
}

.home-content .description {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
  font-weight: 400;
  animation: fadeIn 2s ease-in-out 1s;
}

.home-content .btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #f39c12;
  color: black;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-content .btn:hover {
  background-color: white;
  color: #f39c12;
  transform: scale(1.1);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
  background-color: black;
  color: #fff;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.about-section h2 {
  font-size: 30px;
  color: #f39c12;
  font-weight: bold;
}

.about-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.about-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f39c12;
  transition: transform 0.3s ease;
  margin-right: 40px;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f39c12;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.1);
}

.about-description {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: #ccc;
  max-width: 600px;
}

.about-btn {
  background-color: #f39c12;
  color: black;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 30px;
  font-weight: 600;
  display: block;
  margin: 30px auto;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: white;
  color: #f39c12;
  transform: scale(1.1);
}

/* Skills Section */
.skills-section {
  background: black;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.skills-container h2 {
  font-size: 30px;
  font-weight: 600;
  color: #f39c12;
  margin-bottom: 20px;
}

.skills-intro {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 40px;
}

.skills-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  flex-wrap: wrap;
}

.skill-item {
  background: #000000;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeIn 0.5s ease-out forwards;
}

.skill-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.skill-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  filter: brightness(1.5) saturate(1.2);
}

.skill-item h3 {
  font-size: 13px;
  color: #f39c12;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.skill-item {
  animation-delay: var(--delay);
}

/* Projects Section */
.projects {
  padding: 60px 0;
  background-color: black;
  color: white;
  text-align: center;
  /* background-image: url("images/backg1.jpg");
  background-repeat: no-repeat;
  background-size: cover; */
}

.projects-heading h2 {
  font-size: 30px;
  color: #f39c12;
}

.projects-heading p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 40px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: -16px;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card {
  position: relative;
  width: 300px;
  height: 200px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 35px;
}

.card-front,
.card-back {
  width: 300px;
  height: 200px;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-front img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.card-back {
  background-color: #010f46;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
}

.project-card:hover .card-front {
  transform: rotateY(180deg);
}

.project-card:hover .card-back {
  transform: rotateY(0);
}

.card-back h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

.card-back p {
  font-size: 13px;
  margin-bottom: 20px;
}

.card-back a {
  background-color: #f39c12;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s;
  font-size: 13px;
}

.card-back a:hover {
  background-color: white;
  color: #f39c12;
}

/* Education Section */
.education-section {
  padding: 80px 0;
  background: #111;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.education-section h2 {
  font-size: 30px;
  color: #f39c12;
  margin-bottom: 50px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.education-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.step {
  width: 700px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid #f39c12;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(255, 223, 130, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 15px #f39c12;
}

.step:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover:before {
  opacity: 1;
}

.step .logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: black;
  border: 2px solid #f39c12;
  border-radius: 100%;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step .logo img {
  width: 100%;
  height: 100%;
}

.step .logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #f39c12, 0 0 30px rgba(255, 204, 0, 0.8);
}

.step .content {
  z-index: 2;
  position: relative;
}

.step h3 {
  font-size: 20px;
  color: #f39c12;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  margin: 5px 0;
  color: #ccc;
}

.step strong {
  color: #fff;
}

/* Work Experience Section */
.work-experience {
  padding: 80px 0;
  background-color: #111;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.work-experience h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #f39c12;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

.experience-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  position: relative;
}

.experience-card {
  position: relative;
  width: 300px;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  transform: skewY(-3deg);
}

.experience-card:hover {
  transform: skewY(0deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.experience-card .timeline-marker {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f39c12;
  transform: translateY(-50%);
  z-index: 2;
}

.experience-card .experience-content {
  z-index: 1;
}

.experience-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f39c12;
}

.experience-card p {
  font-size: 15px;
  margin-bottom: 10px;
  color: black;
}

.icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.job-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.job-icon:hover {
  transform: scale(1.2);
}

.work-experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}
/* Certifications Section */

.certifications {
  padding: 80px 0;
  background-color: black;
  text-align: center;
  color: #fff;
  position: relative;
}
.nav-btn1:hover {
  background-color: rgba(243, 156, 18, 0.8);
}
.nav-btn1 {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #f39c12;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.certifications h2 {
  font-size: 30px;
  color: #f39c12;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.slider-wrapper {
  position: relative;
  width: 40%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  text-align: center;
  background: rgb(40, 39, 39);
}

.slide img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.slide h3 {
  font-size: 15px;
  color: #f39c12;
  margin-top: 20px;
}

.slide p {
  font-size: 15px;
  color: #ddd;
}

.nav-btn1 {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #f39c12;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.prev-btn1 {
  left: 4px;
  width: 40px;
  height: 45px;
}
.next-btn1 {
  right: 20px;
  width: 40px;
  height: 45px;
  margin-right: -13px;
}
/* Contact Section */
.footer {
  background: linear-gradient(135deg, #010f46 0%, #0b0b0b 100%);
  padding: 40px 20px;
  color: #e6e6e6; /* light gray text */
  text-align: center;
  border-top: 1px solid #333;
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.2);
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeIn 2s ease-in-out;
}

.footer h2 {
  font-size: 28px;
  color: #f39c12; /* gold accent */
  margin-bottom: 15px;
}

.footer-intro {
  font-size: 15px;
  color: #ccc; /* softer than white */
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-link {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, color 0.3s ease, border 0.3s ease;
  padding: 8px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
}

.footer-link i {
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  transform: translateY(-3px);
  color: #f39c12; /* gold hover */
  border-color: #f39c12;
  background: rgba(243,156,18,0.1);
}

.footer-link:hover i {
  color: #f39c12;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom p {
  margin: 0;
}

.footer a:hover {
  color: #f39c12;
}

/* Social icons customization */
.footer-link i.fa-envelope { color: #f62104; }
.footer-link i.fa-github { color: #efeded; }
.footer-link i.fa-linkedin { color: #146794; }

/* Divider if needed */
.divider-gradient {
  height: 3px;
  width: 80px;
  background: linear-gradient(to right, #f39c12, #000);
  border-radius: 50px;
  margin: 15px auto;
}

.gmail-icon {
  width: 20px;
  height: 20px;
}
.divider-gradient {
  height: 3px;
  background: linear-gradient(to right, #f39c12, #000);
  border: none;
  margin: 11px 0;
  border-radius: 50px;
}

/* Media Query */
@media only screen and (max-width: 856px) {
  .navbar {
    position: fixed;
    height: 47px;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #010f46;
    color: white;
    padding: -12px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
  }
  .navbar .nav-links {
    display: none;
    text-align: left;
    flex-direction: column;
    position: absolute;
    top: 10px;
    right: 42px;
    background: linear-gradient(135deg, #010f46 0%, #0b0b0b 100%);
    padding-top: 10px;
    opacity: inherit;
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .navbar .nav-links li {
    margin: 10px 0;
  }
  .nav-btn {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .navbar .nav-links li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 960px) {
  .about-content-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 200px;
    height: 200px;
  }

  .about-description {
    font-size: 14px;
    max-width: 100%;
  }

  .about-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}
@media only screen and (max-width: 480px) {
  .about-image {
    width: 150px;
    height: 150px;
  }

  .about-section h2 {
    font-size: 25px;
  }

  .about-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}

@media only screen and (max-width: 913px) {
  .skills-grid {
    gap: 15px;
  }

  .skill-item {
    width: 100px;
    padding: 15px;
    margin: 10px 0;
    animation-delay: 0s;
  }

  .skill-icon {
    width: 25px;
    height: 25px;
  }

  .skill-item h3 {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .skills-grid {
    justify-content: center;
  }

  .skill-item {
    width: 150px;
  }

  .skills-container h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .skill-item {
    width: 130px;
    padding: 10px;
  }

  .skills-intro {
    font-size: 14px;
  }

  .skills-container h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 805px) {
  .education-steps {
    gap: 20px;
  }

  .step {
    width: 90%;
    padding: 20px;
  }

  .step .logo {
    width: 60px;
    height: 60px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
  }

  .education-section h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .step {
    width: 100%;
    padding: 15px;
  }

  .step .logo {
    width: 50px;
    height: 50px;
  }

  .step h3 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }

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

@media only screen and (max-width: 480px) {
  .education-section {
    padding: 60px 10px;
  }

  .education-steps {
    gap: 10px;
  }

  .step {
    width: 100%;
    padding: 10px;
  }

  .step .logo {
    width: 40px;
    height: 40px;
  }

  .step h3 {
    font-size: 13px;
  }

  .step p {
    font-size: 11px;
  }

  .education-section h2 {
    font-size: 16px;
  }

  .step .content {
    padding-left: 10px;
  }

  .step .logo img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 864px) {
  .work-experience {
    padding: 60px 10px;
  }

  .work-experience h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .experience-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .experience-card {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    transform: skewY(0deg);
  }

  .icon-container {
    margin-bottom: 10px;
  }

  .job-icon {
    width: 80px;
    height: 80px;
  }

  .experience-card h3 {
    font-size: 18px;
  }

  .experience-card p {
    font-size: 14px;
  }

  .timeline-marker {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .work-experience::before {
    opacity: 0.1;
  }
}
@media only screen and (max-width: 1135px) {
  .projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 741px;
    margin: 0 auto;
}
  }

  @media only screen and (max-width: 775px) {
    .projects-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      width: 363px;
      margin: 0 auto;
  }}
  @media only screen and (max-width: 399px) {
    .experience-card{
      max-width:241px ;
    }
   }
@media only screen and (max-width: 620px) {
  .work-experience {
    padding: 20px 5px;
  }

  .work-experience h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .experience-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .experience-card {
    width: 100%;
    max-width: 350px;
    padding: 8px;
    transform: skewY(0deg);
  }

  .icon-container {
    margin-bottom: 5px;
  }

  .job-icon {
    width: 40px;
    height: 40px;
  }

  .experience-card h3 {
    font-size: 12px;
  }

  .experience-card p {
    font-size: 10px;
  }

  .timeline-marker {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .work-experience::before {
    opacity: 0.02;
  }
}

@media screen and (max-width: 1024px) {
  .slider-wrapper {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .slider-wrapper {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .slider-wrapper {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .arrow-up {
    display: none !important;
  }
}
@media (max-width: 432px) {
  .footer-link {
   font-size:11px;
   display: flex;
  flex-direction: column;
  }
}
