.h1{
    font-family: "Geist", sans-serif;
}
p{
    font-family: "Geist", sans-serif;
}

body{
    font-family: "Geist", sans-serif;
}
.navbar-times {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}



/* header animation section */

  .image-section {
    /* padding-top: 6.25rem; */
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    height: 34.6875rem;
    position: absolute;
    right: 0;
}


.image-section-mobile {
    display: none;
}

.image-box {
    width: auto;
    align-items: center;
    height: 100%;
    transition: all 1s ease-out;
}



.image-box {
    margin-right: 10px;
    cursor: pointer;
}


.image-box-mobile {
    width: auto;
    align-items: center;
    height: 100%;
    transition: all 1s ease-out;
}



.image-box-mobile {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    cursor: pointer;
}




@media (max-width: 1336px) {

    .mt-26 {
        margin-top: 26rem !important;
    }

    .image-section {
        display: none;
    }

    .image-section-mobile {
        margin-bottom: 50px;
        justify-self: center;
        display: flex;
        align-items: center;
        position: absolute;
        width: auto;
        height: 24.6875rem;
        right: 0;
        top: 1rem;
    }



    #box-mobile1 {
        width: 15.5rem;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

    #box-mobile2 {
        width: 5.5rem;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

    #box-mobile3 {
        width: 2.375rem;
        height: 100%;
        object-position: center;
        object-fit: cover;

    }

    #box-mobile4 {
        width: 0px;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

}


@media (min-width: 1336px) {

    #box1 {
        width: 22.5rem;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

    #box2 {
        width: 12.5rem;
        height: 100%;
        object-position: center;
        object-fit: cover;
      
    }

    #box3 {
        width: 9.375rem;
        height: 100%;
        object-position: center;
        object-fit: cover;
        

    }
}





@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }

}



#box4 {
    width: 0px;
    height: 100%;
    object-position: center;
    object-fit: cover;
}


@keyframes rotateBoxes {
    0% {
        transform: translateX(0);
   
    }

    33% {
        transform: translateX(-10%);
        
    }

    66% {
        transform: translateX(-10%);
       
    }

    100% {
        transform: translateX(0);
      
    }
}


@media (max-width: 768px) {
    




    .explore-btn {
        display: inline-block;
        padding: 0.625rem 1.25rem;
        color: #fff;
        font-size: 1.122rem;
        font-weight: 500;
        text-decoration: none;
        border-radius: 0.5rem;
        text-align: center;
        margin-top: 3rem;
        margin-left: 7rem;
        border: 1px solid #8bc83f;
        transition: background-color 0.3s ease;
        font-family: 'geist', sans-serif;
    }

    .explore-btn:hover {
        background-color: #218838;
    }

    /* Text Section */
    .text-section {
        flex: 1;
        padding: 1rem;
    }

    h1 {
        color: black;
        font-size: 2.7rem;
        margin: 7rem 0 1rem 0;
        margin-top: 9rem;
        margin-left: -0.5rem;
    }

    .text-section p {
        color: black;
        font-size: 1rem;
        margin: 0;
        margin-left: 0rem;
        margin-top: 2rem;
    }

    /* Hidden image section in mobile view */

    .image-section-mobile-outer {
        padding-inline: 20px;
        position: absolute;
    }



}















@keyframes zoomInOut {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  .zoom-button {
    animation: zoomInOut 2s ease-in-out infinite;
  }


  .img-container {
  position: relative;
  overflow: hidden;
}

.img-overlay {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #a8bfa0;
  opacity: 0.5;
  transition: right 0.5s ease;
  pointer-events: none;
}

.text-section:hover ~ .img-container .img-overlay,
.text-section:hover + .img-container .img-overlay,
.img-container:hover .img-overlay {
  right: 0;
}



@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 20s linear infinite;
}



 @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
  }











  