/* Global styles */
@import url('https://fonts.googleapis.com/css2?family=Underdog&display=swap');

.underdog-regular {
    font-family: "Underdog", system-ui;
    font-weight: 400;
    font-style: normal;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.308);
    color: #ffffff;
    overflow-x: hidden; /* No vertical scrollbar */
    overflow-y: auto; /* Enable vertical scroll if needed */
}
/* Container for scroll icon */
.scroll-icon-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fade-in 2s ease-in-out infinite;
  }
  
  
  /* Scroll icon styling */
  .scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    position: relative;
  }
  
  /* The dot inside the scroll icon */
  .scroll-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
  }
  
  /* Fade-in animation */
  @keyframes fade-in {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
  }
  
  /* Scroll animation */
  @keyframes scroll {
    0% {
      top: 5px;
      opacity: 0.8;
    }
    50% {
      top: 25px;
      opacity: 0.4;
    }
    100% {
      top: 5px;
      opacity: 0.8;
    }
  }
  

/* Container for about page */
.about-container {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: transparent;
    color: #fff;
}
.about-container h2{
  color: rgb(240, 32, 80);
}
/* About Section */
.about-info {
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 8px;
   
}
.about-info h1{
 color:  rgb(240, 32, 80);
}

/* Experience Section */
.experience {
    margin: 50px 0;
    padding: 20px;
    border-radius: 8px;
   
}

.experience h2 {
    font-size: 1.5rem;
    color: #F02050;
}

.experience-item {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Skills Section */
.skills {
    margin: 50px 0;
    padding: 20px;
    border-radius: 8px;
}

.skills h2 {
    font-size: 1.5rem;
    color: #F02050;
}

.skills ul {
    list-style-type: none;
}

.skills li {
    font-size: 1.2rem;
    margin: 5px 0;
}

/* General styling for Practice Works */
.practice-works {
  margin: 50px 0;
  padding: 20px;
  display: flex;
  flex-direction: column; /* Set vertical layout */
  align-items: center; /* Center content horizontally */
  gap: 50px; /* Space between video items */
  max-height: auto; /* Set maximum height */
  overflow-y: auto; /* Enable vertical scrolling */
  scroll-snap-type: y mandatory;
}

/* Styling for video items */
.practice-works iframe {
  width: 480px;
  height: 280px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px #F02050;
  scroll-snap-align: start; /* Ensure snapping */
}

/* Remove scrollbar */
.practice-works::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .practice-works iframe {
      width: 260px;
      height: 150px;
  }
}

@media (max-width: 480px) {
  .practice-works iframe {
      width: 200px;
      height: 112px;
  }
}
