* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

    
}


/* Add custom scrollbar styles */
::-webkit-scrollbar {
  width: 9px;
  
}

::-webkit-scrollbar-track {
  background-color: #ffffff;

}

::-webkit-scrollbar-thumb {
  background-color:rgb(30, 32, 48);
  height: 10vh;
  border-radius: 5px;

}


body {
    overflow-y: scroll;
    height: 100vh;
    overflow-x: hidden;
    width: 100vw;
  }

  .initial-screen {
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 1%;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor:progress;
    transition: transform 0.7s ease-out;
    transition-delay: 0.3s;
}
.slide-up {
  transform: translateY(-100%);
}

.hello {
    top: 10%;
    padding-left: 2%;
    font-size: 48px;
    font-weight: bold;
    color: white;
    animation: fadeInOut 5s ease-out forwards;
}

@keyframes fadeInOut {
    0%{ opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
/*INITITAL SCREEN */
@media only screen and (max-width: 375px) {
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 376px) and (max-width: 479px) {

 
}

/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 480px) and (max-width: 767px) {

   
}
/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Add your styles here */
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Add your styles here */
}

/* Desktop (1200px and up) */
@media only screen and (min-width: 1199px) {
  /* Add your styles here */
}


.menucontainer {
  position: fixed;
  top: 3%;
  right: 2%;/*60% will be good for mobile device*/
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Make it a circle */
  z-index: 20;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.5s ease; /* Transition opacity */
  overflow: hidden;
  
}
.menucontainer.show {
  opacity: 1; /* Show when the show class is added */
}

.pin-menu.show {
  display: block;
}

.menu {
  width: 100px;
  height: 100px;
  background-color: #060606;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  border: 2px solid rgba(76, 76, 76, 0.608); /* Add border */
  overflow: hidden;
}

.pin-menu {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  margin: 4px;
  z-index: 10;
}

.menucontainer:hover {
  cursor: pointer; /* Change cursor to pointer on hover */
}

.menucontainer::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menucontainer:hover::before {
  background-color: rgba(0, 0, 255, 0.958); /* Semi-transparent blue */
  border-radius: 90% 30% 60% 70%;
  animation: waterwave 5s infinite; /* Add animation for the wave effect, infinite loop */
  z-index: 6;
  transform: translateY(0px); /* Correct the spelling of the transform property */
  overflow: hidden;
}


/* Animation for the wave effect */
@keyframes waterwave {
  0% {
    transform: translateY(0px);
    border-radius: 10% 10% 40% 40%;
  }
  25% {
    transform: translateY(-65px);
    border-radius: 0% 0% 10% 80%;
  }
  50% {
    transform: translateX(80px);
    border-radius: 80% 10% 90% 90%;
  }
  75% {
    transform: translateY(-105px);
    border-radius: 90% 90% 10% 80%;
  }
  100% {
    transform: translateY(0px);
    border-radius: 10% 10% 50% 50%;
  }
}

@media only screen and (max-width: 375px) {
  .menucontainer {
    position: fixed;
    top: 3%;
    right: 3%;/*60% will be good for mobile device*/
  }
  

  .menucontainer.active::before {
    background-color: rgba(0, 0, 255, 0.958); /* Semi-transparent blue */
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite; /* Add animation for the wave effect, infinite loop */
    z-index: 6;
    transform: translateY(0px); /* Correct the spelling of the transform property */
    overflow: hidden;
  }
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .menucontainer {
    position: fixed;
    top: 3%;
    right: 3%;/*60% will be good for mobile device*/
  }
  

  .menucontainer.active::before {
    background-color: rgba(0, 0, 255, 0.958); /* Semi-transparent blue */
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite; /* Add animation for the wave effect, infinite loop */
    z-index: 6;
    transform: translateY(0px); /* Correct the spelling of the transform property */
    overflow: hidden;
  }
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .menucontainer {
    position: fixed;
    top: 3%;
    right: 3%;/*60% will be good for mobile device*/
  }
  

  .menucontainer.active::before {
    background-color: rgba(0, 0, 255, 0.958); /* Semi-transparent blue */
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite; /* Add animation for the wave effect, infinite loop */
    z-index: 6;
    transform: translateY(0px); /* Correct the spelling of the transform property */
    overflow: hidden;
  }
  
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menucontainer {
    position: fixed;
    top: 3%;
    right: 3%;/*60% will be good for mobile device*/
  }
  

  .menucontainer.active::before {
    background-color: rgba(0, 0, 255, 0.958); /* Semi-transparent blue */
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite; /* Add animation for the wave effect, infinite loop */
    z-index: 6;
    transform: translateY(0px); /* Correct the spelling of the transform property */
    overflow: hidden;
  }
  
}
 

.sidebar {
  position: fixed;
  top: 0;
  right: 0%;/* 12 % will be good for the mobile device*/
  width: 100vw;
  height: 100vh;
  background-color: #060606e4;
  color: #fff;
  transform: translateX(100%);
  clip-path: ellipse( 100% 65% at 100% 30%);
  transition: transform 0.5s ease;
  z-index: 10;
  box-sizing: border-box;
  padding: 20px;
  overflow-x: hidden;
}


.sidebar.show {
  transform: translateX(0%);
}

.sidebar-content {
  position: absolute;
  color: #ffffff;  
  text-decoration: none;  
  justify-content: center;
  top: 12%;
}

.sidebar-option:nth-child(1) {
  position: relative;
  top: 10px;
  left: 10px;
}

.sidebar-option:nth-child(2) {
  position: relative;
  left: 12px;
}

.sidebar-option:nth-child(3) {
  position: relative;
  left: 15px;
}

.sidebar-option:nth-child(4) {
  position: relative;
  left: 10px;
}

.sidebar-option {
  font-family:Georgia, 'Times New Roman', Times, serif;
  display: block;  
  padding: 40px 270px;  
  text-decoration: none; 
  color: #fffcfc; 
  font-size: 34px;
}

.sidebar-option:hover {
  background-color: #ffffff; 
  border-radius: 50px;
  width: 10%;
  color: #000; 
  padding-left: 350px;
}

@media only screen and (max-width: 375px) {
  .sidebar {
    width: 100vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 210px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .sidebar {
    width: 100vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 210px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }
  
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .sidebar {
    width: 100vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 210px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }
  
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .sidebar {
    width: 100vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 210px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }
  
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .sidebar {
    width: 50vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 320px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }

  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .sidebar {
    width: 50vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 320px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }

  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .sidebar {
    width: 50vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 320px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }

  
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .sidebar {
    width: 50vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 320px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
  .sidebar {
    width: 50vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 320px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }

}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .sidebar {
    width: 50vw;
  }
  .sidebar-option {
    font-family:Georgia, 'Times New Roman', Times, serif;
    display: block;  
    padding: 40px 320px;  
  }
  .sidebar-option:hover {
    padding-left: 250px;
  }

}

.homepage {
    height: 100vh; 
    position: relative;
    transition: top 0.5s ease-in-out;
    overflow: hidden;
    
  }
  
@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}




.background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 30% 88%, auto; /* Fit the background image within the container */
    background-position: bottom,center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    height: 135%; /* Set the heightf the container to 100% of the viewport height */
    position: relative; /* Required for stacking elements */
    z-index: 0;
    overflow-x: hidden;
}
  
