/* GLOBAL RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

 body{
      background-color: black;
    }
 
/* NAVBAR STYLES */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 2.5%;
  /* background-color: transparent; */
   /* background-image: linear-gradient(rgb(0, 0, 0),rgba(31, 30, 30, 0.674)); */
    background-image: linear-gradient(rgb(0, 0, 0),rgba(43, 42, 42, 0.674));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  height: 150px;
}

/* LOGO ANIMATION */
.logo {
  animation: slideInLeft 2s ease-in-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* MENU STYLES */
.menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  animation: slideInRight 2s ease-in-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu li {
  position: relative;
  margin: 0 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  
}

/* Homepage specific style */
#homepage .menu li a {
  color: black;
}

#homepage .menu li a:hover {
  color: red;
}



.menu a:hover {
    font-size: 18px;
    color: red;
  }

/* DROPDOWN MENU */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #b2b2b2;
  border-radius: 5px;
  z-index: 100;
  min-width: 80px;
  
}

.dropdown a {
  padding: 5px;
  color: rgb(81, 79, 79);
  text-align: left;
 
  
}

.dropdown a:hover {
  color: red;
}

.menu li:hover .dropdown {
  display: flex;
}

/* CONTACT BUTTON */
.menu-button {
  all: unset;
  padding: 10px 20px;
  margin-left: 20px;
  background-color: white;
  color: black;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: color 0.3s, border 0.3s;
}

.menu-button:hover {
  color: red;
}

.menu-button:focus {
  border: 1px solid rgb(36, 36, 37);
}

/* HAMBURGER MENU */
.menu-icon {
  display: none;
  font-size: 30px;
  color: rgb(98, 95, 95);
  cursor: pointer;
}

/* Homepage hamburger icon */
#homepage .menu-icon {
  color: black;
}

/* HIDE CHECKBOX */
#menu-toggle {
  display: none;
}

/* TOGGLE MENU WHEN CHECKED (FOR MOBILE) */
#menu-toggle:checked + .menu-icon + .menu {
  display: flex;
  flex-direction: column;
}

/* BACKGROUND IMAGE SECTION */
.background-image {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .menu {
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    padding: 30px 0;
    text-align: center;
    display: none;
    border-radius: 15px;
    margin-top: 10%;
  }

  .menu li {
    padding: 10px 0;
  }

  .menu a {
    font-size: 15px;
    color: white !important;
  }

   .menu a:hover {
    font-size: 20px;
    color: rgb(255, 0, 0) !important;
  }

  .menu-button {
    margin-top: 7px;
  }

  .menu-icon {
    display: block;
  }

  /* Mobile-specific dropdown animation */
  @keyframes slideInDown {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

@media(max-width:768px){
  .inspiration{
    height: 500px !important;
    padding-top: 8px
  }

 
 .inspiration1{
    height: 550px !important;
     width: 96% !important;
  }

  .inspiration p{
    font-size: 15px;
    padding: 10px !important;
    color: white !important;
  }

  .inspiration-pic{
    width: 96% !important;
    height: 500px !important;
  }

  .pic{
     height: 500px !important;
  }

  .ivm{
    margin-bottom: 25% !important;
    width: 40% !important;
    margin-left: 28% !important;
   }

   .LT{
    height: 80rem !important;
   }
}

/* imspo css mobile view */
@media(max-width:768px){

  .inspo{
  flex-direction: column;
  height: 85rem !important;
}
  .inspo1{
    width: 75% !important;
    height: 400px !important;
    margin-left: 12.5% !important;
  }

  .inspo2{
    width: 75% !important;
    height: 400px !important;
    margin-left: 12.5% !important;
    }

  .inspo3{
    width: 75% !important;
    height: 400px !important;
    margin-left: 12.5% !important;
     }

     .names{
      width: 60% !important;
      margin-top: 70% !important;
      margin-left: 20% !important;
     }
}


/* Base Styles */
.discover-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(60px); /* Push slightly below center */
  padding: 20px;
}

.discover {
  background-color: black;
  width: 250px;
  height: 50px;
  border-radius: 15px;
  color: white;
  text-align: center;
  padding: 10px;
  border: 3px solid white;
  margin-bottom: 20px;
  transition: 0.3s ease;
  margin-top: 23rem;
}

.discover:hover {
  background-color: #333;
  transform: scale(1.05);
}



/*  Mobile Responsiveness */
@media (max-width: 768px) {
  .discover {
    width: 120%;
    height: 45px;
    font-size: 14px;
    padding: 8px;
    margin-top: 28rem;
  }

  
  .discover-wrapper {
    transform: translateY(30px);
    padding: 10px;
  }

}


.info {
  background-color: white;
  width: 280%;
  height: 100px;
  border-radius: 50px;
  
}

.info {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.info-box {
  text-align: center;
  flex: 1 1 100px;
}

.info-box h3 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
  color: #000;
}

.info-box p {
  font-size: 12px;
  color: #333;
  
}

@media(max-width:768px){

  .info {
    max-width: 120%;
    height: 80px;
    border-radius: 30px;
    padding: 10px;
  }

  .info-box {
  text-align: center;
  flex: 1 1 100px;
}

.info-box h3 {
  font-weight: bold;
  font-size: 12px;
  color: #000;
}

.info-box p {
  font-size: 10px;
  color: #333;
  
}
}



/* content for painting,pencil and abstract (ARTWORK PAGE) */
.container-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.container {
  height: 300px;
  margin: 5px;
  border-radius: 15px;
  animation: fade-in 0.5s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 10px;
}

.container.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    width:80% !important;
    
  }

  .content .row h1{
    font-size: 10px !important;
    align-items: center;
    text-align: center;
    
  }
}

