html {
  scroll-behavior: smooth;
}

* START - General */
p {
    font-size: 16px;
    line-height: 28px;
  }

.section-spacer {
    padding-top: clamp(60px, 10vh, 120px);
    padding-bottom: clamp(60px, 10vh, 120px);
}


/*HERO SECTION*/
.hero-video-container {
  position: relative;
  width: 100%;     
  height: 700px; 
  overflow: hidden;
}

.hero-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.custom-cta {
  position: relative;
  text-decoration: none;
  display: inline-flex;
  margin-bottom: 20px;
}

.custom-cta::after {
  content: "";
  position: absolute;
  bottom: -2px; 
  left: 0;
  width: 100%; 
  height: 2px;  
  background-color: white;
  transition: width 0.3s ease;
}

.custom-cta:hover::after {
  width: 85%;
}

.anchor-cta {
  position: absolute;
  bottom: 20px; 
  right: 20px;  
  display: flex;
}

.down-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 50px;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease-out, color 0.3s ease;
}

.down-arrow:hover {
  color: #ffffff;            
  transform: translateY(8px); 
}

@media (max-width: 768px) {
  .hero-video-container {
    height: 400px; 
  }
}


/*Accordian*/
.custom-accordion .accordion-button::after {
    display: none; 
}

.custom-accordion .accordion-button {
    padding-left: 0;
    padding-right: 0;
}

.custom-accordion .accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button.collapsed .accordion-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.step-number {
    font-size: 0.8rem;
    min-width: 30px;
}

.custom-accordion .accordion-item {
    border-top: none;
}


/*Program Details*/
.program_box  {
  background-color: #16181c;
  padding: 60px 30px;
}

  .cta-white {
    color: #222 !important;
    background-color: #fff !important;
    border-color: #fff !important;
    min-width: 150px;
    height: auto;
    min-height: 48px;  
    overflow: hidden; 
    display: inline-block;
    padding: 0.15rem 2rem;
}

.cta-white span {
    display: block;
    position: relative;
    height: 100%; 
    line-height: 48px; 
    transition: transform 0.2s ease; 
}

.cta-white span::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.cta-white:hover span {
    transform: translateY(-100%);
}

.cta-white:hover {
    background-color: #00FF63 !important;
    border-color: #00FF63 !important;
    text-decoration: none;
}

/* Card Styling */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
  gap: 30px;
  background: #000;
  padding: 50px 0px 0px;
  margin: 0 auto;
}

.stat-card {
  background: #1a1a1c;
  color: white;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  min-height: 250px;
  
  /* Animation Start State */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.visual-img-responsive {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    object-position: center center; 
}

@media (min-width: 768px) {
    .visual-img-responsive {
        aspect-ratio: auto; 
        height: 750px; 
    }
}

/* The Green Top Border */
.top-border {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 4px;
  background: #00FF63;
  border-radius: 0 0 4px 4px;
}

    /* Animation Start State */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.visual-img-responsive {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    object-position: center center; 
}

@media (min-width: 768px) {
    .visual-img-responsive {
        aspect-ratio: auto; 
        height: 750px; 
    }
}

/* Animation End State */
.stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-card p { font-size: 14px; line-height: 1.5; }


@media (max-width: 414px) {
   .stat-card {
        min-height: 100px;
    }
  }


  /*Accordian*/
.custom-accordion .accordion-button::after {
    display: none; 
}

.custom-accordion .accordion-button {
    padding-left: 0;
    padding-right: 0;
}

.custom-accordion .accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button.collapsed .accordion-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-item {
    border-top: none;
}