@media only screen and (max-width: 375px) {
  .homepage {
    height: 92vh; 
    position: relative;
    transition: top 0.5s ease-in-out;
    overflow: hidden;
  }
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 86% 78%, auto; /* Fit the background image within the container */
}
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .homepage {
    height: 92vh; 
    position: relative;
    transition: top 0.5s ease-in-out;
    overflow: hidden;
  }
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 86% 78%, auto; /* Fit the background image within the container */
 
}
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 65% 83%, auto; /* Fit the background image within the container */
 
}
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 50% 83%, auto; /* Fit the background image within the container */
 
}
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 44% 85%, auto; /* Fit the background image within the container */
 
}
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 40% 85%, auto; /* Fit the background image within the container */
 
}
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 35% 88%, auto; /* Fit the background image within the container */
 
}
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 30% 88%, auto; /* Fit the background image within the container */
}
 }
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 30% 88%, auto; /* Fit the background image within the container */
    background-position: bottom,center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    height: 135%; /* Set the heightf the container to 100% of the viewport height */
    position: relative; /* Required for stacking elements */
    z-index: 0;
    overflow-x: hidden;
}
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .background-container {
    background-image: url('DSC01889.png'), linear-gradient(to bottom, rgba(24, 35, 51, 0.371), rgba(64, 71, 77, 0.671), rgba(24, 35, 51, 0.416)); /* Replace 'path/to/your/image.jpg' with the path to your image */
    background-size: 30% 88%, auto; /* Fit the background image within the container */
    background-position: bottom,center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    height: 135%; /* Set the heightf the container to 100% of the viewport height */
    position: relative; /* Required for stacking elements */
    z-index: 0;
    overflow-x: hidden;
}
}


.text-animation {
    position: absolute;
    bottom: 25px;
    overflow: hidden;
    box-sizing: border-box;
    user-select: none;
    width: auto;
  }
  
  .text-container {
    font-size: 15.5vw;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: white;
    display: flex;
    letter-spacing: -3px;
    position: relative;
    overflow: hidden;
    gap: 0;
  }
  
  .text{
    animation: slideAnimation 14s linear infinite;
    box-sizing: border-box;
    white-space: nowrap;
    width: calc(100% - (-120px)); 
    
  }
  
  .text-container:hover .text {
    cursor: -webkit-grabbing;
    /* animation-direction: reverse; */

  }
  .text-container:not(:hover) .text {
    cursor: -webkit-grabbing;
    /* animation-direction: reverse; */
    animation-play-state: running;

  }

  
  @keyframes slideAnimation {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  @media only screen and (max-width: 375px) {
    .text-container {
      font-size: 25.5vw;
      padding-right: 61%;
    }
    
  }
  /* Mobile portrait (less than 480px) */
  @media only screen and (min-width: 375px) and (max-width: 425px) {
    .text-container {
      font-size: 24.5vw;
      padding-right: 60%;
    
    }    
  }
  @media only screen and (min-width: 425px) and (max-width: 479px) {
    .text-container {
      font-size: 24.5vw;
      padding-right: 59%;
    }    
  }
  /* Mobile landscape (less than 768px) */
  @media only screen and (min-width: 479px) and (max-width: 600px) {
    .text-container {
      font-size: 24.5vw;
      padding-right: 58%;
    }    
  }
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .text-container {
      font-size: 22.5vw;
      padding-right: 56%;
    }    
  }
  
  /* Tablet portrait (less than 992px) */
  @media only screen and (min-width: 767px) and (max-width: 991px) {
    .text-container {
      font-size: 20.5vw;
      padding-right: 57%;
    }   
  }
  
  /* Tablet landscape (less than 1200px) */
  @media only screen and (min-width: 991px) and (max-width: 1200px) {
    .text-container {
      font-size: 20.5vw;
      padding-right: 56%;
    }   
  }
  
  /* Desktop (1200px and up) */
  @media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .text-container {
      font-size: 20.5vw;
      padding-right: 55%;
    }   
    
.text-animation {
  position: absolute;
  bottom: 20px;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
  width: auto;
}
  }
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .text-container {
      font-size: 15vw;
      padding-right: 56%;
    }   
  }

@media only screen and (min-width: 1600px) and (max-width: 1850px) {
  .text-container {
    font-size: 16.5vw;
    padding-right: 48%;
  }   
}
@media only screen and (min-width: 1850px) and (max-width: 2250px) {
  .text-container {
    font-size: 16.5vw;
    padding-right: 48%;
  }   
}
@media only screen and (min-width: 2250px) and (max-width: 2550px) {
  .text-container {
    font-size: 16.5vw;
    padding-right: 48%;
  }   
}
/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .text-container {
    font-size: 16.5vw;
    padding-right: 48%;
  }   
}





/* Add this to your existing styles.css */
.copyright {
    position: absolute; /* Position relative to the container */
    bottom: 92%; /* Adjust bottom position */
    left: 2%; /* Adjust left position */
    display: inline-block;
    font-size: 1.3vw;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', Times, serif; /* Change font family */
    color: white; /* Change text color */
    padding: 5px 10px; /* Add padding */
    z-index: 5;
}

@media only screen and (max-width: 375px) {
  .copyright {
    left: 1%; /* Adjust left position */
    font-size: 3.3vw;
}
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .copyright {
    left: 1%; /* Adjust left position */
    font-size: 3.1vw;
}
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 3vw;
}
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 2.5vw;
}
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 2.2vw;
}
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 1.7vw;
} 
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 1.3vw;
}
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 1.3vw;
}

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
  .copyright {
    left: 2%; /* Adjust left position */
    font-size: 1.3vw;
}
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .copyright {
    left: 4%; /* Adjust left position */
    font-size: 1.3vw;
}
}

.hover-text {
    opacity: 0; /* Initially invisible */
    transition: opacity 0.3s ease;
}

/* Hover style for the copyright text */
.hover-text.active {
    opacity: 1; /* Make it visible */
}

/* Add animation for waving effect */
.wave-animation {
    animation: wave 0.5s infinite;
}

/* Define the wave animation */
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.about, .work, .contact {
    position: absolute; /* Position relative to the container */
    bottom: 92%; /* Adjust bottom position */
    right: 2%;
    display: inline-block;
    font-size: 1.3vw;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', Times, serif; /* Change font family */
    color: white; /* Change text color */
    padding: 5px 10px; /* Add padding */ 
    z-index: 55;
}

.contact {
    left: 92.5%; /* Adjust left position for About */
    z-index: 55;
}

.about {
    left: 86.5%; /* Adjust left position for Work */
}

.work {
    left:79.9%; /* Adjust left position for Contact */
    z-index: 1;
}

.about:hover, .work:hover, .contact:hover {
    color: black; /* Change text color to black when hovered */
    text-shadow: 5px 12px 10px white;
    animation: shiver 0.1s infinite;
    
     /* Add white glow when hovered */
}
@keyframes shiver {
    0% {
        transform: translateX(-1px);
    }
    100% {
        transform: translateX(1px);
    }
}

@media only screen and (max-width: 375px) {
  .about, .work, .contact {
    right: 1%;
    bottom: 92%; /* Adjust bottom position */
    font-size: 3.3vw;
}
.contact {
    left: 82.5%; /* Adjust left position for About */
}
.about {
    left: 67.5%; /* Adjust left position for Work */
}
.work {
    left:52.9%; /* Adjust left position for Contact */
}
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 3.1vw;
    right: 1%;

}
.contact {
    left: 82.5%; /* Adjust left position for About */
}
.about {
    left: 67.5%; /* Adjust left position for Work */
}
.work {
    left:52.9%; /* Adjust left position for Contact */
}
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 3vw;
    right: 2%;

}
.contact {
    left: 84.5%; /* Adjust left position for About */
}
.about {
    left: 71.5%; /* Adjust left position for Work */
}
.work {
    left:58.9%; /* Adjust left position for Contact */
}
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 2.5vw;
    right: 2%;

}
.contact {
    left: 84.5%; /* Adjust left position for About */
 }
