  /* HERO BASE */
#home-hero {
  position: relative;
  height: calc(100vh - 70px);
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MEDIA */
.hero-media video,
.hero-media img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  left: 0px;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

/* TITLE */
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
  animation: fadeUp 1s ease;
}

/* SUB */
.hero-sub {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 25px;
  animation: fadeUp 1.5s ease;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.hero-btn.primary {
  background: red;
  color: #fff;
}

.hero-btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.hero-btn:hover {
  transform: scale(1.05);
}

/* LIVE DOT */
.live-dot {
  height: 8px;
  width: 8px;
  background: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

/* SCROLL */
.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
  animation: bounce 1.5s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes bounce {
  50% { transform: translateY(8px); }
}

  /* =========================
   LIVE DARK THEME
========================= */
.live-dark {
  background: radial-gradient(circle at top, #0c0c12, #050505);
  color: #fff;
}

/* GRID */
.live-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* PLAYER */
.player-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  position: relative;
}

.player-card iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* LIVE STATUS */
.live-status {
  position: absolute;
  top: -15px;
  left: 10px;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

.live-status.active {
  background: #ff1e1e;
  animation: pulse 1s infinite;
}

/* INFO CARD */
.live-info {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* BADGE */
.live-badge {
  background: rgba(170, 8, 130, 0.15);
  color: var(--color-main);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
}

/* TEXT */
.live-info h3 {
  font-size: 1.8rem;
  margin: 15px 0;
}

.live-desc {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

.live-meta {
  margin-bottom: 25px;
  color: var(--color-main2);
}

/* BUTTONS */
.live-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-live {
  padding: 14px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.btn-live.primary {
  background: var(--color-main);
  color: #fff;
}

.btn-live.primary:hover {
  background: var(--color-main2);
  color: #000;
}

/* SECONDARY */
.btn-live.secondary {
  border: 1px solid var(--color-dim-white);
  color: #fff;
}

.btn-live.secondary:hover {
  background: #fff;
  color: #000;
}
/* THUMB */
.thumb {
  height: 130px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* SCROLLBAR */
.stream-row::-webkit-scrollbar {
  height: 6px;
}

.stream-row::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 10px;
}

/* ANIMATION */
@keyframes pulse {
  50% { opacity: 0.5; }
}

  .director-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.image-card img {
  width: 100%;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.badge {
  background: rgba(212,175,55,0.1);
  color: #b8962e;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
}

/* QUOTE STYLE */
.director-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #111;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid var(--main-color);
}

/* TEXT */
.director-info h3 {
  font-size: 2rem;
}

.lead {
  font-weight: 500;
  color: #333;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--main-color);
  color: #000;
}


/* =========================
   CORE SECTION SYSTEM
========================= */
.wb-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.wb-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* HEADER */
.wb-header {
  text-align: center;
  margin-bottom: 70px;
}

.wb-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 10px 0;
}

.wb-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--main-color);
}

/* =========================
   BACKGROUND GLOW EFFECT
========================= */
.wb-glow::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 1;
}

.wb-glow::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,0.05), transparent 70%);
  bottom: -100px;
  right: -100px;
  z-index: 1;
}

/* =========================
   SCROLL ANIMATION SYSTEM
========================= */
.wb-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.wb-animate.show {
  opacity: 1;
  transform: translateY(0);
}

  /* =========================
   ABOUT SECTION
========================= */
#about-home {
  background: var(--bg-color-white);
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.05);
}

/* subtle brand overlay */
.about-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(170, 8, 130, 0.2),
    transparent
  );
}

/* CONTENT */
.about-content h3 {
  font-size: 2.1rem;
  color: var(--txt-color-dark);
  margin: 10px 0 15px;
}

.about-content p {
  color: var(--txt-color-normal);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BADGE */
.about-badge {
  display: inline-block;
  background: rgba(170, 8, 130, 0.08);
  color: var(--color-main);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* LEAD TEXT */
.lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--txt-color-dark);
}

/* QUOTE */
.about-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--main-color3);
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid var(--color-main2);
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--color-main);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-main2);
  color: #000;
}

