/* Root Variables */
:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F4DF90;
  --color-gold-dark: #AA8C2C;
  --color-deep-green: #002A1B;
  /* Darker, richer green */
  --color-green-accent: #0E4D38;
  --color-navy: #0A1929;
  --color-stone: #C4C4C4;
  --color-black: #050505;
  --color-light: #E4EFE7;

  --font-heading: 'Cormorant Garamond', serif;
  --font-subheading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-heading2: 'Rubik', sans-serif;
}

/* General Reset & Typography */
body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-stone);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.font-serif {
  font-family: var(--font-heading);
}

.text-gold {
  color: var(--color-gold) !important;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.text-stone {
  color: var(--color-stone) !important;
}

.text-gold-dark {
  color: var(--color-gold-dark);
}

.bg-dark-green {
  background-color: var(--color-deep-green);
}

.bg-light {
  background-color: var(--color-light);
}

.section-padding {
  padding: 50px 0;
}

.z-index-2 {
  z-index: 2;
}

.relative {
  position: relative;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: var(--color-light);
  border: none;
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  font-weight: 700;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.btn-gold:hover {
  background-position: right center;
  background-size: 200% auto;
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-gold-outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s ease;
}

.glow-effect:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Navbar */
.navbar {
  transition: background 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}

.navbar .navbar-toggler {
  z-index: 1051 !important;
  position: relative;
}

.scrolled .navbar {
  background-color: var(--color-deep-green);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff !important;
}

.nav-link {
  color: #E0E0E0 !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-gold) !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(0, 42, 27, 0.95);
    /* Deep green with slight transparency */
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 900px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 42, 27, 0.4), rgba(0, 0, 0, 0.9)), url('./img/hanoi_hero_illustration_1767848073940.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}

/* Parallax effect on hero bg handled by JS or simple CSS transform on load */
.hero-section:hover .hero-bg {
  transform: scale(1.0);
}

#gold-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-title {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 4.5rem;
}

.hero-title .small-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-family: var(--font-subheading);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-meta {
  font-family: var(--font-body);
  font-size: 1.1rem;
  border-left: 3px solid var(--color-gold);
  padding-left: 15px;
}

/* COUNTDOWN TIMER */
.event-countdown {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.countdown-label {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}
.countdown-timer {
  gap: 2.5rem;
}
.countdown-box {
  background: transparent;
  border-radius: 18px;
  padding: 1.2rem 1.8rem;
  min-width: 120px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-value {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.countdown-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .countdown-timer {
    gap: 1rem;
  }
  .countdown-box {
    min-width: 70px;
    padding: 0.7rem 0.5rem;
  }
  .countdown-value {
    font-size: 1.5rem;
  }
  .countdown-label {
    font-size: 0.8rem;
  }
}

/* About*/

.persona-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 30px 20px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  height: 100%;
}

.persona-card:hover {
  background: linear-gradient(to bottom, rgba(14, 77, 56, 0.2), rgba(0, 0, 0, 0));
  border-color: var(--color-gold);
  transform: translateY(-10px);
}

.icon-wrapper {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.persona-card h3 {
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--font-subheading);
  letter-spacing: 0.5px;
}

.divider-gold {
  width: 80px;
  height: 3px;
  background: var(--color-gold);
  margin: 20px 0 40px;
}



/*--------------------------------------------------------------
# Gallery Section Slider
--------------------------------------------------------------*/

.image-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  width: 100vw;
  max-width: 1200px;
  align-items: center;
}

.row-gallery {
  display: flex;
  gap: 10px;
  animation: scroll 30s linear infinite;
  justify-content: center;
  align-items: center; 
   width: 100%;
}

/* Alternate direction for middle row */
.row-gallery:nth-child(2) {
  animation-direction: reverse;
}

.row-gallery img {
  width: 150px;
  /* bigger size */
  height: 150px;
  /* bigger size */
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Smooth hover effect */
.row-gallery img:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  z-index: 10;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Imperial Cards */
.imperial-card {
  background: #0D1B28;
  position: relative;
  padding: 40px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.imperial-card:hover {
  transform: translateY(-5px);
}

.card-border {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

.imperial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.4s ease;
}

.imperial-card:hover::before {
  height: 100%;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Speakers */

/* .section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
} */

.speakers-bg {
  background-image: url('./img/dark_green_velvet_texture_1767848092132.webp');
  background-color: #002A1B;
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: multiply;
}

.featured-speakers .speaker-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--color-gold), transparent 90%);
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px 0 color-mix(in srgb, var(--color-stone), transparent 80%);
}

.featured-speakers .speaker-card.featured {
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--color-gold-dark), transparent 10%);
}