.about {
    left: 71.5%; /* Adjust left position for Work */
}
.work {
    left:58.9%; /* Adjust left position for Contact */
}
   
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 2.2vw;
    right: 2%;

}
.contact {
    left: 85.5%; /* Adjust left position for About */
 }
.about {
    left: 72.5%; /* Adjust left position for Work */
}
.work {
    left:59.9%; /* Adjust left position for Contact */
}
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 1.3vw;
    right: 2%;

}
.contact {
  left: 88.5%; /* Adjust left position for About */
  z-index: 30;
}
.about {
  left: 80.2%; /* Adjust left position for Work */
}
.work {
  left:71.9%; /* Adjust left position for Contact */
}
  
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 1.3vw;
    right: 2%;

}
.contact {
  left: 88.5%; /* Adjust left position for About */
  z-index: 30;
}
.about {
  left: 80.2%; /* Adjust left position for Work */
}
.work {
  left:71.9%; /* Adjust left position for Contact */
}
  
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .about, .work, .contact {
    font-size: 1.3vw;
    right: 2%;

}

.contact {
    left: 92.5%; /* Adjust left position for About */
 }

.about {
    left: 86.5%; /* Adjust left position for Work */
}

.work {
    left:79.9%; /* Adjust left position for Contact */
}

  

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 1.3vw;
    right: 2%;

}
.contact {
  left: 90.5%; /* Adjust left position for About */
  z-index: 30;
}
.about {
  left: 82.2%; /* Adjust left position for Work */
}
.work {
  left:73.9%; /* Adjust left position for Contact */
}
  
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .about, .work, .contact {
    bottom: 92%; /* Adjust bottom position */
    font-size: 1.3vw;
    right: 2%;

}
.contact {
  left: 90.5%; /* Adjust left position for About */
  z-index: 30;
}
.about {
  left: 82.2%; /* Adjust left position for Work */
}
.work {
  left:73.9%; /* Adjust left position for Contact */
}
  
}

