  :root {
  --gold: #a98f52;
  --navy: #10283d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
}

/* HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 120px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* BACKGROUNDS */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease;
  pointer-events: none;
}

.hero-bg.active { opacity: 1; }

.hero-bg-1 { background-image: url("/static/cibstapp/images/hero-bg1.jpg"); }
.hero-bg-2 { background-image: url("/static/cibstapp/images/hero-bg2.jpg"); }
.hero-bg-3 { background-image: url("/static/cibstapp/images/hero-bg3.jpg"); }

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 40, 61, 0.72);
  z-index: 2;
  pointer-events: none;
}

/* SCRIPTURE TEXTURE */
.scripture-overlay {
  position: absolute;
  inset: 0;
  background: url("/static/cibstapp/images/scripture-texture.png") center / cover no-repeat;
  opacity: 0.05;
  animation: scriptureDrift 60s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes scriptureDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

/* PARTICLES */
.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(169,143,82,0.15) 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.08) 1px, transparent 2px),
    radial-gradient(circle at 50% 80%, rgba(169,143,82,0.12) 1px, transparent 2px);
  background-size: 300px 300px;
  animation: particlesFloat 40s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes particlesFloat {
  from { background-position: 0 0; }
  to { background-position: 300px -600px; }
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  width: 100%;
  padding: 0 1.5rem;
  color: #fff;
  text-align: center;
}

/* DIVIDER */
.gold-divider {
  width: 0;
  height: 2px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, #a98f52, #e6d3a3, #a98f52);
}

/* SLIDES */
.hero-slides {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  min-height: 220px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-slide.active { opacity: 1; }

/* TEXT */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

/* CTA */
.hero-cta {
  position: relative;
  z-index: 6;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.9rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #a98f52, #e6d3a3);
  color: var(--navy);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn:hover { transform: translateY(-3px); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  z-index: 6;
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollPulse 1.8s infinite ease-in-out;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 24px); }
}

/* WHO WE ARE SECTION >>> */
.who-we-are {
  position: relative;
  padding: 140px 0;
  background: #0d1f30;
  color: #fff;
  overflow: hidden;
}

/* BACKGROUNDS */
.wwa-bg {
  position: absolute;
  inset: 0;
  background: url("/static/cibstapp/images/lion_bg.jpg") center / cover no-repeat;
  z-index: 1;
}

.who-we-are::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 48, 0.86);
  z-index: 2;
}

.wwa-scripture {
  position: absolute;
  inset: 0;
  background: url("/static/cibstapp/images/lion_bg.jpg") center / cover;
  opacity: 0.035;
  animation: scriptureDrift 90s linear infinite;
  z-index: 3;
}

@keyframes scriptureDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-320px); }
}

/* CONTAINER */
.wwa-container {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* GRID */
.wwa-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

/* TEXT */
.wwa-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  margin-bottom: 1.5rem;
}

.wwa-text {
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

/* PILLARS */
.wwa-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.8rem;
}

.pillar svg {
  width: 48px;
  height: 48px;
  fill: #a98f52;
  margin-bottom: 0.6rem;
}

.pillar strong {
  display: block;
  color: #e6d3a3;
  font-size: 1rem;
}

.pillar span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* MANDATE */
.wwa-mandate {
  text-align: center;
}

.mandate-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #a98f52;
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mandate-circle img {
  max-width: 90px;
}

.wwa-mandate h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.8rem;
}

.wwa-mandate p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wwa-grid {
    grid-template-columns: 1fr;
  }

  .wwa-pillars {
    grid-template-columns: 1fr;
  }
}

/* OUR CORE VALUE SECTION >>>>> */
  .core-values {
  position: relative;
  padding: 160px 0;
  background: #0b1c2b;
  color: #fff;
  overflow: hidden;
}

/* Backgrounds */
.cv-bg {
  position: absolute;
  inset: 0;
  background: url("/static/cibstapp/images/multi-bible-bg.jpg") center / cover no-repeat;
  z-index: 1;
}

.core-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 43, 0.9);
  z-index: 2;
}

