@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');

* {

    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;

}

.bg {
    background-image: url("../img/newbg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;

}


@keyframes shine {
    0% { transform: translateX(-150%); }
    100% { transform: translateX(150%); }
}

.animate-shine {
    animation: shine 2s infinite linear;
}


/* Initial state: hidden and slightly translated down */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  /* Visible state: fully visible and no translation */
  .fade-section.visible {
    opacity: 1;
    transform: translateY(0);
  }