.rectangle {
    width: 18%;
  height: 12.2%;
  background-color: rgb(30, 32, 48);
  border-radius: 0 20% 20% 0 / 0 45% 45% 0;
  position: absolute;
  top: 45%;
  left: 0%;
    
  }

  @media only screen and (max-width: 375px) {
    .rectangle {
      width: 38%;
    height: 10%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 48%;
    left: 0%;
      
    }
 
  }
  /* Mobile portrait (less than 480px) */
  @media only screen and (min-width: 375px) and (max-width: 479px) {
    .rectangle {
      width: 36%;
    height: 10%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 48%;
    left: 0%; 
    }
  }
  /* Mobile landscape (less than 768px) */
  @media only screen and (min-width: 479px) and (max-width: 600px) {
    .rectangle {
      width: 34%;
    height: 12%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 48%;
    left: 0%; 
    }
     
  }
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .rectangle {
      width: 28%;
    height: 14.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
     
  }
  
  /* Tablet portrait (less than 992px) */
  @media only screen and (min-width: 767px) and (max-width: 991px) {
    .rectangle {
      width: 24%;
    height: 14.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
    
  }
  
  /* Tablet landscape (less than 1200px) */
  @media only screen and (min-width: 991px) and (max-width: 1200px) {
    .rectangle {
      width: 20%;
    height: 15.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
    
  }
   @media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .rectangle {
      width: 20%;
    height: 14.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
    
  }
  
   @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .rectangle {
      width: 20%;
    height: 14.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
  
  }
  @media only screen and (min-width: 1600px) and (max-width: 2550px) {
    .rectangle {
      width: 20%;
    height: 14.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
  }
  
  /*4K*/
  @media only screen and (min-width: 2550px) and (max-width: 3000px) {
    .rectangle {
      width: 20%;
    height: 14.2%;
    background-color: rgb(30, 32, 48);
    border-radius: 0 20% 20% 0 / 0 45% 45% 0;
    position: absolute;
    top: 45%;
    left: 0%;
      
    }
  }

  
.centre, .centre1, .centre2, .centre3, .centre4 {
    position: absolute; /* Position relative to the container */
    display: inline-block;
    font-family: Georgia, 'Times New Roman', Times, serif; /* Change font family */
    color: white; /* Change text color */
    font-size: 1.3vw;
}
.centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }

@media only screen and (max-width: 375px) {
  .centre {
    top: 48%; /* Adjust left position for Contact */
    font-size: 4.8vw;
    left: 71%;
}
.centre1 {
    top: 52%; /* Adjust left position for Contact */
    font-size: 4.8Vw;
    left: 71%;
}
.centre2 {
    bottom: 48.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
}
.centre3 {
    bottom: 46.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
.centre4 {
    bottom: 44.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
   
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .centre {
    top: 48%; /* Adjust left position for Contact */
    font-size: 4.8vw;
    left: 71%;
}
.centre1 {
    top: 52%; /* Adjust left position for Contact */
    font-size: 4.8Vw;
    left: 71%;
}
.centre2 {
    bottom: 48.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
}
.centre3 {
    bottom: 46.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
.centre4 {
    bottom: 44.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .centre {
    top: 48%; /* Adjust left position for Contact */
    font-size: 4.8vw;
    left: 71%;
}
.centre1 {
    top: 52%; /* Adjust left position for Contact */
    font-size: 4.8Vw;
    left: 71%;
}
.centre2 {
    bottom: 48.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
}
.centre3 {
    bottom: 46.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
.centre4 {
    bottom: 44.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .centre {
    top: 48%; /* Adjust left position for Contact */
    font-size: 4.8vw;
    left: 71%;
}
.centre1 {
    top: 52%; /* Adjust left position for Contact */
    font-size: 4.8Vw;
    left: 71%;
}
.centre2 {
    bottom: 48.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
}
.centre3 {
    bottom: 46.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
.centre4 {
    bottom: 44.4%; /* Adjust left position for Contact */
    left: 2%;
    font-size: 2.6vw;
  }
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
  .centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .centre {
    top: 43.5%; /* Adjust left position for Contact */
    font-size: 3vw;
    left: 71%;
}
.centre1 {
    top: 49.5%; /* Adjust left position for Contact */
    font-size: 3Vw;
    left: 71%;
}
.centre2 {
    bottom: 50%; /* Adjust left position for Contact */
    left: 2%;
}
.centre3 {
    bottom: 47%; /* Adjust left position for Contact */
    left: 2%;
  }
.centre4 {
    bottom: 44%; /* Adjust left position for Contact */
    left: 2%;
  }
}

.arrow {
    position: absolute;
    top: 36%; /* Adjust left position for Contact */
    font-size: 40px;
    left: 71.8%;
    transform: translate(-50%, -50%) rotate(45deg); /* Adjust rotation */
    width: 40px;/* Adjust width */
    height: 35px; /* Adjust height */
    user-select: none;
}
.arrow1 {
  position: absolute;
  top: 47%; /* Adjust left position for Contact */
  font-size: 4px;
  left: 11.5%;
  transform: translate(-50%, -50%) rotate(37deg); /* Adjust rotation */
  width: 25px;/* Adjust width */
  height: 25px; /* Adjust height */
  user-select: none;
}
@media only screen and (max-width: 375px) {
  .arrow {
    top: 43.5%; /* Adjust left position for Contact */
    left: 72.5%;
    width: 16px;/* Adjust width */
    height: 16px; /* Adjust height */
}
.arrow1 {
  position: absolute;
  top: 50%;
  font-size: 4px;
  left: 20.5%;
  width: 14px;
  height: 14px;  
display: none;
}
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .arrow {
    top: 43.5%; /* Adjust left position for Contact */
    left: 72.5%;
    width: 16px;/* Adjust width */
    height: 16px; /* Adjust height */
}
.arrow1 {
  position: absolute;
  top: 50%;
  font-size: 4px;
  left: 20.5%;
  width: 14px;
  height: 14px;  
display: none;
}
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .arrow {
    top: 43.5%; /* Adjust left position for Contact */
    left: 72.5%;
    width: 16px;/* Adjust width */
    height: 16px; /* Adjust height */
}
.arrow1 {
  position: absolute;
  top: 50%;
  font-size: 4px;
  left: 20.5%;
  width: 14px;
  height: 14px;  
display: none;
}
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .arrow {
    top: 43.5%; /* Adjust left position for Contact */
    left: 72.5%;
    width: 16px;/* Adjust width */
    height: 16px; /* Adjust height */
}
.arrow1 {
  position: absolute;
  top: 50%;
  font-size: 4px;
  left: 20.5%;
  width: 14px;
  height: 14px;  
display: none;
}
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .arrow {
    top: 43.5%; /* Adjust left position for Contact */
    left: 72.5%;
    width: 16px;/* Adjust width */
    height: 16px; /* Adjust height */
}
.arrow1 {
  position: absolute;
  top: 50%;
  font-size: 4px;
  left: 20.5%;
  width: 14px;
  height: 14px;  
display: none;
}
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .arrow {
    position: absolute;
    top: 36%; /* Adjust left position for Contact */
    font-size: 40px;
    left: 71.8%;
    transform: translate(-50%, -50%) rotate(45deg); /* Adjust rotation */
    width: 40px;/* Adjust width */
    height: 35px; /* Adjust height */
    user-select: none;
}
.arrow1 {
  position: absolute;
  top: 47%; /* Adjust left position for Contact */
  font-size: 4px;
  left: 11.5%;
  transform: translate(-50%, -50%) rotate(37deg); /* Adjust rotation */
  width: 25px;/* Adjust width */
  height: 25px; /* Adjust height */
  user-select: none;
}
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .arrow {
    position: absolute;
    top: 36%; /* Adjust left position for Contact */
    font-size: 40px;
    left: 71.8%;
    transform: translate(-50%, -50%) rotate(45deg); /* Adjust rotation */
    width: 40px;/* Adjust width */
    height: 35px; /* Adjust height */
    user-select: none;
}
.arrow1 {
  position: absolute;
  top: 47%; /* Adjust left position for Contact */
  font-size: 4px;
  left: 11.5%;
  transform: translate(-50%, -50%) rotate(37deg); /* Adjust rotation */
  width: 25px;/* Adjust width */
  height: 25px; /* Adjust height */
  user-select: none;
}
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .arrow {
    position: absolute;
    top: 36%; /* Adjust left position for Contact */
    font-size: 40px;
    left: 71.8%;
    transform: translate(-50%, -50%) rotate(45deg); /* Adjust rotation */
    width: 40px;/* Adjust width */
    height: 35px; /* Adjust height */
    user-select: none;
}
.arrow1 {
  position: absolute;
  top: 47%; /* Adjust left position for Contact */
  font-size: 4px;
  left: 11.5%;
  transform: translate(-50%, -50%) rotate(37deg); /* Adjust rotation */
  width: 25px;/* Adjust width */
  height: 25px; /* Adjust height */
  user-select: none;
}

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
  .arrow {
    position: absolute;
    top: 36%; /* Adjust left position for Contact */
    font-size: 40px;
    left: 71.8%;
    transform: translate(-50%, -50%) rotate(45deg); /* Adjust rotation */
    width: 40px;/* Adjust width */
    height: 35px; /* Adjust height */
    user-select: none;
}
.arrow1 {
  position: absolute;
  top: 47%; /* Adjust left position for Contact */
  font-size: 4px;
  left: 11.5%;
  transform: translate(-50%, -50%) rotate(37deg); /* Adjust rotation */
  width: 25px;/* Adjust width */
  height: 25px; /* Adjust height */
  user-select: none;
}
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
  .arrow {
    position: absolute;
    top: 36%; /* Adjust left position for Contact */
    font-size: 40px;
    left: 71.8%;
    transform: translate(-50%, -50%) rotate(45deg); /* Adjust rotation */
    width: 40px;/* Adjust width */
    height: 35px; /* Adjust height */
    user-select: none;
}
.arrow1 {
  position: absolute;
  top: 47%; /* Adjust left position for Contact */
  font-size: 4px;
  left: 11.5%;
  transform: translate(-50%, -50%) rotate(37deg); /* Adjust rotation */
  width: 25px;/* Adjust width */
  height: 25px; /* Adjust height */
  user-select: none;
}
}

.circle-container {
    position: absolute;
    top: 46.5%; /* Adjust left position for Contact */
    left: 11.9%;
    width: 5vw; 
    height: 5vw; 
    border-radius: 50%; /* Make it a circle */
    overflow: hidden;
    contain: layout;
    /* Hide oveflowing content */
}

.Asuimage {
    position: absolute;
    top: 45.5%; /* Adjust left position for Contact */
    left: 11.9%;
    width: 5vw; 
    height: 5vw; 
    border-radius: 50%;
    overflow: hidden;
}
.Asuimage img {
    top: 46.5%; /* Adjust left position for Contact */
    left: 11.9%;
    width: 5vw; 
    height: 5vw; 
    border-radius: 50%;
    overflow: hidden;
}


.view-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: transparent;
    font-size: 1.5vw;
    font-style: bold; /* Adjust font size as needed */
    transition: color 0.3s;
    z-index: 3; /* Add transition effect for smooth color change */
    user-select: none;
}
.circle-container:hover {
    cursor: pointer; /* Change cursor to pointer on hover */
}
.circle-container:hover .view-text {
    color: white; /* Change text color to white on hover */
}

.circle-container::before {
    content: ""; /* Add a pseudo-element to create the filled circle */
    position: absolute; /* Position the pseudo-element absolutely */
    top: 35%; /* Position the pseudo-element at the top */
    left: 0; /* Position the pseudo-element at the left */
    width: 100%; /* Set the width of the pseudo-element to 100% */
    height: 100%; /* Set the height of the pseudo-element to 50% to create a half-filled circle */
 /* Create a curved bottom edge */

  }
  
  .circle-container:hover::before {
    background-color: rgba(0, 0, 255, 0.819); /* Semi-transparent blue */
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite; /* Add animation for the wave effect, infinite loop */
  }
  
  /* Animation for the wave effect */
  @keyframes waterwave {
    0% {
      transform: translateY(0px);
      border-radius: 10% 10% 40% 40%;
    }
    25% {
      transform: translateY(-65px);
      border-radius: 0% 0% 10% 80%;
    }
    50% {
      transform: translateX(80px);
      border-radius: 80% 10% 90% 90%;
    }
    75% {
      transform: translatY(-105px);
      border-radius: 90% 90% 10% 80%;
    }
    100% {
      transform: translateY(0px);
      border-radius: 10% 10% 50% 50%;
    }
  }
  @media only screen and (max-width: 375px) {
    .circle-container {
      top: 50.5%;  
      left: 24.9%;
      width: 14vw; 
      height: 14vw; 
      border-radius: 50%; /* Make it a circle */
      overflow: hidden;
      contain: layout;
    }
    
    .Asuimage {
      top: 49.4%;  
      left: 21.9%;
      width: 14vw; 
      height: 14vw; 
      border-radius: 50%;
      overflow: hidden;
    }
    .Asuimage img {
      width: 14vw; 
      height: 14vw; 
      border-radius: 50%;
      overflow: hidden;
    }
  
    .circle-container::before {
      content: "";
      position: absolute;
      top: 35%;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 255, 0.819);
      border-radius: 90% 30% 60% 70%;
      animation: waterwave 5s infinite;
    }
    .view-text {
      color: white; /* Change text color to white on hover */
  }
    
  }
  /* Mobile portrait (less than 480px) */
  @media only screen and (min-width: 375px) and (max-width: 479px) {
    .circle-container {
      top: 49.5%;  
      left: 21.9%;
      width: 12vw; 
      height: 12vw; 
  }
  
  .Asuimage {
    top: 49.5%;  
    left: 21.9%;
    width: 12vw; 
    height: 12vw; 
  }
  .Asuimage img {
    top: 49.5%;  
    left: 21.9%;
    width: 12vw; 
    height: 12vw; 
  }
  .circle-container::before {
    content: "";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 255, 0.819);
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite;
  }
  .view-text {
    color: white; /* Change text color to white on hover */
}
  
  }
  /* Mobile landscape (less than 768px) */
  @media only screen and (min-width: 479px) and (max-width: 600px) {
    .circle-container {
      top: 50%;  
      left: 21.9%;
      width: 10vw; 
      height: 10vw; 
  }
  
  .Asuimage {
    top: 50%;  
    left: 21.9%;
    width: 10vw; 
    height: 10vw; 
  }
  .Asuimage img {
    top: 50%;  
    left: 21.9%;
    width: 10vw; 
    height: 10vw; 
  }
  .circle-container::before {
    content: "";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 255, 0.819);
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite;
  }
  .view-text {
    color: white; /* Change text color to white on hover */
}
     
  }
  @media only screen and (min-width: 600px) and (max-width: 767px) {
    .circle-container {
      top: 46.5%;  
      left: 16.9%;
      width: 9vw; 
      height: 9vw; 
  }
  
  .Asuimage {
    top: 46.5%;  
    left: 16.9%;
    width: 9vw; 
    height: 9vw; 
  }
  .Asuimage img {
    top: 46.5%;  
    left: 16.9%;
    width: 9vw; 
    height: 9vw; 
  }
  .circle-container::before {
    content: "";
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 255, 0.819);
    border-radius: 90% 30% 60% 70%;
    animation: waterwave 5s infinite;
  }
  .view-text {
    color: white; /* Change text color to white on hover */
}
     
  }
  
  /* Tablet portrait (less than 992px) */
  @media only screen and (min-width: 767px) and (max-width: 991px) {
    .circle-container {
      top: 46.8%;  
      left: 15.9%;
      width: 7vw; 
      height: 7vw; 
  }
  
  .Asuimage {
    top: 46.8%;  
    left: 15.9%;
    width: 7vw; 
    height: 7vw; 
  }
  .Asuimage img {
    top: 46.8%;  
    left: 15.9%;
    width: 7vw; 
    height: 7vw; 
  }
    
  }
  
  /* Tablet landscape (less than 1200px) */
  @media only screen and (min-width: 991px) and (max-width: 1200px) {
    .circle-container {
      top: 46.6%;  
      left: 12.9%;
      width: 6vw; 
      height: 6vw; 
  }
  
  .Asuimage {
    top: 46.6%;  
    left: 12.9%;
    width: 6vw; 
    height: 6vw; 
  }
  .Asuimage img {
    top: 46.6%;  
    left: 12.9%;
    width: 6vw; 
    height: 6vw; 
  }
    
    
  }
   @media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .circle-container {
      top: 45.8%;  
      left: 12.9%;
      width: 5.5vw; 
      height: 5.5vw; 
  }
  
  .Asuimage {
    top: 45.8%;  
    left: 12.9%;
    width: 5.5vw; 
      height: 5.5vw; 
  }
  .Asuimage img {
    top: 45.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; 
  }
  }
  
   @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .circle-container {
      top: 46.8%;  
      left: 12.9%;
      width: 5.5vw; 
      height: 5.5vw; 
  }
  
  .Asuimage {
    top: 46.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; }

  .Asuimage img {
    top: 46.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; 
  }
  
  }
  @media only screen and (min-width: 1600px) and (max-width: 2550px) {
    .circle-container {
      top: 46.8%;  
      left: 12.9%;
      width: 5.5vw; 
      height: 5.5vw; 
  }
  
  .Asuimage {
    top: 46.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; }

  .Asuimage img {
    top: 46.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; 
  }
  
  }
  
  /*4K*/
  @media only screen and (min-width: 2550px) and (max-width: 3000px) {
    .circle-container {
      top: 46.8%;  
      left: 12.9%;
      width: 5.5vw; 
      height: 5.5vw; 
  }
  
  .Asuimage {
    top: 46.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; }

  .Asuimage img {
    top: 46.8%;  
    left: 12.9%;
    width: 5.5vw; 
    height: 5.5vw; 
  }
  }
  



/*____________________________________________________ABOUT ME_(1ST PAGE)__________________________________________________________________/
*/

.about-page {
  position: absolute;
  left: 0;
  top: 100%; /* Initially, position it outside the viewport */
  width: 100%;
  height: 140%;
  text-align: center;
  overflow: hidden;
  background-color: #f5f5f5;
  z-index: 2; /* Set z-index higher than homepage */
  transition: top 0.01s ease-in-out; /* Apply transition to 'top' property */
  display: flex;
  justify-content: center;
  align-items: center; 
  animation: fade-in-slide6 1s linear forwards;
  animation-timeline: view()
}

@keyframes fade-in-slide6 {
  from {  clip-path: ellipse( 163% 105% at 50% 105%);

  }
  to {      clip-path: ellipse( 83% 105% at 50% 105%);
  }
}
.about-content {
  padding: 20px;
  overflow: hidden;
  

}
@media only screen and (max-width: 375px) {
  .about-page {
    position: absolute;
    left: 0;
    top: 100%; /* Initially, position it outside the viewport */
    width: 100%;
    height: 140%;
  }
  @keyframes fade-in-slide6 {
    from {  clip-path: ellipse( 163% 105% at 50% 105%);
  
    }
    to {      clip-path: ellipse( 133% 100% at 50% 100%);
    }
  }
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .about-page {
    position: absolute;
    left: 0;
    top: 100%; /* Initially, position it outside the viewport */
    width: 100%;
    height: 140%;
  }
  @keyframes fade-in-slide6 {
    from {  clip-path: ellipse( 163% 105% at 50% 105%);
  
    }
    to {      clip-path: ellipse( 133% 100% at 50% 100%);
    }
  }
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .about-page {
    position: absolute;
    left: 0;
    top: 100%; /* Initially, position it outside the viewport */
    width: 100%;
    height: 140%;
  }
  @keyframes fade-in-slide6 {
    from {  clip-path: ellipse( 163% 105% at 50% 105%);
  
    }
    to {      clip-path: ellipse( 133% 100% at 50% 100%);
    }
  }
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about-page {
    position: absolute;
    left: 0;
    top: 100%; /* Initially, position it outside the viewport */
    width: 100%;
    height: 140%;
  }
  @keyframes fade-in-slide6 {
    from {  clip-path: ellipse( 163% 105% at 50% 105%);
  
    }
    to {      clip-path: ellipse( 133% 100% at 50% 100%);
    }
  }
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}
.About-Me {
  font-size: 14vw;
  color:rgba(64, 71, 77, 0.17);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: bold;
  position: absolute;
  top: 280px;
  left: 15vw;
  overflow: hidden;

}
@media only screen and (max-width: 375px) {
  .About-Me {
    color:rgba(64, 71, 77, 0.17);
    font-size: 16vw;
    top: 180px;
    left: 15%;
  }
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .About-Me {
    color:rgba(64, 71, 77, 0.17);
    font-size: 16vw;
    top: 180px;
    left: 15%;
  }
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .About-Me {
    font-size: 16vw;
    top: 180px;
    left: 15%;
  }
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .About-Me {
    font-size: 16vw;
    top: 180px;
    left: 15%;
  }
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}


.myself {
  /* font-size: 34px;   */
  font-size: 2vw;
  color: rgb(0, 0, 0);
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.5; 
  position: absolute;
  left: 220px;
  top: 390px;
  max-width: 50%;
  text-align: left;
  overflow: hidden;
}

@media only screen and (max-width: 375px) {
  .myself {
    /* font-size: 34px;   */
    font-size: 3.3vw;
    color: rgb(0, 0, 0);
    left: 80px;
    top: 200px;
    max-width: 75%;
    text-align: left;
    overflow: hidden;
  }
   

}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .myself {
    /* font-size: 34px;   */
    font-size: 3.3vw;
    color: rgb(0, 0, 0);
    left: 80px;
    top: 200px;
    max-width: 75%;
    text-align: left;
    overflow: hidden;
  }
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .myself {
    /* font-size: 34px;   */
    font-size: 3.3vw;
    color: rgb(0, 0, 0);
    left: 80px;
    top: 200px;
    max-width: 75%;
    text-align: left;
    overflow: hidden;
  }
   
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  
  .myself {
    /* font-size: 34px;   */
    font-size: 3.3vw;
    color: rgb(0, 0, 0);
    left: 80px;
    top: 200px;
    max-width: 75%;
    text-align: left;
    overflow: hidden;
  }
   
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}

.myself1 {
  font-size: 1.8vw;  
  font-size: 1.43vw;
  color: rgb(0, 0, 0);
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.7; 
  position: absolute;
  left: 60px;
  top: 664px;
  max-width: 59%;
  text-align: left;
  z-index: 3;
  overflow: hidden;
}
@media only screen and (max-width: 375px) {
  .myself1 {
    font-size: 3vw;
    left: 18px;
    top: 314px;
    max-width: 50%;
    text-align: left;
    z-index: 3;
    overflow: hidden;
  }
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .myself1 {
    font-size: 3vw;
    left: 18px;
    top: 314px;
    max-width: 50%;
    text-align: left;
    z-index: 3;
    overflow: hidden;
  }
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .myself1 {
    font-size: 3vw;
    left: 18px;
    top: 314px;
    max-width: 50%;
    text-align: left;
    z-index: 3;
    overflow: hidden;
  }
}
   
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .myself1 {
    font-size: 3vw;
    left: 18px;
    top: 314px;
    max-width: 50%;
    text-align: left;
    z-index: 3;
    overflow: hidden;
  }
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}

