

.right-arrow-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.footer-icon {
  width: 20px;
  height: 20px;
}

a.icon-link {
  transition: transform 200ms ease-in-out;
}

a.icon-link:hover {
  cursor: pointer;
  stroke-width: 5;
  margin: 0;
  transform: rotate(15deg);
}


/* Navbar Styling */

.navbar {
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}

.nav-title-link {
  font-weight: bold;
  font-size: 1.5rem;

  color: black;
  text-decoration: none;

}

.nav-title-link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 800px) {
  .navbar {
    padding: 20px 20px;
    background-color: white
  }
}



a.button {
  padding: 8px 16px;
  border: 3px solid #141414;
  border-radius: 50px;
  color: black;
  text-decoration: none;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
}

a.button:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  cursor: pointer;
}



#footer {
  width: 100%;
  display: flex;
  padding: 30px 50px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

a.no-underline {
  text-decoration: none;
  color: black
}

a.no-underline:hover {
  text-decoration: underline;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  #footer {
    padding: 20px 20px;
  }
}

.skills-section {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  text-align: center;
}

.skills-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.skill-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
}

.skill-card p {
  font-size: 1rem;
  font-weight: bold;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .skills-section h2 {
    font-size: 2rem;
  }

  .skill-card {
    padding: 0.75rem;
  }

  .skill-card p {
    font-size: 0.9rem;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}


/* Slider Container */
.image-slider {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 50%;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Wrapper for Slides */
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
