/* Banner Slider */

.hero-banner-slider{
    position:relative;
    width:100%;
    height:700px;
    overflow:hidden;
}

.banner-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}

.banner-slide.active{
    opacity:1;
}

.banner-slide img{
    width:100%;
    height:100%;
    object-fit:fill;
    display:block;
}

@media(max-width:768px){

.hero-banner-slider{
    height:250px;
}

}


/* assets/css/style.css */
html {
  scroll-behavior: smooth;
}

nav ul li a.active {
  color: #f5a623 !important;
}

.hero-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #f5a623, #e09515);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: #f5a623;
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: Georgia, serif;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: #f5a623;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e09515;
}

::selection {
  background: #f5a623;
  color: #fff;
}

#mobile-menu {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer {
  max-height: 0;
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.open {
  display: block;
  max-height: 500px;
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Active Navigation Link Styling */
nav ul li a.text-primary {
    color: #f5a623 !important;
    font-weight: 600;
    position: relative;
}

nav ul li a.text-primary::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #f5a623;
    margin-top: 2px;
    border-radius: 2px;
}

/* Mobile active link */
#mobile-menu a.text-primary {
    color: #f5a623 !important;
    background: rgba(245, 166, 35, 0.1) !important;
}