.aboutcircle {
  width: 29vw;
/* height: 550px; */
height: 39vw;
background-color: rgb(30, 32, 48);
clip-path: ellipse( 80% 92% at 36% -1%);

position: absolute;
top: 49.2%;
left: 67.3%;
overflow: hidden;
animation: fade-in  linear;
animation-timeline: view()

}
@media only screen and (max-width: 375px) {
  .aboutcircle {
    width: 45vw;
  /* height: 550px; */
  height: 63vw;
  background-color: rgb(30, 32, 48);
  clip-path: ellipse( 90% 96% at 30% -3%);
  
  position: absolute;
  top: 29.5%;
  left: 54.7%;
  overflow: hidden;
  animation: fade-in  linear;
  animation-timeline: view()
  
  }
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .aboutcircle {
    width: 45vw;
  /* height: 550px; */
  height: 63vw;
  background-color: rgb(30, 32, 48);
  clip-path: ellipse( 90% 96% at 30% -3%);
  
  position: absolute;
  top: 29.5%;
  left: 54.7%;
  overflow: hidden;
  animation: fade-in  linear;
  animation-timeline: view()
  
  }
   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .aboutcircle {
    width: 45vw;
  /* height: 550px; */
  height: 63vw;
  background-color: rgb(30, 32, 48);
  clip-path: ellipse( 90% 96% at 30% -3%);
  
  position: absolute;
  top: 29.5%;
  left: 54.7%;
  overflow: hidden;
  animation: fade-in  linear;
  animation-timeline: view()
  
  }
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}