/* CTA */
.about-cta {
  margin-top: 25px;
}

  /* =========================
   SECTION BACKGROUND
========================= */
#testimony-section {
  background: var(--bg-color-fair);
}

/* =========================
   FEATURED TESTIMONY
========================= */
.featured-testimony {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  background: var(--bg-color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

/* IMAGE */
.featured-img {
  position: relative;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(170,8,130,0.25),
    transparent
  );
}

/* CONTENT */
.featured-content {
  padding: 40px;
}

.featured-content h3 {
  font-size: 1.8rem;
  margin: 10px 0;
  color: var(--txt-color-dark);
}

/* BADGE */
.featured-badge {
  background: rgba(170, 8, 130, 0.1);
  color: var(--color-main);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
}

/* QUOTE */
.featured-quote {
  font-style: italic;
  color: var(--main-color3);
  margin: 15px 0;
  border-left: 4px solid var(--color-main2);
  padding-left: 15px;
}

/* TEXT */
.featured-content p {
  color: var(--txt-color-normal);
  line-height: 1.7;
}

/* =========================
   TESTIMONY CARDS
========================= */
.testimony-row {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.testimony-card {
  min-width: 300px;
  background: var(--bg-color-white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.testimony-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* IMAGE */
.testimony-image {
  position: relative;
}

.testimony-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* OVERLAY */
.testimony-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(170,8,130,0.2),
    transparent
  );
  opacity: 0;
  transition: 0.3s;
}

.testimony-card:hover .testimony-overlay {
  opacity: 1;
}

/* CONTENT */
.testimony-content {
  padding: 20px;
}

.testimony-content h3 {
  margin-bottom: 10px;
  color: var(--txt-color-dark);
}

/* TAG */
.testimony-tag {
  font-size: 0.75rem;
  color: var(--color-main);
  margin-bottom: 8px;
  display: inline-block;
}

/* TEXT */
.testimony-content p {
  font-size: 0.9rem;
  color: var(--txt-color-normal);
}

/* LINK */
.read-more {
  margin-top: 10px;
  display: inline-block;
  color: var(--color-main);
  font-weight: 600;
  transition: 0.3s;
}

.testimony-card:hover .read-more {
  color: var(--color-main2);
  transform: translateX(5px);
}

/* =========================
   CTA
========================= */
.testimony-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-outline {
  padding: 12px 28px;
  border: 2px solid var(--color-main);
  color: var(--color-main);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--color-main);
  color: #fff;
}

/* =========================
   SCROLLBAR
========================= */
.testimony-row::-webkit-scrollbar {
  height: 6px;
}

.testimony-row::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 10px;
}
  #giving-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}

/* GRID */
.giving-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.giving-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
}

.giving-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* TITLE */
.giving-card h3 {
  margin-bottom: 15px;
  color: var(--main-color);
}

/* TEXT */
.giving-card p {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* BUTTON */
.giving-card button {
  margin-top: 15px;
  padding: 10px 15px;
  border: none;
  background: var(--main-color);
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
}

.giving-card button:hover {
  transform: scale(1.05);
}

/* CTA */
.giving-cta {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
}



#brands-section {
  padding: 80px 20px;
  background: #fff;
}

.brands-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.brand-card {
  min-width: 180px;
  background: #fefefe;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.brand-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 15px;
}

.brand-card h4 {
  margin: 10px 0 15px;
  font-size: 1rem;
  color: var(--main-color);
}


/* ========================================
   BRANDS SECTION
======================================== */
#brands-section {
    position: relative;
    padding: 120px 20px;
    background: #fafbfd;
    overflow: hidden;
}

/* BACKGROUND EFFECTS */
.brands-bg {
  position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
        rgba(108, 99, 255, 0.06),
        transparent 35%),
        radial-gradient(circle at bottom right,
        rgba(0, 198, 255, 0.05),
        transparent 35%);
    z-index: 1;
}

.brands-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(108, 99, 255, 0.08),
        transparent 70%
    );
    z-index: 1;
}

