body {
    margin: 0;
    padding-top: 70px;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #000;
}
html{
    scroll-behavior: smooth;
}

.container {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0a0b1138;
}

.background-video {
    position: fixed;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
    
}
.menu-btn {
  display: none;
}
.menuBtn{
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

.left{
    display: flex;
    align-items: center;
    z-index: 2001;
}
.left img{
    height: 40px;
    margin-right: 10px;
}
header ul{
    display: flex;
    justify-content: space-between;
    width: 30%;
    padding: 15px 15px;
    border-radius: 50px;
    background-color: rgba(17, 17, 110, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px #9697a065;
    list-style: none;
}

header ul li a{
    text-decoration: none;
    color: white;
    font-weight: 700;
    margin: 0 10px;
}
/*dropdown*/
/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 69, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(114, 127, 222, 0.3);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 1000;
  min-width: 150px;
}

.dropdown-menu li {
  text-align: left;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 30px;
  color: white;
  text-decoration: none;
 
}

.dropdown-menu li a:hover {
  background-color: #727fde;
  color: black;
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


.social-icons{
    display: flex;
    gap: 1rem;
   
}
.social-icons a{
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #727fde;
    color: whitesmoke;
    text-decoration: none;
    border-radius: 50%;
    transition: 0.3s;
}
.social-icons a:hover{
    background-color: #727fde;
    color: black;
    box-shadow: 0 0 15px #727fde65;
}
.blackhole{
    position: absolute;
    height: 100vh;
    top: 0;
    width: 100%;
    justify-content: center;
    mix-blend-mode: lighten;
}
.blackhole spline-viewer{
    width: 100%;
    margin-top: -8%;
   mix-blend-mode: lighten;
}
.new{
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
}
.new-info{
    position: absolute;
    left: 5%;
}
.new-info .new-info-title{
    color: #727fde;
    padding: 8px 5px;
    border: 1px solid #727fde78;
    width: 300px;
    background-color: rgba(0, 0, 69, 0.3);
    box-shadow: 0 0 5px #727fde65;
    border-radius: 50px;
}
.new-info h1{
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height: 70px;
    margin-top: 40px;
    margin-bottom: 30px;
}
.new-info p{
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 25px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  color: white;
  background-color: rgba(0, 0, 69, 0.3);
  border: 1px solid #727fde78;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 15px #727fde65;
  transition: 0.3s;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #727fde;
  color: black;
  box-shadow: 0 0 15px #727fde65;
}


/* gradient Design */
.gradient{
    background: linear-gradient(to right, #ff00cc, #3333ff, #00ffff, #33ff33, #ffff00, #ff9900, #ff00cc);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 3s linear infinite;
}
@keyframes gradientAnimation {
    to {
        background-position: 200% center;
    }
}
.new-video1{
    position: absolute;
    left: 0%;
}
.new-video1 video{
    height: 900px;
    mix-blend-mode: lighten;
}
.new-video{
    position: absolute;
    right: 0%;
}
.new-video video{
    height: 900px;
    mix-blend-mode: lighten;
}
.scroll-down {
    height: 50px;
    width: 30px;
    border: 2px solid lightgray;
    position: absolute;
    left: 49%;
    bottom: 8%;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.626);
  }
  .scroll-down::before,
  .scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid lightgray;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2s ease-in-out infinite;
  }
  .scroll-down::before {
    top: 10%;
    animation-delay: 0.5s;
  }
  
  @keyframes scroll-down {
    0% {
      /* top:20%; */
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      top: 90%;
      opacity: 0;
    }
  }
  .about-me {
    width: 100%;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-me title{
    font-size: 5rem;
    background-image: linear-gradient(rgb(133,133,133), rgb(255,255,255));
    background-clip: text;
    color: transparent;
    margin-bottom: 5%;
}
.bento-grid {
    position: relative;
    display: grid;
    height: 90vh;
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-template-areas:
        "intro intro tech"
        "time passion tech";
}
.card {
    background: linear-gradient(145deg, rgba(143, 143, 143, 0.14), rgba(116, 7, 7, 0.06));
    border: 1px solid rgba(187, 7, 7, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro {
    grid-area: intro;
    min-height: 300px;
}
.tech {
    grid-area: tech;
    min-height: 450px;
}
.time {
    grid-area: time;
    min-height: 220px;
}
.passion {
    grid-area: passion;
    min-height: 220px;
}
.card:hover {
    transform: translateY(-5px);
    border-color:transparent;
    box-shadow: 0 10px 30px rgba(196, 192, 192, 0.5);
}
/* spotlight effect */
.card::before {
    content: '';
    position: absolute;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}
.card:hover::before {
    opacity: 1;
}
.card-title {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 2rem;
    color: rgb(87, 131, 161);
    text-shadow: #c2270b;

}
.card-text {
    max-width: 30rem;
    line-height: 1.5;
    margin-top: 2rem;
    color: #ece5e5;
    font-weight: 300;
}
.bento-grid .background-img {
    position: absolute;
    inset: -1rem;
    width: 110%;
    height: 110%;
    object-fit: cover;
    z-index: -1;
}
.model-box {
    position: absolute;
    right: 1%;
    top: -25%;
    width: 20rem;
    height: 55rem;
}
.info-icon {
    width: 150%;
    height: 150%;
    mix-blend-mode: lighten;
}
.bento-grid .skills-group {
    position: absolute;
    bottom: 5%;
    left: 15%;
    width: 70%;
}
.card-list li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #f1eeee;
    position: relative;
    list-style: none;
}
.card-list li::before {
content: "✔ ";
color: teal; 
}
/*portfolio*/
.portfolio-section {
  padding: 4rem 2rem;
  background-color: transparent;
  color: #fff;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color : #0a8d0a;
}

/* GRID LAYOUT */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

/* CARD STYLING */
.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  background: rgba(14, 121, 153, 0.8);
}

.portfolio-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.5rem;
}

.portfolio-card ul {
  list-style: none;
  padding: 0;
}

.portfolio-card ul li {
  margin: 0.8rem 0;
  font-size: 1rem;
}

.portfolio-card ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.portfolio-card ul li a:hover {
  color: #ffdd57;
}


    /*videos*/
.video-section {
  margin-top: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.projects-journey {
  max-width: 900px;
  margin: auto;
  padding: 6rem 1.5rem;
}

.journey {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.journey-step {
  position: relative;
  margin-bottom: 3rem;
}

.step-dot {
  position: absolute;
  left: -10px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #ffd66b;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 214, 107, 0.6);
}

.journey-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.journey-step p {
  opacity: 0.85;
  line-height: 1.6;
}


.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider .list {
  display: flex;
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  animation: autorun 10s linear infinite;
  transition: filter 0.5s ease;
  animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1));
}

.slider .list .item video {
  margin-top: 4rem;
  width: 100%;
  border-radius: 2rem;
}

@keyframes autorun {
  from { left: 100%; }
  to { left: calc(var(--width) * -1); }
}

.slider:hover .item {
  animation-play-state: paused !important;
  filter: brightness(0.7);
}
.slider .item:hover {
  filter: brightness(1);
  scale: 1.2;
}
/*slider images*/
.image-slider{
    position: relative;
    margin-top: 3rem ;
    bottom: 5%;
    width: 60%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
    mix-blend-mode:difference;
    opacity: 0.7;
}
.image-slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.image-slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.image-slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.image-slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.image-slider .item:hover{
    filter: grayscale(0);
}

/*contact*/
.contact-section{
   min-height: 100vh;
   padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    position: relative;
}
.contact-section h1{
    position: absolute;
    top: 10%;
    left: 40%;
}
.box-icons{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.box-icons a{
    color: #00ffff;
    text-decoration: none;
    font-size: 20px;
    text-wrap: nowrap;
}
.box-icons i{
    color: #727fde;
    font-size: 30px;
    margin-right: 10px;
}

.contact-box p{
    max-width: 400px;
    margin-top: 30px;
    margin-bottom: 5px;
}
.contact-box input{
    padding: 8px 30px;
    background-color: lightgrey ;
    width: 80%;
    height: 25px;
    border: none;
    outline: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.contact-box ::placeholder{
    color: #000;
}
.contact-box button{
    margin-top: 30px;
    padding: 15px 30px;
    color: white;
    background-color: rgba(0, 0, 69, 0.3);
    border: 1px solid #727fde78;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px #727fde65;
    transition: 0.3s;
}
.contact-box button:hover{
    background-color: #727fde;
    color: black;
    box-shadow: 0 0 15px #727fde65;}


     .online-title {
      margin-bottom: 20px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #f1efef;
      text-transform: uppercase;
      font-size: 0.9rem;
    }
    

footer{
    display: flex;
    position: relative;
    height: 30px;
    bottom: 0;
    background-color:  rgba(255, 255, 255, 0.125);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgb(134, 119, 148);
    z-index: 999;
    justify-content: center;
    padding: 20px 40px;
    width: 100%;
    align-items: center;
    text-align: center;
}
hr{
    border: none;
    height: 2px;
    background-color: white;
    margin: 0;
    width: 100%;
}
footer h3{
    font-size: 20px;
    margin: 0;
    padding-left: 2%;
}
.boxi-cons{
    display: flex;
    gap: 2rem;
    padding-right: 2%;
}
.boxi-cons i {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    transition: color 0.5s ease;
}
.boxi-cons i:hover {
    color: #3c56e7;
}
/*blur effect animae*/
.autoblur{
    animation: autobluranimation linear both;
    animation-timeline: view();
}
@keyframes autobluranimation
{
    0%{
        filter: blur(40px);
        opacity: 0;
    }
    40%, 70%{
        filter: blur(0);
        opacity: 1;
    }
    100%{
        filter: blur(40px);
        opacity:0 ;
    }
}




@media (max-aspect-ratio: 16/9) {
  .background-video {
      width: auto;
      height: 100%;
  }
}
@media (min-aspect-ratio: 16/9) {
  .background-video {
      width: 100%;
      height: auto;
  }
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
  }
 .scroll-down{
    display: none;}
    
    header ul {
      position: fixed;
      top: 0;
      right: -100%; 
      width: 200px;
      background: rgba(10, 11, 20, 0.95);
    backdrop-filter: blur(15px);
      height: 15vh;
      display: flex;
      flex-direction: column;
      align-items : center;
      transition: right 0.4s ease-in-out;
      z-index: 9999;
  }
  header ul.active {
    right: 0;
    background: rgba(28, 14, 153, 0.8);
  }
  .menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px; 
    background: transparent;
    border: none;
    cursor: pointer;
    order: -1; 
  }
  .left{
    width: 100%;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
.social-icons{display: none;}
  .boxicons {
    gap: 20px;
  }
  .new-video{
    display: none;
  }
  .background-video,
  .blackhole,
  spline-viewer {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "tech"
      "time"
      "passion";
    gap: 2rem;
    height: auto;
  }
  .new {
    flex-direction: column;
    height: auto;
    padding: 3rem 1rem;
    text-align: center;
  }
  .new-video{display: none;}
  .new-video1{display: none;}
  .autoblur{
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }
  .new-info {
    position: relative;
    left: 0;
    margin-bottom: 2rem;
  }

  .new-info h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .new-info p {
    font-size: 20px;
    line-height: 22px;
  }

  .new-video video {
    height: 400px;
    width: 100%;
  }

  .model-box {
    position: relative; 
    top: 0;
    right: 50;
    width: 70%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .model-photo {
    width: 290px; 
    height: auto;
    border-radius: 20px;
  }

  .bento-grid .skills-group {
    position: relative;
    left: 0;
    bottom: 0;
    width: 80%;
    margin: 1rem auto;
    display: block;
  }
  .card-intro {
    min-height: 150px;
  }
  .card {
    min-height: 200px;
  }
  .card-text {
    max-width: 100%;
    font-size: 30px;
  }

  .image-slider {
    width: 90%;
  }

  .contact-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }

  .contact-section h1 {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
  }

  footer {
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
  }

  footer h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-aspect-ratio: 16/9) {
    .background-video {
        width: auto;
        height: 100%;
    }
}
@media (min-aspect-ratio: 16/9) {
    .background-video {
        width: 100%;
        height: auto;
    }
}
/*tablet*/


/*phone*/

@media screen and (max-width: 900px) {
  body {
    font-size: 14px;
    line-height: 1.4;
  }
  .autoblur{
    animation: none;
    filter: none;
    opacity: 1;
  }
  .menu-btn {
      display: flex;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3001;
    }

  .menu-btn span {
    display: block;
    width: 120%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s;
  }
  header ul.active{
    right: 0;
    font-size: 1.5rem;
  }
  .model-box {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }

  .model-photo {
    width: 150px;
    height: auto;
    border-radius: 50%;
  }

  header {
    position: fixed;
    height: 50px;
    padding: 0 15px;
    top: 0;
    justify-content: space-between;
    z-index: 1000;

  }
  header ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.35s ease;


   header h1{
    font-size: 20px;
   }
   header ul li a {
    font-size: 1.4rem;
    cursor: pointer;
  }
  .new-video{
    display: none;
  }
   .blackhole{
    display: none;
   }}
   .left {
    width: 100%;
    justify-content: center;
  }

  .left img {
    height: 30px;
  }
  /* Hero section */
  .new {
    padding-top: 80px;
    flex-direction: column;
    height: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem 3rem;
  }

  .new-info {
    position: static;
    text-align: center;
    width: 100%;
    left: 0;
  }
  .new-info .new-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;      
    margin: 0 auto 20px auto; 
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .new-info h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 20px;
  }

  .new-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5;
  }

  .social-icons{
    display: none;
  }
  .new-video video {
  display: none;
  }
  .scroll-down{
    display: none;
  }

  /* About-me grid */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "tech"
      "time"
      "passion";
    gap: 1.2rem;
    width: 95%;
    height: auto;
  }

  .card {
    padding: 1rem;
    min-height: auto;
    border-radius: 18px;

  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
  }
  .card-list li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  .skills-group{
    display: none;
  }

  /* Video slider */
  .slider {
    --width: 100%;
    --height: auto;
  }

  .slider .item video {
    width: 100%;
    height: auto;
  }

  /* Contact */
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
  }
  #menu-toggle:checked ~ ul {
    right: 0;
  }

  .contact-box {
    width: 100%;
  }

  .contact-box input {
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 1rem;
  }

  .boxi-cons {
    justify-content: center;
  }
  .background-img{
    opacity: 0.25;
    filter: blur(2px);
  }
  .background-video,
  .blackhole,
  spline-viewer {
    display: none;
  }
}



@media screen and (max-width: 700px) {
    .dropdown > a {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }
  
    .dropdown-menu {
      position: static; 
      display: none;    
      width: 100%;
      background: rgba(255, 255, 255, 0.05); 
      box-shadow: none;
      padding: 10px 0;
      text-align: center;
    }
  
    .dropdown.show-mobile .dropdown-menu {
      display: block;
    }
  
    .dropdown-menu li a {
      padding: 12px;
      font-size: 1.1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
  .menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between; 
    width: 30px;
    height: 22px; 
    background: transparent;
    padding: 0;
    border: none;
  }

  .menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s;
  }

  .new {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .new-info {
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-slider {
    width: 90%;
    --width: 80px; 
  }


@media screen and (max-width: 380px) {
  .new-info h1 {
    font-size: 1.6rem;
  }

  .new-info-title {
    font-size: 0.75rem !important;
    padding: 5px 10px !important;
    width: 90% !important;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .portfolio-card {
    padding: 1rem;
  }
}