@media (max-width: 480px) {
  .container {
    width: 100% !important;
  }
}

@media (max-width: 768px){
  .Background{
    height: 395rem !important;
  }
}

.like-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: transparent;
  -webkit-text-stroke: 1px white;
  transition: color 0.3s ease;
  pointer-events: none; /* Makes it unclickable */
  user-select: none;
  z-index: 1;
}

.container.liked .like-icon {
  color: red;
  -webkit-text-stroke: 0;
}


@media(max-width:768px){
  .history2 p{
    font-size: 9px !important;
  }

  .history2 h2{
    font-size: 20px !important;
  }
  .history2 {
    padding: 10px !important;
  }

  .history p{
    color: white !important;
  }
}





/* .content video{
pointer-events: none;
z-index: 1;
} */

.content .row{
  margin: auto;
  text-align: center;
  position: absolute;
  align-items: center;
  top: 220px;
  left: 350px;


}

.content .row h1{
  color: white;
  font-size: 30px;
 
}

.content .row {
  animation: slideInLeft 2s ease-in-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.Pencil{
  background-image: url(images/images\ boy.jpg);
  background-position: center;
  background-size: cover;
 width: 90%;
 height: 500px;
}

.Painting{
  background-image: url(images/pic\ 3\ \(2\).png);
  background-position: center;
  background-size: cover;
 width: 90%;
 height: 500px;
}

.Abstract{
  background-image: url(images/pic\ 2.png);
  background-position: center;
  background-size: cover;
 width: 90%;
 height: 500px;
}

@media (max-width:768px){

  .cnt1,.cnt2,.cnt3 {
  width: 40% !important;
  margin: 50% !important;
  margin-left: 30% !important;
 }
 .cnt1,.cnt2,.cnt3 h4{
  font-size: 13px;
 }

  .Pencil,.Painting,.Abstract{
  width: 95% !important;
 }

 .cnt1 h4:hover{
  color: red !important;
  cursor: pointer;
 }
}

.slider-container {
            position: relative;
            width: 100%;
        }
        
        img {
            width: 100%;
        }
        
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 48px;
            cursor: pointer;
            color: #fff;
        }
        
        .left-arrow {
            left: 10px;
        }
        
        .right-arrow {
            right: 10px;
        }

        /* blog */