.featured-speakers .speaker-card.featured .speaker-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.featured-speakers .speaker-card.featured .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a {
  width: 40px;
  height: 40px;
  background: var(--color-deep-green);
  color: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a:hover {
  background: var(--color-green-accent);
  transform: translateY(-3px);
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a i {
  font-size: 16px;
}

.featured-speakers .speaker-card.featured .speaker-content {
  padding: 30px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-category {
  display: inline-block;
  background: var(--color-deep-green);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-name {
  font-size: 24px;
  font-weight: 700;
  color: #281a0c;
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 5px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-company {
  font-size: 14px;
  color: color-mix(in srgb, #40372e, transparent 30%);
  margin-bottom: 20px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session {
  margin-bottom: 25px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session h4 {
  font-size: 17px;
  font-weight: 500;
  color: #281a0c;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .featured-speakers .speaker-card.featured .speaker-image {
    height: 250px;
  }

  .featured-speakers .speaker-card.featured .speaker-content {
    padding: 20px;
  }

  .featured-speakers .speaker-card.featured .speaker-content .speaker-name {
    font-size: 20px;
  }
}

/* Experience */
.experience-list li {
  font-size: 1.1rem;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  align-items: center;
}

.experience-gallery {
  position: relative;
  height: 400px;
  width: 100%;
}

.experience-img-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background: #222 url('./img/hanoi_hero_illustration_1767848073940.webp') no-repeat center center;
  /* Reusing hero for aesthetic if needed, or gradient */
  background-size: cover;
  border: 1px solid var(--color-stone);
  z-index: 1;
}

.experience-img-decoration {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 90%;
  height: 100%;
  border: 2px solid var(--color-gold);
  z-index: 0;
}

/* CTA Register */
.cta-section {
  background-color: var(--color-deep-green);
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--color-gold);
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.mobile-thin {
  font-weight: 300;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
    margin-top: 2.5rem;
    text-align: center;
  }

  .hero-content {
    text-align: center !important;
  }

  .hero-cta {
    justify-content: center;
    display: flex;
  }
}

/* 10-Year Journey Carousel */
.gold-border-frame {
  border: 2px solid var(--color-gold);
  padding: 10px;
  position: relative;
}

.gold-border-frame::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50%;
  height: 50%;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  z-index: 0;
}

.carousel-img-placeholder {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: #222;
}

/* Why Attend */
.why-card {
  background: #E0E0E0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.why-card-img {
  height: 200px;
  width: 100%;
  background-size: contain;
  background-position: center;
  border-bottom: 2px solid var(--color-gold);
}

.why-card-img .img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--color-gold);
}

.why-card-body {
  padding: 25px;
  text-align: center;
}

.badge-gold {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 5px 15px;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-card-body p {
  color: var(--color-deep-green);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/*  founder-quote css */

.founder-quote {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, color-mix(in srgb, var(--color-gold-light), transparent 97%) 100%);
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--color-gold-light), transparent 85%);
  position: relative;
  overflow: hidden;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: color-mix(in srgb, var(--color-stone), transparent 85%);
  font-weight: bold;
  line-height: 1;
}

.founder-quote .founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-gold);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--color-gold-light), transparent 75%);
}

.founder-quote blockquote {
  margin: 0;
}

.founder-quote blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .founder-quote blockquote p {
    font-size: 1.1rem;
  }
}

.founder-quote blockquote cite {
  display: block;
  text-align: left;
}

.founder-quote blockquote cite strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.founder-quote blockquote cite span {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  founder-quote {
    text-align: center;
  }

  .founder-quote .founder-img {
    margin-bottom: 2rem;
  }

  .founder-quote blockquote cite {
    text-align: center;
  }
}


/* Testimonials */
.testimonial-card {
    background: #111;
    border: 1px solid #333;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
}

.video-placeholder {
    height: 180px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder i {
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: #fff !important;
}

.testimonial-content {
    padding: 25px;
    position: relative;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.2);
}

.italic {
    font-style: italic;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  /* optional rounded corners */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: var(--color-gold-light);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--color-deep-green), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), color-mix(in srgb, var(--color-gold), var(--color-light) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--color-gold-dark);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--color-gold-dark);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: var(--color-gold-light);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--color-gold), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--color-navy);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-deep-green);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--color-deep-green), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: var(--color-deep-green);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  bottom: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--color-gold);
  border-radius: 50%;
  color: var(--color-deep-green);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--color-gold), var(--color-light) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}




/* Program Schedule */
#program {
  background: linear-gradient(135deg, #F0F6F4 0%, #E4EFE7 100%);
  position: relative;
}

#program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Nav Pills Styling */
.nav-pills {
  gap: 15px;
  margin-bottom: 3rem !important;
}