.aboutimage {
  position: absolute;
  top: 35.5%; /* Adjust the top position as needed */
  left: 55%; /* Adjust the left position as needed */
  width:42vw; /* Adjust width */
  height: 42vw; /* Adjust height */
  rotate: -10deg;
  overflow: hidden;
  clip-path: ellipse( 100% 112% at 36% -1%);
  z-index: 1;
  animation: fade-in 1s linear;
  animation-timeline: view()

}

@keyframes fade-in {
  from{scale: .7; opacity: 0.9;}
  to{scale:1; opacity: 1;}
  
}


.popOut {
  animation: popOut 1.5s ease forwards;
}

.fadeOutCircle {
  animation: fadeOutCircle 2s ease forwards;
}
@media only screen and (max-width: 375px) {
  .aboutimage {
    position: absolute;
    top: 23.5%; /* Adjust the top position as needed */
    left: 34%; /* Adjust the left position as needed */
    width: 67vw; /* Adjust width */
    height: 69vw; /* Adjust height */
  }
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .aboutimage {
    position: absolute;
    top: 23.5%; /* Adjust the top position as needed */
    left: 34%; /* Adjust the left position as needed */
    width: 67vw; /* Adjust width */
    height: 69vw; /* Adjust height */
  }
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .aboutimage {
    position: absolute;
    top: 23.5%; /* Adjust the top position as needed */
    left: 34%; /* Adjust the left position as needed */
    width: 67vw; /* Adjust width */
    height: 69vw; /* Adjust height */}
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .aboutimage {
    position: absolute;
    top: 23.5%; /* Adjust the top position as needed */
    left: 34%; /* Adjust the left position as needed */
    width: 67vw; /* Adjust width */
    height: 69vw; /* Adjust height */}

}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}





.btn {
  position: absolute;
  font-size: 1.4vw;
  color: rgb(0, 0, 0);
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: transparent;
  border: 1.2px solid black;
  border-radius: 50px;
  left: 23%;
  top: 88%;
  width: 18vw; 
  height: 3.5vw;
  overflow: hidden;
  cursor: pointer;
  transition:  1s ease-out;
 

}

.btn:hover {
  color: white;
  
}
.btn .btn-text {
  position: relative;
  z-index: 1;
}
.btn:hover .btn-bg {
  color: white;

  background-position: center;
}

