.animated-btn-pos {
  font-size: 1.25rem; /* Larger text */
  padding: 0.75rem 0.5rem; /* Bigger button size */
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  background: #ff9d0b !important;
  color:white;
  font-weight: bold;
}

.animated-btn-pos::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s;
  z-index: 1;
}

.animated-btn-pos:hover::before {
  left: 100%;
}

.animated-btn-pos:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.animated-btn-pos i {
  position: relative;
  z-index: 2;
}
.animated-btn-pos span,
.animated-btn-pos i {
  z-index: 2;
  position: relative;
}

/* btn tas */
.animated-btn-tas {
  font-size: 1.25rem; /* Larger text */
  padding: 0.75rem 3.5rem; /* Bigger button size */
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  background: #000000 !important;
  color:white;
  font-weight: bold;
}

.animated-btn-tas::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s;
  z-index: 1;
}

.animated-btn-tas:hover::before {
  left: 100%;
}

.animated-btn-tas:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* background: #000000 !important; */
  color:white;
}

.animated-btn-tas i {
  position: relative;
  z-index: 2;
}
.animated-btn-tas span,
.animated-btn-tas i {
  z-index: 2;
  position: relative;
}

/* images */
.image-row{
    margin-top: -70px !important;
}

@media (max-width: 991.98px) {
  .image-row {
    margin-top: -40px !important;
  }
}

/* top content */
.top-cont{
    font-size: 2rem;
    font-weight: bold;
    color: transparent;
    background-image: url(https://images.unsplash.com/photo-1732535725600-f805d8b33c9c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: 200%;
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 5s infinite alternate linear;
}
@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* last sec */
.animated-btn {
  font-size: 1.25rem; /* Larger text */
  padding: 0.75rem 0.5rem; /* Bigger button size */
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  background: #ff9d0b !important;
  color:white;
  /* font-weight: bold; */
  border: none;
}
.animated-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.hero-image {
  max-height: 500px;
}

@media (min-width: 768px) {
  .hero-image {
    max-height: 650px !important;
  }
}

.overlay-content {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .overlay-content h3 {
    font-size: 1.1rem;
  }
  .overlay-content {
    max-width: 80%;
  }
}