
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    margin: 0;
    font-family: "Poppins", serif;
  }
  
::-webkit-scrollbar {
    display: none;
  }
  
  .portfolio-min-h-screen {
    min-height: 92vh;
  }
  
  .portfolio-bg-black {
    background-color: black;
  }
  
  .portfolio-p-8 {
    padding: 2rem;
  }
  
  .portfolio-flex {
    display: flex;
  }
  
  .portfolio-flex-wrap {
    flex-wrap: wrap;
  }
  
  .portfolio-gap-4 {
    gap: 1rem;
  }
  
  .portfolio-mb-8 {
    margin-bottom: 2rem;
  }
  
  button {
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  button.portfolio-bg-white {
    background-color: white;
    color: black;
  }
  
  button.portfolio-text-white {
    color: white;
  }
  
  button.portfolio-text-white-80 {
    color: rgba(255, 255, 255, 0.8);
  }
  
  button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .portfolio-grid {
    display: grid;
  }
  
  .portfolio-gap-6 {
    gap: 1.5rem;
  }
  
 
  
  .portfolio-lg-grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-group {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #181818;
    border:2px solid rgba(51, 50, 50, 0.559);
    transition: transform 0.3s ease, opacity 0.3s ease;
    height: 350px;
    max-width: 1000px;
}
  
  .portfolio-group:hover .portfolio-scale-hover {
    transform: scale(1.05);
  }
  
  .portfolio-scale-hover {
    transition: transform 0.3s;
  }
  
  .portfolio-aspect-3-2 {
    aspect-ratio: 3 / 2;
  }
  
  .portfolio-object-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .portfolio-bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }
  
  .portfolio-absolute {
    position: absolute;
  }
  
  .portfolio-inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .portfolio-bottom-0 {
    bottom: 10%;
    height: 90%;
    width: 100%;
    display: flex;
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
  /* .portfolio-p-4 {
    padding: 1rem;
  } */
  
  .portfolio-text-xl {
    font-size: 6rem;
  }
  h3{
    margin:0px;
    padding:0;
  }
  .portfolio-text-white {
    color: rgba(255, 255, 255, 0.493);
  }
  
  .portfolio-text-white-80 {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .portfolio-font-semibold {
    font-weight: 600;
  }
  
  .portfolio-description {
    /* font-size: 0.875rem; */
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0rem;
    transition: opacity 0.3s;
    text-align: center;
    padding: 0 1rem;
  }
  /* .about::before{
    left:20px;
    top:20px;
    height:90%;
    width:3px;

  } */

  .portfolio-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px; /* Optional: Add rounded corners */
  }
  
  .portfolio-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out;
    transform: scale(1.5);
  }
  
  .portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2); /* Start slightly zoomed in */
    transition: opacity 0.5s ease-in-out, transform 0.4s ease-in-out;
    pointer-events: none;
  }
  
  .portfolio-group:hover .portfolio-video {
    opacity: 1;
    transform: scale(1); /* Smooth zoom-out effect */
  }
  
  .portfolio-group:hover .portfolio-image {
    opacity: 0;
    transform: scale(0.95); /* Slight shrink for the image */
  }
  
  .portfolio-group {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .portfolio-group:hover {
    transform: scale(1.03); /* Slightly enlarge the entire card */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
  }
  
  .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    transition: opacity 0.3s ease-in-out;
  }
  
  .portfolio-group:hover .portfolio-overlay {
    opacity: 0.7; /* Slightly enhance overlay visibility on hover */
  }
  @media (max-width:1100px) {
    .portfolio-sm-grid-cols-2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .portfolio-links{
    display: flex;
    gap:0.5rem;
    position: absolute;
    bottom:0px;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    background-color: #181717;
    outline: 3px #181717 solid;
    outline-offset: -3px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 400ms;
  }
  
  .button .text {
    color: white;
    font-weight: 700;
    font-size: 1em;
    transition: 400ms;
  }
  
  .button svg path {
    transition: 400ms;
  }
  
  .button:hover {
    background-color: transparent;
    outline: 1px white solid;
    outline-offset: -1px;
  }
  
  /* .button:hover svg path {
    fill: black;
  } */
   @media (max-width:680px) {
    .portfolio-text-xl {
      font-size: 2.25rem;
    }
   }
   @media (max-width:857px) {
    .portfolio-text-xl {
      font-size: 5.25rem;
    }
   }
   @media (max-width:515px) {
    .portfolio-text-xl {
      font-size:2.25rem;
    }
    .portfolio-group{
      height:280px;
    }
   }
   .portfolio-progress{
    position: absolute;
    right:0;
    top:0;
    color:white;
    border:1px solid rgb(45, 45, 45);
    padding:5px 10px;
    border-radius: 0 0 0 5px;
    background-color: rgb(45, 45, 45);
    font-size: 12px;
   }
   /* Default state: hide description and title */
.portfolio-description,
.portfolio-text-xl {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show description and title on hover */
.portfolio-group:hover .portfolio-description,
.portfolio-group:hover .portfolio-text-xl {
  opacity: 0;
  transform: translateY(10px); /* Optional: slide-in effect */

}

/* Optional: Hide video by default */
.portfolio-video {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show video on hover */
.portfolio-group:hover .portfolio-video {
  opacity: 1;
}

/* Blur layer style */
.portfolio-overlay-blur {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.19); /* Semi-transparent black for the blur effect */
  backdrop-filter: blur(8px); /* Blur effect */
  transition: opacity 0.3s ease;
  opacity: 1; /* Visible by default */
  pointer-events: none; /* Ensure it doesn't block interactions */
}

/* On hover: hide the blur layer */
.portfolio-group:hover .portfolio-overlay-blur {
  opacity: 0;
}


@keyframes animateProjectName {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.projects {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin: 0 16px;
  place-self: start;
}
@media (min-width: 768px) {
  .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .projects {
    -moz-column-gap: 48px;
         column-gap: 48px;
    row-gap: 100px;
    margin: 0 48px;
  }
}
@media (min-width: 1440px) {
  .projects {
    -moz-column-gap: 200px;
         column-gap: 200px;
    margin: 0 100px;
  }
}

.project {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: none;
  transition: transform 0.35s cubic-bezier(0.56, 0.42, 0.28, 0.95), opacity 0.15s ease;
}
@media (min-width: 768px) {
  .project:nth-child(2) {
    margin-top: 20%;
  }
  .project:nth-child(3) {
    margin-top: -20%;
  }
}

.project__image {
  display: flex;
  align-items: flex-start;
  margin: 0 0 16px;
  overflow: hidden;
  background: #202020;
  border-radius: 20px;
  transition: border-radius 0.5s cubic-bezier(0.56, 0.42, 0.28, 0.95);
}

.project__image img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.56, 0.42, 0.28, 0.95);
}

.project__title,
.project__description {
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}

.project__title p {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  transition: transform 0.3s cubic-bezier(0.56, 0.42, 0.28, 0.95) 0.2s;
}

.project__description p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.56, 0.42, 0.28, 0.95);
}

.project.project--hovered .project__title p,
.project.project--hovered .project__description p {
  transform: translateY(150%);
}

.projects.projects--hovered .project:not(.project--hovered) {
  transform: scale(0.87);
  opacity: 0.4;
}

.project.project--hovered .project__image {
  border-radius: 50%;
}

.project.project--hovered .project__image img {
  transform: scale(1.12);
}/*# sourceMappingURL=projects.css.map */