.btn .btn-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('https://web.archive.org/web/20160312084140im_/http://splatoon.nintendo.com/assets/img/nav-bg-fill-blue.png?1443460871');
  background-repeat: repeat-x;
  background-position: 0 -100%;
  transition: background-position 0.5s ease;
  z-index: 0;
  
}
.horizontal-line {
  position: absolute;
  top: 99%; 
  left: 10%;
  width: 80%;
  height: 2px; /* Adjust the height of the line as needed */
  background-color: rgba(0, 0, 0, 0.17); /* Change the color of the line */
  overflow: hidden;

}

@keyframes popOut {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeOutCircle {
  from {
    opacity: 0; /* Start with full opacity */
  }
  to {
    opacity: 1; /* Fade out to fully transparent */
  }
}
@media only screen and (max-width: 375px) {
  .btn {
    position: absolute;
    font-size: 2vw;
    color: rgb(0, 0, 0);
    left: 55%;
    top: 58%;
    width: 42vw; 
    height: 13vw;
  }
 
}
@media only screen and (min-width: 375px) and (max-width: 479px) {
  
.btn {
  position: absolute;
  font-size: 2vw;
  color: rgb(0, 0, 0);
  left: 55%;
  top: 58%;
  width: 42vw; 
  height: 13vw;
}
.horizontal-line {
  position: absolute;
  top: 86%; 
  left: 10%;
  width: 80%;
  height: 2px; /* Adjust the height of the line as needed */
  background-color: rgba(0, 0, 0, 0.17); /* Change the color of the line */
  overflow: hidden;

}
 
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  .btn {
    position: absolute;
    font-size: 2vw;
    color: rgb(0, 0, 0);
    left: 55%;
    top: 58%;
    width: 42vw; 
    height: 13vw;
  }
 
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
 
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}


/*____________________________________________________work page_(2nd PAGE)__________________________________________________________________/
*/




.work-page{
  position: absolute;
  left: 0;
  top: 190%; /* Initially, position it outside the viewport */
  width: 100%;
  height: 180%;
  overflow: hidden;
  text-align: center;
  background-color: #f5f5f5;
  z-index: 1; /* Set z-index higher than homepage */
  transform: translateX(0); /* Add this line to reset the initial position */
  transition: transform 4s; /* Add transition property */
  animation: fade-in-slide5 1s linear forwards;
  animation-timeline: view()
  
}

@keyframes fade-in-slide5 {
  from {   clip-path: ellipse( 280% 95% at 50% 0%);

  }
  to {  clip-path: ellipse( 100% 95% at 50% 0%);

  }
}
@media only screen and (max-width: 375px) {
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  
.work-page{
  position: absolute;
  left: 0;
  top: 190%; /* Initially, position it outside the viewport */
  width: 100%;
  height: 140%;
  overflow: hidden;
  text-align: center;
  background-color: #f5f5f5;
  z-index: 1; /* Set z-index higher than homepage */
  transform: translateX(0); /* Add this line to reset the initial position */
  transition: transform 4s; /* Add transition property */
  animation: fade-in-slide5 1s linear forwards;
  animation-timeline: view()
  
}

   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}

.work-content {
  padding: 20px;
  overflow: hidden;

}

.worktext{
  font-size: 14vw; /* Adjust the font size to a reasonable value */
  color: rgba(64, 71, 77, 0.17);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: bold;
  position: absolute;
  top: 150px;
  left: 24.3vw;
  overflow: hidden;
}
@media only screen and (max-width: 375px) {
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .worktext{
    font-size: 14vw; /* Adjust the font size to a reasonable value */
    color: rgba(64, 71, 77, 0.27);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: bold;
    position: absolute;
    top: 150px;
    left: 90px;
    overflow: hidden;
  }   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}


.workimage {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  height: 17vw;
  width: 100%;
  top: 460px;
  overflow: hidden;

}
.gallery-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  height: 17vw;
  width: 100%;
  top: 460px;
  overflow: hidden;
  display: none;
}

  .image1 {
    border-color: hsl(25, 15%, 85%); /* Light Gray border for image 1 */
  }
  
  .image2 {
    border-color: #7c7c7c; /* Silver border for image 2 */
  }
  
  .image3 {
    border-color: silver; /* Gainsboro border for image 3 */
  }
  
  .image4 {
    border-color:rgba(222, 184, 135, 0.171); /* Platinum border for image 4 */
  }
  
  .image5 {
    border-color: rgba(128, 128, 128, 0.641); /* Linen border for image 5 */
  }
  
  .image6 {
    border-color:rgba(3, 102, 141, 0.315); /* Dark Gray border for image 6 */
  }
  
  .image7 {
    border-color: black; /* Light Red border for image 7 */
  }
  
  .image8 {
    border-color: hsl(25, 15%, 85%); /* Medium Yellow border for image 8 */
  }

.workimage .image {
  flex: 1;
  margin-right: 2.4vw;
  border-width: 2.4vw;
  border-style: solid;
}

.workimage .image:last-child {
  margin-right: 0;
}

.workimage .image img {
  width: 100%;
  height: auto;
}

.button {
  position: absolute;
  font-size: 1.4vw;
  color: rgb(0, 0, 0);
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: transparent;
  border: 1.2px solid black;
  border-radius: 50px;
  left: 42%;
  top: 80%;
  width: 20%; 
  height: 4%;
  overflow: hidden;
  cursor: pointer;
  transition:  1s ease-out
}

.button:hover {
  color: white;
  
}
.button .button-text {
  position: relative;
  z-index: 1;
}
.button:hover .button-bg {
  color: white;

  background-position: center;
}

.button .button-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('https://web.archive.org/web/20160312084140im_/http://splatoon.nintendo.com/assets/img/nav-bg-fill-blue.png?1443460871');
  background-repeat: repeat-x;
  background-position: 0 -100%;
  transition: background-position 0.5s ease;
  z-index: 0;
}


@media only screen and (max-width: 375px) {
 
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .workimage {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    height: 34vw;
    width: 200vw;
    top: 240px;
  
  }
  .workimage .image {
    flex: 1;
    margin-right: 20px;
    border-width: 20px;
    border-style: solid;
  }
  
  .gallery-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    height: 34vw;
    width: 200vw;
    top: 240px;
  }
  .item-1 {
    border-color: hsl(25, 15%, 85%); /* Light Gray border for item 1 */
  }
  
  .item-2 {
    border-color: #7c7c7c; /* Silver border for item 2 */
  }
  
  .item-3 {
    border-color: silver; /* Gainsboro border for item 3 */
  }
  
  .item-4 {
    border-color: rgba(222, 184, 135, 0.171); /* Platinum border for item 4 */
  }
  
  .item-5 {
    border-color: rgba(128, 128, 128, 0.641); /* Linen border for item 5 */
  }
  
  .item-6 {
    border-color: rgba(3, 102, 141, 0.315); /* Dark Gray border for item 6 */
  }
  
  .item-7 {
    border-color: black; /* Light Red border for item 7 */
  }
  
  .item-8 {
    border-color: hsl(25, 15%, 85%); /* Medium Yellow border for item 8 */
  }
  
  .gallery-container .gallery-item {
    flex: 1;
    margin-right: 20px;
    border-width: 20px;
    border-style: solid;
  }
  
  .gallery-container .gallery-item:last-child {
    margin-right: 0;
  }
  
  .gallery-container .gallery-item img {
    width: 100%;
    height: auto;
  }
  .button {
    border-radius: 50px;
    left: 40%;
    top: 85%;
    width: 20%; 
    height: 4%;
  }
  

}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {

}
@media only screen and (min-width: 600px) and (max-width: 767px) {
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}