#brands-section .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
}

/* ========================================
   HEADER
======================================== */
.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-eye {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 20px;
}

.eye-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(
      90deg,
        transparent,
        rgba(108, 99, 255, 0.5),
        transparent
    );
}

.section-eye h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;

    background: linear-gradient(
        90deg,
        #1a1a1a,
        #6c63ff
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #5f6470;
    margin: 0;
}

/* ========================================
   GRID
======================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ========================================
   CARD
======================================== */
.brand-card {
  position: relative;
  border-radius: 24px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.brand-card a {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  
  /* GLOW BORDER */
.brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.3),
        rgba(0, 198, 255, 0.2)
    );
    
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s;
}

.brand-card:hover::before {
    opacity: 1;
  }
  
.brand-card:hover {
  transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ========================================
LOGO
======================================== */
.brand-logo-wrap {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.brand-logo-wrap img {
    max-width: 85%;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brand-card:hover img {
    transform: scale(1.05);
}

/* ========================================
CONTENT
======================================== */
.brand-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(108, 99, 255, 0.08);
    color: #6c63ff;
    margin-bottom: 14px;
}

.brand-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
    color: #151515;
    margin: 0 0 12px;
}

.brand-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #667085;
    margin: 0 0 20px;
  }
  
.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #6c63ff;
    font-size: 0.95rem;
}

.brand-link span {
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-link span {
  transform: translateX(5px);
}

  /* =========================
   SUBTEXT
========================= */
.wb-sub {
  text-align: center;
  color: var(--txt-color-normal);
  margin-bottom: 60px;
  font-size: 1.05rem;
}

/* =========================
   GRID
========================= */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================
   CARD
========================= */
.program-card {
  background: var(--bg-color-white);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
}

/* HOVER LIFT */
.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* =========================
   IMAGE
========================= */
.program-image {
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY GLOW */
.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(170, 8, 130, 0.25),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.program-card:hover .program-overlay {
  opacity: 1;
}

/* =========================
   CONTENT
========================= */
.program-content {
  padding: 25px;
}

/* BADGE */
.program-badge {
  display: inline-block;
  background: rgba(170, 8, 130, 0.08);
  color: var(--color-main);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

/* TITLE */
.program-content h3 {
  font-size: 1.3rem;
  color: var(--txt-color-dark);
  margin-bottom: 10px;
}

/* TEXT */
.program-content p {
  font-size: 0.9rem;
  color: var(--txt-color-normal);
  line-height: 1.6;
}

/* LINK */
.program-link {
  margin-top: 15px;
  font-weight: 600;
  color: var(--color-main);
  display: inline-block;
  transition: 0.3s;
}

.program-card:hover .program-link {
  color: var(--color-main2);
  transform: translateX(5px);
}

/* =========================
   PLACEHOLDER
========================= */
.placeholder {
  height: 200px;
  background: var(--color-dim-white);
}

.program-card.featured {
  grid-column: span 2;
}


/* =========================
RESPONSIVE
========================= */
@media (max-width: 900px) {
  .giving-grid {
    grid-template-columns: 1fr;
  }
  .featured-testimony {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 25px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h3 {
    font-size: 1.7rem;
  }
  .wb-section {
    padding: 80px 20px;
  }

  .wb-title {
    font-size: 2rem;
  }

  .director-grid {
    grid-template-columns: 1fr;
  }

  .live-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .player-card iframe {
    height: 250px;
  }
   .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
@media (max-width: 768px) {

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }
    #brands-section {
        padding: 90px 20px;
    }

    .section-eye h2 {
        font-size: 2rem;
    }

    .section-sub {
        font-size: 0.95rem;
    }

    .brands-grid {
        gap: 20px;
    }

    .brand-card a {
        padding: 24px;
    }

    .eye-line {
        width: 40px;
    }
    .programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

    .section-eye {
        gap: 10px;
    }

    .section-eye h2 {
        font-size: 1.6rem;
    }

    .brand-content h4 {
        font-size: 1.05rem;
    }
}