.box5{
  background-image: url(images/silvie.jpeg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
  margin-top: 10%;
}

.box7{
  background-image: url(images/dvr.jpeg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
  margin-top: 10%;
}

.box1{
  background-image: url(images/Silvie-Mahdal.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
  margin-top: 10%;
}
.box3{
  background-image: url(images/pic\ 3.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
  margin-top: 10%;
}
.box2{
  background-image: url(images/download.jpeg\ 2.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
  margin-top: 10%;
}

.video-container{
width: 96%; /* Set your desired width */
  height: 500px; /* Set your desired height */
  border-radius: 30px; /* Set your desired border radius */
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.box8,.box9,.box10,.box11,.box12,.box13{
width: 31%; /* Set your desired width */
  height: 400px; /* Set your desired height */
  border-radius: 30px; /* Set your desired border radius */
  overflow: hidden;
}

.box8,.box9,.box10,.box11,.box12,.box13 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:768px){
  .box1,.box2,.box3{
    width: 96% !important;
  }
}

@media(max-width:768px){
  .box4{
    width: 96% !important;
    border-radius: 25px;
    margin-left: 2%;
  }

  .box4 p {
    color: white !important;
  }
}

@media(max-width:768px){
  .box5{
    width: 85% !important;
    border-radius: 25px;
    margin-left: 2%;
  }
}

@media(max-width:768px){
  .box6{
    width: 11% !important;
    border-radius: 15px;
    margin-left: 1%;
  }
}

@media(max-width:768px){
  .box7{
    width: 96% !important;
    border-radius: 25px;
    margin-left: 2%;
  }
}

@media(max-width:768px){
  .box8,.box9,.box10,.box11,.box12,.box13{
    width: 96% !important;
  }
}

.exh{
  background-image: url(images/exh.jpg);
  background-position: center;
  background-size: cover;
 width: 96%;
 height: 500px;
}

@media(max-width:768px){
  .mv1,.mv2{
    width: 47% !important;
    margin-left: 2% !important;
    margin-top: 10px !important;

  }
}

@media(max-width:768px){
  .mv3,.mv4{
    width: 47% !important;
    margin-left: 2% !important;
    margin-top: 15px !important;
   

  }
}


    

@media(max-width:768px){
  .one,.two,.three{
    width:8% !important;
    
  }
}

@media(max-width:768px){
  .one{
   margin-left: 35% !important;
  }
}

/* contact page css starts here */
 @media(max-width:768px){
  .cd{
    margin-top: 20%;
    
  }

  .cd p{
    font-size: 11px;
    color: white !important;
  }

  .cd h1{
    font-size: 25px;
  }

  .pc{
    width: 98% !important;
    margin-left: 1% !important;
    height: 370px !important;
    border-radius: 15px !important;
    padding: 8px !important;
    margin-bottom: 30%;
  }

  

  .info1{
    height: 350px !important;
    width: 32% !important;
    padding: 3px;
    margin-left: 1px !important;
    border-radius: 15px !important;
     }

  .info1 h3 {
    font-size: 12px;
  }

  .info1 p {
    font-size: 9px !important;
    color: white !important;
  }


  .info2{
    height: 350px !important;
    padding-bottom: 10% !important;
     width: 66% !important;
      border-radius: 15px !important;
      margin-left: 1% !important;
}

.sam{
  font-size: 10px !important;
}
}

.footer1 {
    background-color:#1a1a1a;
    color:white;
    padding: 20px;
    width: 50%;
    height: 200px;
   
    
  
}   

.footer2 {
    background-color: #1a1a1a;
    color:white;
    padding: 10px;
    width: 50%;
    height: 200px;
}  


.footer2{
  font-size: 14px;
}


.footer3{
      background-color: #1a1a1a;
      color: white;
      padding: 15px !important;
      font-size: 15px;
 }

 .footer3 p{
  margin-top: 10px !important;
 }

.footer1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer1 li {
   text-align: left;
   
  }
  
  .footer1 a {
    color: white;
    text-decoration: none;
     margin-left: 10rem !important;
   
  }
  
  .footer1 a:hover {
    color: red
}

.footer2 h3  {
  margin-left: 10rem !important;
}

.footer2 p  {
  margin-left: 10rem !important;
}

.footer1 h3  {
  margin-left: 10rem !important;
}

@media(max-width:768px){
    .footer1{
        width: 100%;
         padding: 20px;
         background-color: #1a1a1a;
         height: 200px;
        
    }
}

.footer1 a{
  font-size: 14px;
}

    @media(max-width:768px){
       .footer2{
        width: 100%;
         color: white;
         height: 200px;
        
      }

       

       /* .footer2 h3 {
            text-align: left
          } */

           .footer2 h3 {
            margin-left: 11rem !important;
          }


          .footer2 p{
           color: white !important;
           text-align: left;
           font-size: 14px;
          }



         .footer3 {
  width: 100%;
  background-color:  #1a1a1a !important;
  margin-top: 10px !important;
  clear: both; /* fixes alignment issue */
  text-align: center; /* ensures center alignment */
  padding: 10px;
}

.footer3 p {
  font-size: 12px;
  color: white !important;
  margin: 0 auto; /* centers text properly */
  text-align: center;
  /* white-space: nowrap;  <- Uncomment this if you don’t want line breaks */
}

  }

  

    

    

/* contact ends here */

/* exhibition page starts */
@media(max-width:768px){
  .exp-content{
  background-color: rgba(200, 200, 200, 0.2)!important;
  width: 80% !important;
  margin-left: 9% !important;
  height: 200px !important;
  position: absolute;
  left: 5px;
  border-radius: 15px;
}

.exp-content h3{
  font-size: 16px;
  color: white !important;
  text-align: center;
}

.exp-content p{
  font-size: 13px !important;
  color: white !important;
}

.p1{
  width: 96% !important;
  margin-left: 2% !important;
}

.p2{
  width: 96% !important;
  margin-left: 2%;
}

.ue1{
  width: 94% !important;
  margin-left: 3%;
}

.ue2{
  width: 94% !important;
  margin-left: 3% !important;
}

.ue3{
  width: 94% !important;
  margin-left: 3% !important;
}

.ue3 p{
color: white !important;
}

.ue2 p{
color: white !important;
}

@media(max-width:768px){
  .ue1 p{
color: white !important;
}
}



.mobile{
  background-color: rgb(104, 108, 109) !important;
  width: 96%;
  height: 180px;
  margin-left: 2%;
  margin-top: 10px;
  border-radius: 20px;
  padding: 10px;
  display: block;
 
}

.mobile h3, p {
   color: #000000 !important;
}


.uevents{
  height: 92rem !important;
}

.test1{
  width: 96% !important;

}

.testimonials{
  height: 50rem !important;
 
}

.col1,.col2,.col3,.col4,.col5,.col6,.col7,.col8,.col9,.col10,.col11,.col12{
  width: 47.75% !important;
  margin-left: 1.5% !important;
}

.col3,.col4{
margin-top: 20px;
}

.collection{
  height:125rem !important;
}

}
/* animations */
.ue1,.ue2,.ue3{
  opacity: 0;
    transform: translateY(50px);
    animation: fadeThenSlide 1.5s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

 @keyframes fadeThenSlide {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    50% {
      opacity: 1; /* fully visible halfway */
      transform: translateY(50px); /* still in place */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* slide up after fade */
    }
  }

  .col1,.col2,.col3,.col4,.col5,.col6,.col7,.col8,.col9,.col10,.col11,.col12{
     opacity: 0;
    transform: translateY(50px);
    animation: fadeSteps 1.5s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

   @keyframes fadeSteps {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    50% {
      opacity: 0.75; /* fade in partially */
      transform: translateY(20px);
    }
    100% {
      opacity: 1; /* full visibility */
      transform: translateY(0);
    }
  }
/* exhibition ends here */


.hotw {
  background-color: transparent;
  width: 100%;
  height: 350px;
  margin-top: 30px;
  overflow: hidden; /* hides overflow for clean loop */
}

.track {
  display: flex;
  gap: 2%;
  animation: scrollLeft 12s linear infinite;
}

.track div {
  flex-shrink: 0; /* keep size when scrolling */
}

.box {
  background-color: rgb(159, 156, 160);
  width: 22%;        /* desktop width */
  height: 200px;
  border-radius: 15px;
  padding: 10px;
  margin-top: 2rem;
}

.img {
  background-color: coral;
  height: 80px;
  width: 33%;
  border-radius: 50px;
  margin: 5% auto 0;
}

.img img {
  border-radius: 50px;
  width: 100%;
  height: 80px;
}

p {
  color: white;
  text-align: center;
  padding: 5px;
}

/* Animation keyframes */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Responsive adjustments ===== */
@media (max-width: 768px) {
  .box {
    width: 40%;       /* show about 2 boxes on screen at once */
    height: 180px;
  }
  .img {
    height: 70px;
    width: 45%;
  }
  .img img {
    height: 70px;
     width: 100%;
  }
}

@media (max-width: 480px) {
  .box {
    width: 70%;       /* show about 1 box on screen at once */
    height: 160px;
  }
  .img {
    height: 60px;
  }
  .img img {
    height: 60px;
  }
}


/* bloooogggggggggg */
.likes {
  display: flex; align-items: center; gap: 8px; padding: 0 10px;border-radius: 15px;
  
}
.heart { color: red; font-size: 24px; }
.likes { font-size: 16px; }
/* blooooooooggggggggg */

/* about us */

@media(max-width :768px){
  .mission,.vision,.story{
    width: 100% !important;
    margin-bottom: 20px !important;
   
  }

  .pen{
    width: 75% !important;
    margin-left: 12.5% !important;
    margin-top: 15px;
  }

    .pan,.abs{
    width: 75% !important;
    margin-left: 12.5% !important;
    margin-top: 15px;
  }

  .counts{
    margin-top: 0.7rem !important;
    height: 10rem !important;
  }

  .c1{
    width: 23% !important;
    margin-left: 2% !important;
    height: 100px !important;
  }

  .services{
   height: 87rem !important;
  }

 .counts img{
    width: 100% !important;
     height: 100px !important;
  }

}

.counts{
  background-image: url(images/BG.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
 }

 @media( max-width :768px){
  .mtext,.vtext,.stext{
    width: 80% !important;
    height: 140px !important;
    margin-left: 10% !important;
  }
 }

  @media( max-width :768px){

    .stext p {
     color: white !important;
  }

  .mtext p {
     color: white !important;
  }

 }

 @media(max-width:768px){
   .vtext p {
     color: white !important;
  }

  .welcome h2  {
    font-size: 20px !important;
    color: white !important;
  }

    .welcome p {
    font-size: 13px !important;
      color: white !important;
  }

  .names1{
      width: 60% !important;
      margin-top: 70% !important;
      margin-left: 7.5% !important;
    }

    .highlights{
      float: left !important;
      margin-top: 21rem !important;
      height: 380rem !important;
    }

    .okafor,.silvie,.david,.diego{
      flex-direction: column !important;
      height: 90rem !important;
    }

    .okafor-image,.silvie-image,.david-image,.diego-image{
      width: 75% !important;
      margin-left: 12.5% !important;
      box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
       border-radius: 10px;

    }

    .okafor-drawing,.silvie-drawing,.david-drawing,.diego-drawing{
      width: 75% !important;
      margin-left: 12.5% !important;
      margin-top: 10px;
      box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }
 }




 






/* about us */


/* transitions and animations */


.inspiration,.LT,.inspiration-pic,.inspiration1,.inspo,.welcome,
.services,.video-container{
  opacity: 0;
    transform: translateY(50px);
    animation: fadeThenSlide 1.5s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

 @keyframes fadeThenSlide {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    50% {
      opacity: 1; /* fully visible halfway */
      transform: translateY(50px); /* still in place */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* slide up after fade */
    }
  }


  .inspo1, .inspo2, .inspo3 {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s forwards;
  animation-timeline: view();              
  animation-range: entry;   /* 🔑 Trigger as soon as it enters */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inspo1 img,
.inspo2 img,
.inspo3 img {
  transition: transform 0.4s ease;
}

.inspo1:hover img,
.inspo2:hover img,
.inspo3:hover img {
  transform: scale(1.05); /* slight zoom */
}

.mv1 img,
.mv2 img,
.mv3 img,
.mv4 img {
  transition: transform 0.4s ease;
}

.mv1:hover img,
.mv2:hover img,
.mv3:hover img,
.mv4:hover img {
  transform: scale(1.05); /* slight zoom */
}



.mv1,.mv2,.mv3,.mv4,.Pencil,.Painting,.Abstract,.exh
.box1,.box2,.box3,.box4,.box5,.box6,.box7,.box8,.box9,.box10,.box11,.box12,.box13{
     opacity: 0;
    transform: translateY(50px);
    animation: fadeSteps 1.5s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

   @keyframes fadeSteps {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    50% {
      opacity: 0.75; /* fade in partially */
      transform: translateY(20px);
    }
    100% {
      opacity: 1; /* full visibility */
      transform: translateY(0);
    }
  }

  
