/* Hero */

.vt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(16,42,82,0.5) 50%, rgba(26,58,106,0.75) 100%);
  z-index: 1;
}

.vt-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c476?w=1920&q=80');
}

.vt-hero .container {
  position: relative;
  z-index: 2;
}

.vt-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--vt-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.vt-hero h1 .gold-text {
  color: var(--vt-gold);
}

.vt-hero .hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 540px;
}

.vt-enrollment-card {
  background: var(--vt-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.vt-enrollment-card h5 {
  color: var(--vt-navy);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.vt-enrollment-card .form-control, .vt-enrollment-card .form-select {
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.vt-enrollment-card .form-control:focus, .vt-enrollment-card .form-select:focus {
  border-color: var(--vt-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* Metrics */

.vt-metrics {
  background: var(--vt-navy);
  padding: 4rem 0;
}

.vt-metric-item {
  text-align: center;
  padding: 1.5rem;
}

.vt-metric-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--vt-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vt-metric-label {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* Programs */

.vt-programs {
  padding: 5rem 0;
  background: var(--vt-light);
}

.section-title {
  font-weight: 800;
  color: var(--vt-navy);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--vt-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.vt-program-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.vt-program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vt-program-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.vt-program-card .card-body {
  padding: 1.5rem;
}

.vt-program-card .card-title {
  color: var(--vt-navy);
  font-weight: 700;
  font-size: 1.25rem;
}

.vt-program-card .card-text {
  color: var(--vt-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-navy {
  background: var(--vt-navy);
  color: var(--vt-white);
  border: none;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-navy:hover {
  background: var(--vt-blue);
  color: var(--vt-gold);
  transform: translateY(-2px);
}

/* Scholarship */

.vt-scholarship {
  background: linear-gradient(135deg, var(--vt-gold-dark), var(--vt-gold), var(--vt-gold-light));
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.vt-scholarship::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.vt-scholarship h3 {
  color: var(--vt-navy);
  font-weight: 800;
  font-size: 1.75rem;
}

.vt-countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.vt-countdown-item {
  background: var(--vt-navy);
  color: var(--vt-white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 80px;
  text-align: center;
}

.vt-countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--vt-gold);
  line-height: 1;
}

.vt-countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
  opacity: 0.8;
}

/* Testimonials */

.vt-testimonials {
  padding: 5rem 0;
  background: var(--vt-white);
}

.vt-testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.vt-testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vt-gold);
  margin-bottom: 1.5rem;
}

.vt-testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--vt-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.vt-testimonial-card .author {
  font-weight: 700;
  color: var(--vt-navy);
}

.vt-testimonial-card .role {
  color: var(--vt-gray);
  font-size: 0.9rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--vt-gold);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Partners */

.vt-partners {
  padding: 4rem 0;
  background: var(--vt-light);
}

.vt-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 1rem 2rem;
  background: var(--vt-white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--vt-blue);
  transition: all 0.3s;
}

.vt-partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* FAQ */

.vt-faq {
  padding: 5rem 0;
  background: var(--vt-white);
}

.vt-faq .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--vt-navy);
  font-size: 1.05rem;
  padding: 1.25rem;
}

.vt-faq .accordion-button:not(.collapsed) {
  background: rgba(201,168,76,0.1);
  color: var(--vt-navy);
  box-shadow: none;
}

.vt-faq .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.vt-faq .accordion-body {
  color: var(--vt-gray);
  line-height: 1.8;
  padding: 1.25rem;
}

/* Footer */

.vt-footer {
  background: var(--vt-navy);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.vt-footer h5 {
  color: var(--vt-gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.vt-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.vt-footer a:hover {
  color: var(--vt-gold);
}

.vt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.vt-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--vt-white);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.vt-social-icon:hover {
  background: var(--vt-gold);
  color: var(--vt-navy);
}

/* Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up-delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .vt-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .vt-enrollment-card {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .vt-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .vt-metric-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .vt-countdown {
    gap: 0.5rem;
  }
}

@media (max-width: 575px) {
  .vt-countdown-item {
    min-width: 60px;
    padding: 0.75rem;
  }
}

@media (max-width: 575px) {
  .vt-countdown-num {
    font-size: 1.5rem;
  }
}

.vt-program-card {
  margin-top: 20px;
}