/*footer________________________________________________________________________________________________________________________________________________________*/
footer {
  position: absolute;
  left: 0;
  top: 320%; /* Initially, position it outside the viewport */
  width: 100%;
  height: 150%;
  text-align: center;
  background-color: rgba(30, 32, 48);
  z-index: 2; /* Set z-index higher than homepage */
  transition: top 0.01s ease-in-out; /* Apply transition to 'top' property */
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 0;
  overflow-x: hidden;
}

b {
  position: absolute;
  top: 45%;
  left: 8%;
  font-size: 6.2vw;
  width: 80%;
  font-weight: bold;
  color: #ffffff;
  animation: fade-in-slide0 1s linear forwards;
  animation-timeline: view()
}

@keyframes fade-in-slide0 {
  from {
    opacity: 0.7;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(-10%);
  }
}

b1 {
  position: absolute;
  top: 55%;
  left: 0%;
  font-size: 6.2vw;
  width: 50%;
  font-weight: bold;
  color: #ffffff;
  animation: fade-iN 1s linear forwards;
  animation-timeline: view()
}

@keyframes fade-iN {
  from {   left: 0%;

  }
  to {  left: 0%;
  
  }
}


.horizontalline {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 80%;
  height: 2px; /* Adjust the height of the line as needed */
  background-color: rgba(255, 255, 255, 0.574); /* Change the color of the line */
}

.footerimg{
  position:absolute;
  width: 9vw;
  height: 9vw;
  border-radius: 50%;
  left: 11%;
  top: 45%;
  animation: fade-in-slide1 1s linear forwards;
  animation-timeline: view()
}

@keyframes fade-in-slide1 {
  from {
     transform: translateX(100%);
  }
  to {
     transform: translateX(-10%);
  }
}


.button2 {
  position: absolute;
  /* font-size: 24px; */
  font-size: 1.4vw;
  color: rgb(255, 255, 255);
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: transparent;
  border: 1.2px solid rgb(255, 255, 255);
  border-radius: 50px;
  bottom: 20%;
  left: 10%;
  width: 18vw; 
  height: 3.5vw;
  overflow: hidden;
  cursor: pointer;
  transition:  1s ease-out

}


.button2 .button2-text {
  position: relative;
  z-index: 1;
}
.button2:hover .button2-bg{
  color: white;

  background-position: center;
}

.button2 .button2-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('https://web.archive.org/web/20160312084140im_/http://splatoon.nintendo.com/assets/img/nav-bg-fill-blue.png?1443460871');
  background-repeat: repeat-x;
  background-position: 0% -100%;
  transition: background-position 0.5s ease;
  z-index: 0;
}


.button3 {
  position: absolute;
  bottom: 20%;
  left: 30%;
}
.button4 {
  position: absolute;
  bottom: 24%;
  left: 70%;
  border-radius: 50%;
  height: 10vw;
  width: 10vw;
  z-index: 3;
  background-color: rgba(30, 32, 48);
}
.button4 .button2-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0;
  background-image: url('https://web.archive.org/web/20160312084140im_/http://splatoon.nintendo.com/assets/img/nav-bg-fill-blue.png?1443460871');
  background-repeat: repeat-x;
  background-position: 0% 1800%;
  transition: background-position 0.8s ease;
  z-index: 0;
}


.button5 {
  position: absolute;
  font-size: 1.4vw;
  color: #ffffff;
  bottom: 1.5%;
  left: 79%;
  transition: background-color 0.3s ease;
  border-color: rgba(30, 32, 48);
}



a {
  position: absolute;  
  margin-top: 10px;
  font-size: 1vw;
  color: #ffffff;
  left: 10%;
  bottom: 3%;
  
}


@media only screen and (max-width: 375px) {
  
  footer {
    top: 280%; /* Initially, position it outside the viewport */
  }
  b {
    top: 40%;
    left: 0%;
    font-size: 8vw;
    width: 92%;
  }
  b1 {
    top: 48%;
    left: 0%;
    font-size: 8vw;
    width: 56%;
  }
  
  .horizontalline {
    bottom: 35%;
  }
  
  .footerimg{
    position:absolute;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    left: 66.5%;
    top: 45.6%;
    opacity: 1;
  }

  .button2 {
    font-size: 3.5vw;
    bottom: 28%;
    left: 10%;
    width: 48vw; 
    height: 8vw;
  }
  
  .button3 {
     bottom: 21%;
    left: 10%;
  }
  .button4 {
     bottom: 20.5%;
    left: 65%;
    height: 30vw;
    width: 30vw;
    z-index: 3;
  }

  
  .button5 {
    font-size: 4vw;
    bottom: 3%;
    left: 57%;
  }
  
  
  
  a {
    position: absolute;  
    margin-top: 10px;
    font-size: 2vw;
    left: 10%;
    bottom: 3.8%;
    
  }
  
  

   
}
/* Mobile portrait (less than 480px) */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  
  footer {
    top: 280%; /* Initially, position it outside the viewport */
  }
  b {
    top: 40%;
    left: 0%;
    font-size: 8vw;
    width: 92%;
  }
  b1 {
    top: 48%;
    left: 0%;
    font-size: 8vw;
    width: 56%;
  }
  
  .horizontalline {
    bottom: 35%;
  }
  
  .footerimg{
    position:absolute;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    left: 66.5%;
    top: 45.6%;
    opacity: 1;
  }

  .button2 {
    font-size: 3.5vw;
    bottom: 28%;
    left: 10%;
    width: 48vw; 
    height: 8vw;
  }
  
  .button3 {
     bottom: 21%;
    left: 10%;
  }
  .button4 {
     bottom: 20.5%;
    left: 65%;
    height: 30vw;
    width: 30vw;
    z-index: 3;
  }

  
  .button5 {
    font-size: 4vw;
    bottom: 3%;
    left: 57%;
  }
  
  
  
  a {
    position: absolute;  
    margin-top: 10px;
    font-size: 2vw;
    left: 10%;
    bottom: 3.8%;
    
  }
  
  

   
}
/* Mobile landscape (less than 768px) */
@media only screen and (min-width: 479px) and (max-width: 600px) {
  
  footer {
    top: 280%; /* Initially, position it outside the viewport */
  }
  b {
    top: 40%;
    left: 0%;
    font-size: 8vw;
    width: 92%;
  }
  b1 {
    top: 48%;
    left: 0%;
    font-size: 8vw;
    width: 56%;
  }
  
  .horizontalline {
    bottom: 35%;
  }
  
  .footerimg{
    position:absolute;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    left: 66.5%;
    top: 45.6%;
    opacity: 1;
  }

  .button2 {
    font-size: 3.5vw;
    bottom: 28%;
    left: 10%;
    width: 48vw; 
    height: 8vw;
  }
  
  .button3 {
     bottom: 21%;
    left: 10%;
  }
  .button4 {
     bottom: 20.5%;
    left: 65%;
    height: 30vw;
    width: 30vw;
    z-index: 3;
  }

  
  .button5 {
    font-size: 4vw;
    bottom: 3%;
    left: 57%;
  }
  
  
  
  a {
    position: absolute;  
    margin-top: 10px;
    font-size: 2vw;
    left: 10%;
    bottom: 3.8%;
    
  }
  
  

   
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
   
}

/* Tablet portrait (less than 992px) */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  
}

/* Tablet landscape (less than 1200px) */
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  
}
 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {

}
@media only screen and (min-width: 1600px) and (max-width: 2550px) {
}

/*4K*/
@media only screen and (min-width: 2550px) and (max-width: 3000px) {
}
