@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



.hero {
  background: url(/assets/img/bg-ap.png) no-repeat center center;
  background-size: cover;
  position: relative;
  height: 100vh;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", serif;

}

.hero h2{
  font-weight: 300;
  margin-bottom:0;
}

.hero h1{
  font-weight: 700;
}

.hero h1, .hero h2{
  font-size: 52px;
}

.hero:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2582A1; /* Blue overlay */
  opacity:1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.btn-custom {
    border-radius: 25px;
    font-weight: bold;
    padding: 12px 24px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: 25rem;
}

.btn-custom:hover{
    background-color: #FDB932;
  color: #2582A1;
}

.btn-yellow {
  background-color: #FFA800;
  color: #007C9D;
  margin-right:20px;
}
.btn-white {
  background-color: white;
  color: #2582A1;
}



        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('assets/img/bg-ap.png');
            background-size: cover;
            background-position: center;
            transform: translateY(-100%);
            animation: revealBackground 0.8s cubic-bezier(0.6, 0.05, 0.2, 0.99) forwards;
        }
        
        @keyframes revealBackground {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(0); }
        }

        /* Content Animation (Hidden Initially) */
        .content {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .content.visible {
            opacity: 1;
            transform: translateY(0);
        }



@media(max-width:768px){
  .hero img{
    height: 80px;
  }

  .hero h1, .hero h2{
    font-size: 30px;
  }
  .btn-custom{
      width:100%;
  }
  .btn-yellow{
      margin-right:0;
  }
}