.nav-pills .nav-link {
  background: transparent;
  border: 1px solid var(--color-gold);
  /* Solid border for better visibility */
  color: var(--color-deep-green) !important;
  /* Stone/Light text instead of faded black */
  border-radius: 6px;
  padding: 12px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.nav-pills .nav-link:hover {
  border-color: var(--color-gold);
  color: rgba(0, 0, 0, 0.6);
}

#program .nav-pills .nav-link.active {
  background: var(--color-gold) !important;
  color: #000 !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
  opacity: 1 !important;
}

/* Timeline/Table Styling */
.program-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.program-row {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 25, 10, 0.05);
  border-left: 5px solid var(--color-green-accent);
  /* Adding more primary color */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 3px solid rgba(0, 0, 0, 0.03);
  /* Subtle depth */
  position: relative;
  overflow: hidden;
}

.program-row:hover {
  transform: scale(1.02) translateX(10px);
  border-left-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(0, 42, 27, 0.1);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

.program-row .time {
  width: 25%;
  flex-shrink: 0;
  font-family: var(--font-heading2);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-deep-green);
  /* More color weight */
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-row .time::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
}

.program-row .event {
  width: 75%;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Highlights */
.program-row.highlight {
  background: rgb(240, 248, 245);
  border-left-color: var(--color-green-accent);
}

.program-row.highlight .event {
  color: var(--color-deep-green);
}

.program-row.highlight-red {
  background: linear-gradient(135deg, #8a1c1c 0%, #aa2c2c 100%);
  border: none;
}

.program-row.highlight-red .time,
.program-row.highlight-red .event {
  color: #fff !important;
  text-align: center;
  width: 100%;
}

.program-row.highlight-red .time {
  font-family: var(--font-subheading);
  /* Elegant serif */
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .program-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .program-row .time {
    width: 100%;
    margin-bottom: 8px;
    font-size: 1rem;
    opacity: 0.8;
  }

  .program-row .event {
    width: 100%;
    font-size: 1.2rem;
  }

  .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start !important;
    /* Allow scroll */
  }

  .nav-pills::-webkit-scrollbar {
    height: 4px;
  }

  .nav-pills::-webkit-scrollbar-track {
    background: #eee;
  }

  .nav-pills::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
  }
}

/* CALL TO ACTION SECTION */
.call-to-action {
  position: relative;
  overflow: hidden;
  background: #F0F6F4;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./img/showcase-1.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
  
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .display-4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #222;
  margin-top: 30px;
}

.call-to-action .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  color: #222;
}

.call-to-action .stats-wrapper {
  background: var(--color-light);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--color-light), transparent 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
  text-align: center;
  padding: 1rem 0;
}

.call-to-action .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--color-gold), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.call-to-action .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.call-to-action .stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.call-to-action .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-to-action .stat-item:hover .stat-icon {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.call-to-action .stat-item:hover .stat-icon i {
  color: var(--color-light);
}

.call-to-action .cta-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--color-black), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 2rem;
}

.call-to-action .cta-buttons .btn {
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #281a0c;
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--color-gold), black 15%);
  border-color: color-mix(in srgb, var(--color-gold), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .cta-buttons .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--color-black), transparent 70%);
  background: transparent;
}

.call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .security-note {
  border-top: 1px solid color-mix(in srgb, var(--color-black), transparent 90%);
  padding-top: 1rem;
}

.call-to-action .security-note small {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-black), transparent 40%);
}

.call-to-action .security-note small i {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .call-to-action .display-4 {
    font-size: 2rem;
  }

  .call-to-action .stats-wrapper {
    padding: 2rem 1rem;
  }

  .call-to-action .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action .stat-item .stat-number {
    font-size: 2rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .call-to-action .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Responsive Call to Action Button */
@media (max-width: 575px) {
  .call-to-action .cta-buttons .btn,
  .btn-gold {
    width: 100%;
    min-width: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* FOOTER SECTION */
.footer {
  color: var(--color-light);
  background-color: var(--color-black);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--color-black), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--color-black);
  font-family: var(--font-heading2);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--font-body);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-light), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--color-light), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--color-black), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--color-black), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 991px) { 
  .footer .col-lg-4.col-md-12 {
    align-items: flex-start !important; 
  }
}

@media (max-width: 767px) { 
  .footer .logo {
    align-items: flex-start !important;
    margin-left: 0 !important; 
    margin-right: auto !important;
  }
    
  .footer .logo img {
    max-height: 200px !important;
    width: auto !important;
    max-width: 100% !important;
    margin-right: 0 !important;
  }

  .footer .footer-about {
    text-align: left !important;
  }
}