.cv-scripture {
  position: absolute;
  inset: 0;
  background: url("/static/cibstapp/images/scripture-texture.jpg") center / cover;
  opacity: 0.03;
  animation: scriptureDrift 100s linear infinite;
  z-index: 3;
}

@keyframes scriptureDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-350px); }
}

/* Container */
.cv-container {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.cv-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.cv-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e6d3a3;
  display: inline-block;
  margin-bottom: 1rem;
}

.cv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.cv-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
}

/* Acronym Layout */
.cv-acronym {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

/* Item */
.cv-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(169,143,82,0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cv-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Letter */
.cv-letter {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  color: #a98f52;
  opacity: 0.15;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cv-item:hover .cv-letter {
  opacity: 0.35;
  transform: scale(1.05);
}

/* Content */
.cv-content h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.6rem;
}

.cv-content p {
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .cv-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cv-letter {
    margin-bottom: 1rem;
  }
}

/* OUR PROGRAMS SECTION >>>>> */
  .programs-cta {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.programs-bg {
  position: absolute;
  inset: 0;
  background: url("/static/cibstapp/images/hero-bg1.jpg") center / cover no-repeat fixed;
  z-index: 1;
  transform: scale(1.05);
}

.programs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 40, 61, 0.7);
  z-index: 2;
}

.programs-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 1.5rem;
}

.programs-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #e6d3a3;
}

.programs-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.programs-btn {
  padding: 1rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  background: linear-gradient(135deg, #a98f52, #e6d3a3);
  color: #10283d;
  text-decoration: none;
  transition: all 0.4s ease;
}

.programs-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .programs-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .programs-subtitle {
    font-size: 1rem;
  }
}


/* COURSE SECTION >>>> */
.courses-section {
  position: relative;
  padding: 120px 1.5rem;
  background: linear-gradient(180deg, #0e2234, #081826);
  color: #fff;
  overflow: hidden;
}

.courses-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(169,143,82,0.12), transparent 60%);
  pointer-events: none;
}

.courses-container {
  max-width: 1250px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.courses-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  opacity: 0.9;
  line-height: 1.7;
}

/* Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
}

/* Card */
.course-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(169,143,82,0.25);
  transition: all 0.45s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Thumbnail */
.course-thumb {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.course-card:hover .course-thumb img {
  transform: scale(1.08);
}

.course-thumb-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10283d, #081826);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

/* Badges */
.course-level,
.course-price {
  position: absolute;
  top: 15px;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

.course-level {
  left: 15px;
  background: rgba(0,0,0,0.6);
}

.course-price {
  right: 15px;
}

.course-price.free {
  background: linear-gradient(135deg, #1db954, #4ade80);
  color: #062012;
}

.course-price.paid {
  background: linear-gradient(135deg, var(--gold), #e6d3a3);
  color: #10283d;
}

/* Body */
.course-body {
  padding: 28px;
}

.course-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.course-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 18px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.course-btn {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.course-btn:hover {
  letter-spacing: 0.5px;
}

/* Footer CTA */
.courses-footer {
  margin-top: 70px;
  text-align: center;
}

.btn-outline-gold {
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #10283d;
  transform: translateY(-3px);
}


/* TESIMONIAL SECTION >>>> */
 .testimonials-section {
  position: relative;
  padding: 120px 1.5rem;
  background:
    linear-gradient(120deg, rgba(10,20,35,0.85), rgba(10,20,35,0.95)),
    url('/static/cibstapp/images/testimonial-bg.webp') center/cover no-repeat fixed;
  color: #fff;
  overflow: hidden;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(169,143,82,0.15), transparent 60%);
  pointer-events: none;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 60px;
}

.section-title span {
  color: var(--gold);
}

.testimonial-slider {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 50px 40px;
  border: 1px solid rgba(255,215,130,0.25);
  transition: all 0.6s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 35px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e6d3a3);
  color: #10283d;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author h4 {
  margin: 0;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.testimonial-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background: var(--gold);
  color: #10283d;
  transform: scale(1.15);
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 40px 25px;
  }
}