

/* ================= PREMIUM NAVBAR (PERFECT BALANCE) ================= */
/* ================= PREMIUM NAVBAR (FINAL POLISH) ================= */

/* ================= PREMIUM NAVBAR (TRUE CENTER FIX) ================= */

/* ================= PREMIUM NAVBAR (FINAL PERFECT HEIGHT) ================= */

.navbar{
  position: sticky;
  top:0;
  z-index:1000;

  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;

  padding:2px 70px; /* 🔥 REDUCED HEIGHT */

  background: rgba(2,6,23,0.75);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.05);

  transition: all 0.35s ease;
}

/* SCROLL EFFECT */
.navbar.scrolled{
  background: rgba(2,6,23,0.95);
}

/* ================= NAV GROUP ================= */
.nav-group{
  display:flex;
  gap:32px;
  list-style:none;
}

.nav-group.left{ justify-content:flex-end; }
.nav-group.right{ justify-content:flex-start; }

/* ================= LINKS ================= */
.navbar a{
  font-size:15px;
  font-weight:500;
  letter-spacing:0.4px;

  color:#e5e7eb;
  text-decoration:none;
  position:relative;
  padding:6px 8px;

  transition:0.3s;
}

.navbar a:hover{
  color:#facc15;
}

/* UNDERLINE */
.navbar a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#facc15,#f59e0b);
  transition:0.35s;
}

.navbar a:hover::after{
  left:0;
  width:100%;
}

.navbar a.active{
  color:#facc15;
}

/* ================= LOGO ================= */
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo img{
  height:135px; /* 🔥 YOUR FINAL SIZE */

  display:block;

  /* 🔥 KEY: NO TRANSFORM, NO MARGIN */
  /* this keeps it naturally centered and tight */

  filter: drop-shadow(0 0 10px rgba(250,204,21,0.45));
  transition:0.3s;
}

.logo img:hover{
  transform:scale(1.05);
}

/* ================= MOBILE BUTTON ================= */
.menu-toggle{
  display:none;
  position:absolute;
  right:25px;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  margin:5px;
  background:#fff;
  transition:0.3s;
}

/* ================= MOBILE MENU ================= */
.mobile-menu{
  position:fixed;
  top:0;
  right:-280px;
  width:260px;
  height:100vh;

  background:#020617;
  box-shadow:-10px 0 30px rgba(0,0,0,0.6);

  transition:0.3s;
  z-index:2000;
}

.mobile-menu.open{
  right:0;
}

.mobile-inner{
  display:flex;
  flex-direction:column;
  gap:24px;
  padding:110px 30px;
}

.mobile-inner a{
  font-size:18px;
  color:#fff;
  text-decoration:none;
}

.mobile-inner a:hover{
  color:#facc15;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .nav-group{ display:none; }
  .menu-toggle{ display:block; }

  .navbar{
    grid-template-columns:auto;
    justify-content:center;
    padding:6px 20px; /* tighter on mobile */
  }

  .logo img{
    height:95px;
  }
}




/* =========================
   HERO SECTION 
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #000;
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  width: 100%;

  /* 🔥 REDUCED HEIGHT (~4cm = 151px) */
  height: calc(100vh - 151px);

  min-height: 450px; /* slightly reduced for better scaling */
  overflow: hidden;

  /* smooth entrance */
  opacity: 0;
  transform: scale(1.05);
  filter: blur(8px);
  transition: all 1.6s ease-out;
}

.hero.loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* =========================
   HERO IMAGE
   ========================= */
.hero-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /* 🔥 Balanced desktop framing */
  object-position: center 68%;

  z-index: 1;
}

/* =========================
   CANVAS LAYERS
   ========================= */
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#starsCanvas { z-index: 2; }

#dnaCanvas {
  z-index: 3;
  pointer-events: none;
  opacity: 0.75;
}

#particlesCanvas {
  z-index: 4;
  pointer-events: none;
}

/* =========================
   CINEMATIC OVERLAY
   ========================= */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;

  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.4) 85%,
    rgba(0,0,0,0.7) 100%
  );
}

/* =========================
   MOBILE FIX
   ========================= */
@media (max-width: 768px) {

  .hero {
    /* 🔥 Slightly less reduction on mobile for better fit */
    height: calc(100vh - 100px);
  }

  .hero-img {
    object-position: 40% 72%;
  }

  #dnaCanvas {
    opacity: 0.6;
  }
}



/* =========================
   PREMIUM VERSE SECTION
   ========================= */

.verse-divine {
  margin: 60px auto; /* reduced spacing */
  padding: 0 20px;
  display: flex;
  justify-content: center;

  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.verse-divine.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CORE CARD */
.verse-core {
  position: relative;
  max-width: 720px;
  width: 100%;
  padding: 50px 45px;

  text-align: center;
  border-radius: 40px 80px 40px 80px;

  background: rgba(10, 20, 60, 0.92);
  overflow: hidden;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 30px rgba(255,215,120,0.05);

  transition: transform 0.3s ease;
}

/* BACKGROUND MOTION */
.divine-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0b1a3a, #1a2a6c, #0b1a3a);
  background-size: 200% 200%;
  animation: bgMove 14s ease infinite;
  z-index: 0;
}

/* GLOW */
.divine-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,215,120,0.25), transparent);
  animation: glowBreath 6s ease-in-out infinite;
  z-index: 1;
}

/* PULSE */
.pulse-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,215,120,0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.pulse-active {
  opacity: 1;
}

/* CONTENT */
.verse-badge,
.verse-title,
#verseText,
#verseRef {
  position: relative;
  z-index: 3;
}

/* BADGE */
.verse-badge {
  display: inline-block;
  padding: 8px 18px;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;

  background: rgba(255,215,0,0.12);
  color: #ffd700;

  border-radius: 25px;
  margin-bottom: 14px;
}

/* TITLE */
.verse-title {
  font-size: 1.9rem;
  color: #93c5fd;
  margin-bottom: 18px;
}

/* TEXT */
#verseText {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #f8fafc;

  opacity: 0;
  transition: opacity 0.8s ease;
}

/* REF */
#verseRef {
  display: block;
  margin-top: 12px;
  color: #cbd5f5;
  font-style: italic;

  opacity: 0;
  transition: opacity 0.8s ease;
}

.show {
  opacity: 1 !important;
}

/* ANIMATIONS */
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowBreath {
  0%,100% { opacity: 0.25; }
  50% { opacity: 0.6; }
}

/* PARALLAX OPTIMIZATION */
.divine-bg,
.divine-glow,
.verse-core {
  will-change: transform;
}

/* MOBILE */
@media (max-width: 768px) {
  .verse-core {
    padding: 35px 20px;
  }

  #verseText {
    font-size: 1.2rem;
  }
}



/* =====================================
   ABOUT SECTION – PREMIUM POLISH
===================================== */

#about {
  margin-top: 80px;
  margin-bottom: 60px;
}

.about-section {
  position: relative;
  padding: 45px 20px;
  background-image: url("images/about 4.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #eef3ff;
  font-family: 'Poppins', sans-serif;

  /* 🔥 ADDED FOR CINEMATIC SCROLL ZOOM */
  transition: transform 0.3s ease-out;
  will-change: transform;

  /* ✨ NEW UNIQUE SHAPE (SOFT WAVE CUT) */
  clip-path: polygon(
    0% 6%,
    50% 0%,
    100% 6%,
    100% 94%,
    50% 100%,
    0% 94%
  );
}

/* LAYERS */
.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    rgba(5,10,25,0.55),
    rgba(5,10,25,0.7)
  );
}

.about-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* CONTENT */
.about-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}

/* TITLE */
.about-title {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  color: #ffd700;
  margin-bottom: 15px;
}

/* ✨ GLOW DIVIDER */
.about-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin: 12px auto 20px;
  background: linear-gradient(to right, transparent, #ffd700, transparent);
  box-shadow: 0 0 15px rgba(255,215,0,0.7);
}

/* INTRO */
.about-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* =========================
   CARDS CONTAINER
========================= */
.about-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

/* =========================
   CARD (BASE)
========================= */
.about-card {
  width: 100%;
  max-width: 520px;
  padding: 30px 25px;

  background: rgba(20,30,60,0.35);
  backdrop-filter: blur(12px);

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);

  position: relative;
  overflow: visible;

  opacity: 0;
  transform: translateY(40px);

  transition: all 0.8s ease;
}

/* STAGGER */
.about-card:nth-child(2) {
  transform: translateY(40px) translateX(20px);
}

.about-card:nth-child(3) {
  transform: translateY(40px) translateX(-20px);
}

/* REVEAL */
.about-card.active {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* FLOAT */
.about-card.active {
  animation: floatCard 8s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* GLOW BORDER */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(255,215,0,0.2);
  pointer-events: none;
}

/* TEXT */
.about-card h3 {
  font-size: 1.6rem;
  color: #ffd700;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.75;
}

/* MOBILE */
@media (max-width: 768px) {

  .about-cards {
    margin-top: 40px;
  }

  .about-card {
    transform: none !important;
    opacity: 1;
    animation: none;
  }
}



/* ===== IMAGE TEXT SECTION (REDUCED SPACE) ===== */


.dna-section {
  padding: 50px 0; /* was 100px */
}

/* ===== WRAPPER ===== */
.dna-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 0 50px; /* slightly reduced */
}

/* ===== ELITE SHAPE (ORGANIC CURVE) ===== */
.dna-inner {
  position: relative;
  padding: 55px 50px; /* slightly tighter */

  background:
    radial-gradient(circle at 20% 20%, rgba(0,120,255,0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,215,0,0.15), transparent 40%),
    rgba(5,15,40,0.8);

  backdrop-filter: blur(20px);

  border-radius: 60px 20px 60px 20px;

  border: 1px solid rgba(0,200,255,0.25);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.75),
    inset 0 0 50px rgba(0,150,255,0.08);

  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 35px; /* slightly reduced */
  align-items: center;

  overflow: hidden;
}

/* ===== CURSOR LIGHT ===== */
.dna-inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at var(--x,50%) var(--y,50%),
    rgba(0,200,255,0.35),
    rgba(255,215,0,0.25),
    transparent 50%);

  opacity: 0;
  transition: 0.25s;
}

.dna-inner:hover::before {
  opacity: 1;
}

/* ===== LIGHT SWEEP ===== */
.dna-inner::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,200,255,0.15),
    rgba(255,215,0,0.15),
    transparent
  );

  animation: sweep 7s linear infinite;
}

@keyframes sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* ===== PARTICLES ===== */
.dna-particles {
  position: absolute;
  inset: 0;
}

.dna-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00c8ff;
  border-radius: 50%;
  opacity: 0.6;

  animation: float 6s linear infinite;
}

@keyframes float {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(-120%); opacity: 0.8; }
}

/* ===== IMAGE ===== */
.dna-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

/* ===== TEXT ===== */
.dna-text h2 {
  color: #ffd700;
  margin-bottom: 12px; /* tighter */
}

.dna-quote {
  color: #e0ebff;
  line-height: 1.75; /* slightly tighter */
  position: relative;
}

/* ===== BEAM ===== */
.dna-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,215,0,0.3), transparent);
  transform: translateX(-150%);
}

.dna-section.active .dna-quote::after {
  animation: beam 2s ease forwards;
}

@keyframes beam {
  to { transform: translateX(150%); opacity: 0; }
}

/* ===== COLORS ===== */
.italic { color: #8fdcff; }
.highlight { color: #ffd700; }
.strong { color: #ffffff; }

/* ===== DNA ===== */
#dnaHelix {
  width: 90px;
  height: 260px;
}

/* ===== MOBILE (EVEN TIGHTER) ===== */
@media (max-width: 900px) {

  .dna-section {
    padding: 30px 0; /* much tighter for mobile */
  }

  .dna-inner {
    grid-template-columns: 1fr;
    padding: 25px 18px;
    gap: 20px;
    border-radius: 30px;
  }

  .dna-inner::before,
  .dna-inner::after {
    display: none;
  }

  #dnaHelix {
    width: 60px;
    height: 160px;
    margin: auto;
  }

  .dna-wrapper {
    padding: 0 20px;
  }
}




/* =============================
   SERMONS – DNA CINEMATIC FRAME
============================= */

:root{
  --sermon-pad-top: clamp(34px, 4.5vw, 56px);
  --sermon-pad-bottom: clamp(26px, 3.8vw, 44px);
  --sermon-pad-x: clamp(10px, 2vw, 18px);

  --title-size: clamp(1.65rem, 3.6vw, 2.7rem);

  --frame-radius: clamp(16px, 2.6vw, 26px);

  --frame-border: clamp(1px, 0.3vw, 2px);

  --frame-glow-1: clamp(18px, 4.8vw, 38px);
  --frame-glow-2: clamp(48px, 10vw, 90px);
}

/* SECTION */

.sermons{
  text-align: center;
  padding: clamp(24px, 3.5vw, 42px)
           var(--sermon-pad-x)
           var(--sermon-pad-bottom);

  background: transparent;
  margin: 10px 0;
}

/* TITLE */

.sermon-title{
  font-size: var(--title-size);
  margin-top: -20px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

/* VIDEO SHELL */

.video-shell{
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto clamp(14px, 2.2vw, 20px);
  perspective: 1600px;
  aspect-ratio: 16 / 9;
}

/* PARTICLES */

#dnaParticles{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* VIDEO */

.video-wrapper{
  position: absolute;
  inset: 0;
  z-index: 2;

  border-radius: var(--frame-radius);
  overflow: hidden;

  background: #000;

  border: var(--frame-border)
          solid rgba(255,215,0,0.6);

  box-shadow:
    0 0 var(--frame-glow-1)
    rgba(255,215,0,0.6),

    0 0 var(--frame-glow-2)
    rgba(90,170,255,0.45);

  transition: opacity .35s ease;
}

/* FLOAT EFFECT */

.float-twist-3d{
  animation: twistFloat 10s ease-in-out infinite;
}

@keyframes twistFloat{

  0%{
    transform:
    translateY(0)
    rotateX(0)
    rotateY(0);
  }

  50%{
    transform:
    translateY(-12px)
    rotateX(4deg)
    rotateY(-4deg);
  }

  100%{
    transform:
    translateY(0)
    rotateX(0)
    rotateY(0);
  }
}

/* IFRAME */

.video-wrapper iframe{
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* BUTTON */

.youtube-btn{

  display: inline-block;

  padding:
  clamp(10px, 2.2vw, 12px)
  clamp(18px, 5.2vw, 30px);

  border-radius: 40px;

  background:
  linear-gradient(
    135deg,
    #ff0000,
    #c40000
  );

  color: #fff;

  font-weight: 600;

  text-decoration: none;

  box-shadow:
  0 0 28px rgba(255,0,0,0.75);

  transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;
}

.youtube-btn:hover{

  transform:
  translateY(-3px)
  scale(1.05);

  box-shadow:
  0 0 55px rgba(255,0,0,1);
}

/* LIVE BADGE */

.live-badge{

  display: inline-block;

  margin: 0 0 10px;

  padding: 6px 14px;

  background: red;

  color: #fff;

  font-weight: bold;

  border-radius: 20px;

  animation: pulseLive 1.4s infinite;
}

@keyframes pulseLive{

  0%{
    box-shadow: 0 0 0 rgba(255,0,0,0.8);
  }

  50%{
    box-shadow: 0 0 20px rgba(255,0,0,1);
  }

  100%{
    box-shadow: 0 0 0 rgba(255,0,0,0.8);
  }
}

/* REVEAL */

.reveal{
  opacity: 0;
  transform: translateY(46px);

  transition:
  opacity 0.85s ease,
  transform 0.85s ease;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 768px){

  .float-twist-3d{

    animation:
    twistFloatMobile 10s ease-in-out infinite;
  }

  @keyframes twistFloatMobile{

    0%{
      transform:
      translateY(0)
      rotateX(0)
      rotateY(0);
    }

    50%{
      transform:
      translateY(-8px)
      rotateX(2.5deg)
      rotateY(-2.5deg);
    }

    100%{
      transform:
      translateY(0)
      rotateX(0)
      rotateY(0);
    }
  }
}



/* CONTACT */

/* Contact Section Wrapper */
.contact-wrapper {
  background: linear-gradient(135deg, #020024, #090979, #00d4ff);
  padding: 50px 30px;
  border-radius: 25px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  text-align: center;
}

/* Title */
.contact-wrapper h2 {
  color: #ffd700;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

/* Icons Layout */
.contact-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Individual Item */
.contact-item {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Icon */
.contact-item i {
  font-size: 1.8rem;
  color: #ffd700;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

/* Text */
.contact-item span {
  font-size: 1rem;
  opacity: 0.9;
}

/* Hover Effects */
.contact-item:hover {
  transform: translateY(-6px) scale(1.02);
  background: none;
  box-shadow: 0 10px 30px rgba(255,223,0,0.4);
}

.contact-item:hover i {
  transform: rotate(8deg) scale(1.2);
  text-shadow: 0 0 15px #ffd700;
}




/* Contact Title Glow – Dark Yellow */
.contact-title {
    color: #CCCC00 !important;      /* Dark yellow, overrides other colors */
    font-weight: bold;
    font-size: 28px;                /* slightly bigger */
    text-align: center;
    transition: text-shadow 0.6s ease, color 0.6s ease;
    animation: pulseGlow 3s infinite alternate; /* gentle pulsing */
}



.floating-contacts {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  animation: floatPulse 2.5s infinite;
}

/* Button Colors */
.phone { background: #0d6efd; }
.whatsapp { background: #25D366; }
.email { background: #dc3545; }
.facebook { background: #1877f2; }

/* Hover */
.float-btn:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 0 25px rgba(255,223,0,0.7);
}

/* Pulse Animation */
@keyframes floatPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}


@media (max-width: 600px) {
  .floating-contacts {
    bottom: 20px;
    right: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

.contact-form {
  margin-top: 40px;
  display: grid;
  gap: 15px;
  max-width: 600px;
  margin-inline: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background: #ffd700;
  color: #020024;
  font-weight: bold;
}



/* FOOTER */

footer { background: #020024; color: #fff; text-align: center; padding: 20px; margin-top: 50px; }


/* ACCORDION */
.accordion-item { margin-bottom: 10px; border-radius: 6px; overflow: hidden; }
.accordion-header { width: 100%; background: #111; color: #ffd700; padding: 15px; border: none; text-align: left; cursor: pointer; font-size: 1.1rem; }
.accordion-content { background: #1a1a3a; color: #fff; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 15px; }
.accordion-content p { margin: 15px 0; }
.scripture { font-style: italic; color: #9fd3ff; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Mobile Nav */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}
.navbar .theme-toggle {
    font-size: 1.6rem;
    cursor: pointer;
    margin-left: 15px;
}

/* Light/Dark mode variables */
:root {
    --bg-color: #fff;
    --text-color: #222;
    --section-bg: #f7f7f7;
}

body {
  --bg-color: transparent;
  --section-bg: transparent;
}


body {
  background: transparent !important;
  color: #222;
}


/* Scripture highlight animation */
.scripture span {
    position: relative;
}
.scripture span::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 0.3em;
    background: rgba(255, 223, 0, 0.5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}
.scripture span:hover::after { transform: scaleX(1); }

/* Mobile responsive */
@media(max-width:768px){
    .nav-links { 
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right:0;
        background: #020024;
        max-height: 0; 
        overflow: hidden; 
        transition: max-height 0.3s ease; 
    }
    .nav-links.active { max-height: 300px; }
    .menu-toggle { display: block; color: #ffd700; }
}

/* Staggered Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for stagger */
.reveal.delay-1 { transition-delay: 0.2s; }
.reveal.delay-2 { transition-delay: 0.4s; }
.reveal.delay-3 { transition-delay: 0.6s; }
.reveal.delay-4 { transition-delay: 0.8s; }

/* Accordion Icons Animation */
.accordion-header::after {
    content: '▼';
    float: right;
    transition: transform 0.3s ease;
}
.accordion-header.active::after {
    transform: rotate(180deg);
}

/* Hero Text Glow */
.hero-content h1, .hero-content .tagline {
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
    transition: text-shadow 0.3s ease;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:"Segoe UI",sans-serif}body{line-height:1.6;color:#222}

.social-icons {
    margin-top: 10px;
}
.social-icons a {
    margin: 0 10px;
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #fff;
    text-shadow: 0 0 5px #ffd700;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section ul { margin-left: 20px; margin-top: 10px; }
.section ul li { margin-bottom: 8px; font-size: 1rem; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; margin-top: 20px; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }



/* Fade in + slide up */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays (optional) */
.reveal.delay-1 { transition-delay: 0.2s; }
.reveal.delay-2 { transition-delay: 0.4s; }
.reveal.delay-3 { transition-delay: 0.6s; }
.reveal.delay-4 { transition-delay: 0.8s; }


a:hover, button:hover {
  transform: scale(1.05);
  color: #ffd700;
  transition: 0.3s ease;
}

button {
  cursor: pointer;
  background: #020024;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

button:hover {
  background: #ffd700;
  color: #020024;
  box-shadow: 0 0 15px rgba(255, 223, 0, 0.6);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 15px;
}

.accordion-header.active + .accordion-content {
  padding: 10px 15px;
}



@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(255,223,0,0.6); }
  50% { text-shadow: 0 0 25px rgba(255,223,0,0.9); }
}




.social-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-5px) scale(1.2);
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}



.card {
  background: var(--section-bg);
  border-radius: 12px;
  padding: 15px;
  margin: 10px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,223,0,0.4);
}


.video-grid iframe {
  width: 100%;
  min-height: 350px;
  border-radius: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {

 background: transparent !important;

  padding: 20px;
  border-radius: 18px;
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,223,0,0.4);
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.contact-box {
  background: linear-gradient(135deg, #020024, #090979, #00d4ff);
  padding: 50px;
  border-radius: 30px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  text-align: center;
  animation: floatBox 6s ease-in-out infinite;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.contact-title {
  color: #ffd700;
  font-size: 2.4rem;
}

.contact-subtitle {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* FORM */
.animated-form {
  display: grid;
  gap: 30px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding: 10px 5px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.input-group label {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group textarea + label {
  top: 15px;
}

.input-group .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: 0.4s ease;
}

/* Focus Effects */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label {
  top: -8px;
  font-size: 0.8rem;
  color: #ffd700;
}

.input-group input:focus ~ .line,
.input-group textarea:focus ~ .line {
  width: 100%;
}

/* BUTTON */
.submit-btn {
  position: relative;
  overflow: hidden;
  background: #ffd700;
  color: #020024;
  font-weight: bold;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.4s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,223,0,0.7);
}

/* STATUS TEXT */
.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ffd700;
}

.success-check {
  display: none;
  margin-top: 20px;
  text-align: center;
  color: #ffd700;
}

.success-check svg {
  width: 80px;
  height: 80px;
  stroke: #ffd700;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: draw 0.8s ease forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}



/* =====================================
   TEAM SECTION – PREMIUM POLISH
===================================== */

.team-section {
  padding: 80px 20px;
  background-color: #f5f9ff;
  text-align: center;
}

/* Title */
.team-section h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #0a0a23;
  font-weight: 700;
}

/* ✨ IMPROVED SUBTITLE STYLE */
.team-subtitle {
  max-width: 700px;
  margin: 0 auto 45px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  position: relative;
  font-style: italic;
}

/* Highlight ministry name */
.team-subtitle span {
  color: #05085c;
  font-weight: 700;
  position: relative;
}
 
/* Glow underline effect for span */
.team-subtitle span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #1a0dab, #6a5acd);
  opacity: 0.6;
}

/* Decorative line under subtitle */
.team-subtitle::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
   background: linear-gradient(to right, #1a0dab, #6a5acd);
  margin: 15px auto 0;
  border-radius: 10px;
}

/* Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card */
.team-card {
  background-color: hsl(251, 93%, 17%);
  color: white;
  border-radius: 15px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);

  transform: translateY(40px);
  opacity: 0;

  transition: transform 0.5s ease, box-shadow 0.4s ease, opacity 0.5s ease;
}

/* Active animation */
.team-card.active {
  transform: translateY(0);
  opacity: 1;
}

/* Hover */
.team-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Image */
.team-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* Name */
.team-card h3 {
  color: #CCCC00;
  font-weight: bold;
  margin-bottom: 8px;
}

.team-card:hover h3 {
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
  color: #FFD700;
}

/* Description */
.team-card p {
  color: white;
  font-size: 14px;
  line-height: 1.5;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* =============================== 
   FACEBOOK SECTION – DNA WAVE DESIGN
================================ */

.facebook-section {
  position: relative;

  max-width: 1200px;
  margin: 50px auto;

  /* 🔥 REDUCED HEIGHT */
  padding: 70px 20px;

  background: linear-gradient(160deg, #08112b, #0b1a52, #140d3e);

  border-radius: 50px;
  overflow: hidden;
}

/* =========================
   🧬 DNA TOP WAVE
========================= */
.facebook-section::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 200%;
  height: 140px;

  background:
    radial-gradient(circle, rgba(0,180,255,0.35) 30%, transparent 31%),
    radial-gradient(circle, rgba(255,215,0,0.25) 30%, transparent 31%);

  background-size: 160px 100px, 160px 100px;
  background-position: 0 0, 80px 50px;

  animation: dnaMove 8s linear infinite,
             dnaGlow 3s ease-in-out infinite;

  opacity: 0.9;
  filter: blur(1px);
}

/* =========================
   🧬 DNA BOTTOM WAVE
========================= */
.facebook-section::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 200%;
  height: 140px;

  background:
    radial-gradient(circle, rgba(0,180,255,0.35) 30%, transparent 31%),
    radial-gradient(circle, rgba(255,215,0,0.25) 30%, transparent 31%);

  background-size: 160px 100px, 160px 100px;
  background-position: 80px 50px, 0 0;

  animation: dnaMoveReverse 10s linear infinite,
             dnaGlow 3s ease-in-out infinite;

  opacity: 0.9;
  filter: blur(1px);
}

/* DNA movement */
@keyframes dnaMove {
  from { transform: translateX(0); }
  to { transform: translateX(-160px); }
}

@keyframes dnaMoveReverse {
  from { transform: translateX(-160px); }
  to { transform: translateX(0); }
}

/* ✨ ENERGY GLOW */
@keyframes dnaGlow {
  0%, 100% {
    opacity: 0.7;
    filter: blur(1px) brightness(1);
  }
  50% {
    opacity: 1;
    filter: blur(2px) brightness(1.5);
  }
}

/* =========================
   BACKGROUND GLOW
========================= */
.facebook-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(24,119,242,0.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.15), transparent 65%);
  animation: fbGlowMove 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes fbGlowMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

/* =========================
   MAIN CONTAINER
========================= */
.facebook-container {
  position: relative;
  z-index: 2;

  max-width: 1000px;
  margin: auto;

  padding: 50px;

  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(14px);

  border-radius: 45px;
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 35px 90px rgba(0,0,0,0.6),
    inset 0 0 50px rgba(255,255,255,0.05);

  animation: fbFloat 6s ease-in-out infinite;
}

@keyframes fbFloat {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(5px, -8px); }
  100% { transform: translate(0, 0); }
}

/* =========================
   TEXT
========================= */
.facebook-text {
  flex: 1;
  color: #eef3ff;
}

.facebook-text h2 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  margin-bottom: 15px;
}

.fb-highlight {
  color: #1877f2;
  text-shadow: 0 0 14px rgba(24,119,242,0.8);
}

.facebook-text p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
  opacity: 0.95;
}

/* =========================
   BUTTON
========================= */
.facebook-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1877f2, #42a5ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;

  box-shadow:
    0 10px 25px rgba(24,119,242,0.6),
    inset 0 0 15px rgba(255,255,255,0.25);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.facebook-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 45px rgba(24,119,242,0.85);
}

/* =========================
   FACEBOOK CARD
========================= */
.facebook-embed {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facebook-rays-canvas,
.facebook-dna-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.facebook-card {
  position: relative;
  z-index: 1;

  padding: 14px;
  border-radius: 22px;

  background: rgba(0,0,0,0.25);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 35px rgba(24,119,242,0.35);

  transition: transform 0.15s ease, box-shadow 0.3s ease;

  overflow: hidden;

  animation: fbPulse 6s ease-in-out infinite;
}

/* Glow pulse */
@keyframes fbPulse {
  0% {
    box-shadow:
      0 0 35px rgba(255,215,0,0.3),
      0 0 70px rgba(255,215,0,0.2);
  }
  50% {
    box-shadow:
      0 0 55px rgba(255,215,0,0.5),
      0 0 100px rgba(255,215,0,0.3);
  }
  100% {
    box-shadow:
      0 0 35px rgba(255,215,0,0.3),
      0 0 70px rgba(255,215,0,0.2);
  }
}

/* Light sweep */
.facebook-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 240%;
  height: 240%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,215,150,0.35),
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 1.2s ease;
}

.facebook-card:hover::after {
  transform: translateX(100%);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .facebook-section{
    margin: 30px 15px;
    border-radius: 35px;
  }

  .facebook-container {
    flex-direction: column;
    padding: 35px 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .facebook-dna-canvas,
  .facebook-rays-canvas {
    display: none;
  }

  .facebook-card {
    animation: none !important;
    transform: none !important;
  }
}



/* =========================
   HEALTH SECTION (FINAL PREMIUM + SEAMLESS FIX)
   ========================= */

.health-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 151px + 70px);
  min-height: 600px;
  overflow: hidden;
  background: #fff;

  /* ✅ REMOVE MICRO GAP BETWEEN SECTIONS */
  margin-bottom: -2px;
}

/* VIDEO */
.health-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.health-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.6)
  );
}

/* CONTENT */
.health-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px 20px 30px;
}

/* TITLE */
.health-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;

  margin-bottom: 100px;
  margin-top: 0;

  text-shadow:
    0 0 20px rgba(255,255,255,0.25),
    0 0 40px rgba(0,255,170,0.15);
}

/* LAYOUT */
.health-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* TEXT BOX */
.health-text {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  padding: 32px;
  border-radius: 18px;
  text-align: center;

  box-shadow:
    0 15px 50px rgba(0,0,0,0.35),
    inset 0 0 25px rgba(255,255,255,0.05);

  animation: fadeUp 1s ease forwards;
}

/* TITLE DIFFERENT COLOR */
.remedy-title {
  font-size: 1.9rem;
  margin-bottom: 18px;
  color: #00ffaa;
}

/* QUOTE */
.quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #ffffff;
}

/* REF */
.ref {
  display: block;
  margin-top: 14px;
  color: #00ffaa;
  font-weight: 600;
}

/* GRID */
.health-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 18px 12px;
  border-radius: 14px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.2);

  position: relative;
  overflow: hidden;

  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s ease,
    background 0.35s ease;

  animation: floatSoft 6s ease-in-out infinite;
}

/* ICON */
.card i {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #00ffaa;
}

/* TEXT */
.card span {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

/* GLOW */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,255,170,0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

/* HOVER */
.card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(0,255,170,0.2);
  box-shadow: 0 15px 35px rgba(0,255,170,0.35);
}

/* FLOAT */
.card:nth-child(2) { animation-delay: 1s; }
.card:nth-child(3) { animation-delay: 2s; }
.card:nth-child(4) { animation-delay: 3s; }

@keyframes floatSoft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   🔥 PERFECT CURVE FIX
   ========================= */

.health-bottom-curve {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 4;

  display: block;           /* removes inline SVG gap */
  margin-bottom: -3px;      /* overlaps next section */
}

/* =========================
   MOBILE FIX
   ========================= */

@media (max-width: 900px) {

  .health-section {
    height: auto;
    padding-bottom: 60px;
  }

  .health-content {
    padding: 40px 15px;
  }

  .health-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .health-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .health-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .card {
    padding: 14px;
    animation: none;
  }

  .quote {
    font-size: 1rem;
  }

  .remedy-title {
    font-size: 1.5rem;
  }
}

/* TOUCH FIX */
@media (hover: none) {
  .card::before {
    display: none;
  }
}



/* =====================================
   EVENTS
===================================== */


/* =====================================
   FACEBOOK
===================================== */

#facebook {
  background: linear-gradient(180deg, #0e0bc7, #020617);

  color: #e5e7eb;
}

/* =====================================
   TEAM
===================================== */




#team {
  background: transparent;
  color: #fbf9f9;
}




/* =====================================
   CONTACT (INFO)
===================================== */

#contact.section:not(.contact-section) {

 background: transparent;
  color: #f9fafb;
}


  

/* =====================================
   CONTACT FORM
===================================== */

.contact-section {
  background: transparent;
  color: #f9fafb;
}



/* ============================================================
   UPCOMING EVENTS — RICH GOLD / DEEP CINEMATIC VERSION
   FIX:
   ✔ Gold no longer washed out
   ✔ Stronger contrast
   ✔ Rich cinematic glow
   ✔ Everything else remains the same
============================================================ */

/* -------- SECTION -------- */
#events{
  position: relative;
  padding: clamp(4.5rem, 7vw, 7.5rem) clamp(1rem, 3vw, 2rem);
  min-height: clamp(720px, 92vh, 980px);

  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-top: 20px;

  background-image: url("images/UPCOMING.png");
  background-size: cover;
  background-position: 50% 18%;
  background-repeat: no-repeat;

  border-radius: 28px 110px 34px 140px / 30px 140px 28px 120px;

  box-shadow:
    0 24px 70px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.05);
}

/* ============================================================
   STRONGER OVERLAY FOR RICHER GOLD
============================================================ */

#events::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background:

    /* DEEP BLUE */
    radial-gradient(
      900px 520px at 20% 18%,
      rgba(0,120,255,.18),
      transparent 60%
    ),

    /* RICH GOLD */
    radial-gradient(
      820px 520px at 85% 30%,
      rgba(255,200,0,.24),
      transparent 62%
    ),

    /* CONTRAST */
    linear-gradient(
      to bottom,
      rgba(0,0,0,.22),
      rgba(0,0,0,.72)
    );
}

/* ============================================================
   BREATHING GOLD BORDER
============================================================ */

#events::after{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:inherit;
  pointer-events:none;
  z-index:1;

  border:1px solid rgba(255,215,0,.34);

  box-shadow:
    0 0 0 1px rgba(255,215,0,.14),
    0 0 24px rgba(255,215,0,.16),
    0 0 60px rgba(255,215,0,.10);

  animation: eventsBorderBreath 4.8s ease-in-out infinite;
}

@keyframes eventsBorderBreath{

  0%,100%{

    border-color: rgba(255,215,0,.28);

    box-shadow:
      0 0 0 1px rgba(255,215,0,.12),
      0 0 20px rgba(255,215,0,.12),
      0 0 48px rgba(255,215,0,.08);

    opacity:.95;
  }

  50%{

    border-color: rgba(255,220,80,.55);

    box-shadow:
      0 0 0 1px rgba(255,215,0,.20),
      0 0 34px rgba(255,215,0,.24),
      0 0 90px rgba(255,215,0,.18);

    opacity:1;
  }
}

/* ============================================================
   FUTURISTIC CORNERS
============================================================ */

#events .events-corners,
#events .events-corners::before,
#events .events-corners::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:2;
}

#events .events-corners{
  inset:0;
}

#events .events-corners::before{
  top:18px;
  left:18px;

  width:82px;
  height:82px;

  border-top:2px solid rgba(255,215,0,.55);
  border-left:2px solid rgba(255,215,0,.55);

  border-top-left-radius:16px;

  filter: drop-shadow(0 0 14px rgba(255,215,0,.28));
}

#events .events-corners::after{
  bottom:18px;
  right:18px;

  width:92px;
  height:92px;

  border-bottom:2px solid rgba(90,170,255,.42);
  border-right:2px solid rgba(90,170,255,.42);

  border-bottom-right-radius:18px;

  filter: drop-shadow(0 0 14px rgba(90,170,255,.22));
}

/* ============================================================
   TITLE
============================================================ */

#events h2{
  position: relative;
  z-index: 3;

  font-size: clamp(2.1rem, 4.4vw, 3rem);

  margin-bottom: clamp(1.7rem, 3.6vw, 3rem);

  /* RICHER GOLD */
  background: linear-gradient(
    90deg,
    #ffcf33,
    #fff29a,
    #ffd000
  );

  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 0 18px rgba(255,215,0,.28),
    0 0 45px rgba(255,215,0,.14);

  animation: eventsTitleGlow 6s ease-in-out infinite alternate;
}

@keyframes eventsTitleGlow{

  from{
    text-shadow:
      0 0 16px rgba(255,215,0,.22);
  }

  to{
    text-shadow:
      0 0 34px rgba(255,215,0,.40);
  }
}

/* ============================================================
   GRID
============================================================ */

#events .card-grid{
  position: relative;
  z-index: 3;

  display:grid;

  grid-template-columns:
  repeat(auto-fit, minmax(280px, 1fr));

  gap: clamp(1.2rem, 2.6vw, 2.5rem);

  max-width:1200px;

  margin:0 auto;

  padding:0 1rem;

  perspective:1200px;
}

/* ============================================================
   CARDS
============================================================ */

#events .card{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(8,16,34,.92),
      rgba(4,8,18,.96)
    );

  border:1px solid rgba(255,255,255,.10);

  border-radius:
    26px 18px 34px 18px /
    18px 34px 18px 26px;

  padding:2.3rem 1.9rem;

  box-shadow:
    0 24px 70px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,215,0,.10);

  transform:translateZ(0);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;

  animation:eventsFadeUp 1.2s ease both;
}

/* ============================================================
   INTERNAL LIGHT
============================================================ */

#events .card::before{
  content:"";
  position:absolute;
  inset:-2px;

  pointer-events:none;
  z-index:0;

  background:

    radial-gradient(
      520px 220px at 20% 20%,
      rgba(90,170,255,.12),
      transparent 60%
    ),

    radial-gradient(
      520px 240px at 85% 30%,
      rgba(255,215,0,.16),
      transparent 62%
    ),

    linear-gradient(
      135deg,
      rgba(255,255,255,.05),
      transparent 55%
    );

  opacity:.95;
}

/* ============================================================
   SHINE EFFECT
============================================================ */

#events .card .shine{
  position:absolute;

  top:0;
  left:-85%;

  width:55%;
  height:100%;

  background:linear-gradient(
    120deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.18),
    rgba(255,255,255,0)
  );

  transform:skewX(-25deg);

  opacity:0;

  pointer-events:none;
  z-index:2;
}

#events .card:hover .shine{
  animation:eventsShine 1.35s ease-in-out forwards;
  opacity:1;
}

@keyframes eventsShine{

  0%{
    left:-85%;
    opacity:0;
  }

  45%{
    opacity:.9;
  }

  100%{
    left:135%;
    opacity:0;
  }
}

/* ============================================================
   CARD CONTENT
============================================================ */

#events .card > *{
  position:relative;
  z-index:3;
}

/* HEADINGS */

#events .card h3{
  font-size:1.7rem;

  margin-bottom:.9rem;

  color:#ffd84f;

  text-shadow:
    0 0 18px rgba(255,215,0,.24);
}

/* TEXT */

#events .card p{
  font-size:1rem;
  line-height:1.65;
  margin-bottom:.9rem;

  color:rgba(255,255,255,.95);
}

#events .card small{
  font-size:.95rem;
  opacity:.90;
  color:rgba(255,255,255,.84);
}

/* ============================================================
   FLOATING
============================================================ */

#events .card-floating{
  animation:
    eventsFloat 6s ease-in-out infinite alternate,
    eventsPulse 4.2s ease-in-out infinite;
}

@keyframes eventsPulse{

  0%,100%{

    box-shadow:
      0 22px 60px rgba(0,0,0,.55),
      inset 0 0 0 1px rgba(255,215,0,.08);
  }

  50%{

    box-shadow:
      0 30px 90px rgba(0,0,0,.72),
      0 0 32px rgba(255,215,0,.18),
      inset 0 0 0 1px rgba(255,215,0,.16);
  }
}

@keyframes eventsFloat{

  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }
}

/* ============================================================
   DESKTOP HOVER
============================================================ */

@media (hover:hover) and (min-width:769px){

  #events .card:hover{

    transform:
      translateY(-10px)
      rotateX(4deg)
      rotateY(-4deg)
      scale(1.02);

    border-color:rgba(255,215,0,.26);

    box-shadow:
      0 40px 120px rgba(0,0,0,.75),
      0 0 40px rgba(255,215,0,.22),
      inset 0 0 0 1px rgba(255,215,0,.16);
  }
}

/* ============================================================
   FADE UP
============================================================ */

@keyframes eventsFadeUp{

  from{
    opacity:0;
    transform:translateY(34px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ============================================================
   DESKTOP TECH CUT
============================================================ */

@media (min-width:900px){

  #events{

    clip-path: polygon(
      2% 6%,
      18% 2%,
      82% 2%,
      98% 10%,
      98% 92%,
      86% 98%,
      12% 98%,
      2% 90%
    );
  }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width:768px){

  #events{

    clip-path:none !important;
    -webkit-clip-path:none !important;

    border-radius:
      22px 70px 26px 90px /
      26px 95px 22px 80px;

    background-position:50% 20% !important;
    background-size:cover !important;

    padding:4.2rem 1rem;

    min-height:auto;
  }

  #events::after{
    inset:10px;
  }

  #events h2{
    margin-bottom:2rem;
  }

  #events .card{
    padding:2rem 1.4rem;
  }

  #events .card h3{
    font-size:1.5rem;
  }

  #events .card p{
    font-size:.98rem;
  }
}

/* ============================================================
   EXTRA SMALL PHONES
============================================================ */

@media (max-width:420px){

  #events{

    border-radius:
      18px 54px 22px 72px /
      22px 74px 18px 64px;
  }

  #events::after{
    inset:8px;
  }
}



/* =========================
   DNA FOOTER STYLES
========================= */



.dna-footer {
  position: relative;
  background: linear-gradient(180deg, #0b1447, #05082b);
  color: #e0e6ed;
  padding: 4rem 1.5rem 2rem;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #9fd8ff;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #ffffff;
}

.footer-motto {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 0.6rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #5ecbff;
}

.footer-column p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.footer-column i {
  margin-right: 0.5rem;
  color: #5ecbff;
}

/* Vertical social links */
.footer-column.social-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-column.social-vertical .footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column.social-vertical .footer-social-link i {
  font-size: 1.2rem;
  color: #5ecbff;
}

.footer-column.social-vertical .footer-social-link:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-verse {
  margin-top: 0.6rem;
  font-style: italic;
  color: #a9cce8;
}

.sop-quotes {
  max-width: 900px;
  margin: 2.5rem auto 1rem;
  text-align: center;
  font-style: italic;
  color: #cfe9ff;
  opacity: 0.9;
}

.sop-quotes p {
  font-size: 1rem;
  line-height: 1.7;
  transition: opacity 0.8s ease;
}

.sop-ref {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #9fd8ff;
}

/* Footer atmosphere & particles */
.footer-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dna-footer > *:not(.footer-atmosphere) {
  position: relative;
  z-index: 2;
}

.ambient-breath {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(94,203,255,0.20), rgba(94,203,255,0.08), transparent 70%);
  opacity: 0.28;
  filter: blur(35px);
  animation: breathGlow 8s ease-in-out infinite;
}

@keyframes breathGlow {
  0%   { transform: scale(1); opacity: 0.22; }
  50%  { transform: scale(1.06); opacity: 0.42; }
  100% { transform: scale(1); opacity: 0.22; }
}

#dnaFooterParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



/* =========================================================
   DNA OF TRUTH — PREMIUM FREE DOWNLOADS
   CLEAN FINAL VERSION
========================================================= */

.downloads{
  --bg1:#06101d;
  --bg2:#09192b;

  --gold:#ffd54a;
  --gold2:#ffb800;

  --text:#ffffff;
  --muted:rgba(255,255,255,.78);

  position:relative;
  overflow:hidden;

  margin:80px auto;
  padding:70px 0;

  border-radius:38px;

  background:
    radial-gradient(circle at top left,
      rgba(90,170,255,.16),
      transparent 40%),

    radial-gradient(circle at top right,
      rgba(255,215,0,.12),
      transparent 40%),

    linear-gradient(
      180deg,
      var(--bg2),
      var(--bg1)
    );

  box-shadow:
    0 30px 90px rgba(0,0,0,.55);
}

.downloads *{
  box-sizing:border-box;
}

.downloads .dl-wrap{
  width:min(1180px, calc(100% - 40px));
  margin:auto;
  position:relative;
  z-index:2;
}

/* =========================================================
   HERO
========================================================= */

.downloads .dl-hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;

  margin-bottom:46px;
}

.downloads .dl-eyebrow{
  color:var(--gold);
  font-weight:800;
  margin-bottom:16px;
  font-size:1rem;
}

.downloads .dl-title{
  font-size:clamp(2.5rem,4vw,4.3rem);
  line-height:1.05;
  margin-bottom:18px;

  color:#fff;
  font-weight:900;
}

.downloads .dl-subtitle{
  color:rgba(255,255,255,.84);
  line-height:1.8;
  max-width:700px;
  font-size:1.05rem;
}

/* =========================================================
   STATS
========================================================= */

.downloads .dl-stats{
  display:flex;
  flex-wrap:wrap;
  gap:16px;

  margin-top:28px;
  margin-bottom:30px;
}

.downloads .dl-stat{
  padding:18px 20px;

  border-radius:22px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.10);

  min-width:110px;
}

.downloads .dl-statNum{
  display:block;

  font-size:1.6rem;
  font-weight:900;

  color:#fff;
}

.downloads .dl-statLbl{
  color:rgba(255,255,255,.78);
  margin-top:6px;
}

/* =========================================================
   BUTTONS
========================================================= */

.downloads .dl-btn{
  border:none;
  outline:none;

  cursor:pointer;

  padding:15px 24px;

  border-radius:999px;

  font-weight:800;
  font-size:.96rem;

  transition:.28s ease;

  text-decoration:none;

  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.downloads .dl-btn:hover{
  transform:translateY(-2px);
}

.downloads .dl-btnPrimary{
  color:#07111d !important;

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold2)
    );

  box-shadow:
    0 12px 28px rgba(255,215,0,.18);
}

.downloads .dl-btnGhost{
  color:#fff !important;

  background:
    rgba(255,255,255,.07);

  border:1px solid rgba(255,255,255,.10);
}

.downloads .dl-ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

/* =========================================================
   FEATURED
========================================================= */

.downloads .dl-featured{
  position:relative;

  overflow:hidden;

  padding:30px;

  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(90,170,255,.16),
      rgba(255,215,0,.07)
    );

  border:1px solid rgba(255,255,255,.10);

  box-shadow:
    0 20px 55px rgba(0,0,0,.35);
}

.downloads .dl-featuredTop{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:18px;
}

.downloads .dl-badge,
.downloads .dl-pill{
  padding:10px 16px;

  border-radius:999px;

  font-weight:800;
}

.downloads .dl-badge{
  background:rgba(255,255,255,.08);
  color:#fff;
}

.downloads .dl-pill{
  color:#07111d;

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold2)
    );
}

.downloads .dl-featuredTitle{
  font-size:2rem;
  line-height:1.25;
  margin-bottom:18px;

  color:#fff;
  font-weight:900;
}

.downloads .dl-featuredDesc{
  color:rgba(255,255,255,.84);
  line-height:1.9;
  margin-bottom:18px;
}

.downloads .dl-featuredMeta{
  color:rgba(255,255,255,.68);
  margin-bottom:20px;
}

.downloads .dl-featuredActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================================================
   CONTROLS
========================================================= */

.downloads .dl-controls{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;

  align-items:center;

  margin-bottom:24px;
}

.downloads .dl-search{
  width:100%;

  display:flex;
  align-items:center;
  gap:10px;

  padding:14px 18px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.10);
}

.downloads .dl-searchInput{
  flex:1;

  border:none;
  outline:none;

  background:none;

  color:#fff;

  font-size:1rem;
}

.downloads .dl-searchInput::placeholder{
  color:rgba(255,255,255,.55);
}

.downloads .dl-clearBtn{
  width:40px;
  height:40px;

  border-radius:50%;

  border:none;

  cursor:pointer;

  background:
    rgba(255,255,255,.08);

  color:#fff;
}

.downloads .dl-controlsRight{
  display:flex;
  align-items:center;
  gap:12px;
}

.downloads .dl-select{
  min-width:140px;

  padding:14px 18px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,.10);

  background:
    rgba(255,255,255,.08);

  color:#fff;
}

.downloads #dlReset{
  white-space:nowrap;
}

/* =========================================================
   TABS
========================================================= */

.downloads .dl-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-bottom:24px;
}

.downloads .dl-tab{
  padding:12px 18px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,.10);

  background:
    rgba(255,255,255,.05);

  color:#fff;

  cursor:pointer;

  transition:.25s ease;

  font-weight:700;
}

.downloads .dl-tab:hover{
  background:
    rgba(255,255,255,.10);
}

.downloads .dl-tab[aria-selected="true"]{
  background:
    linear-gradient(
      135deg,
      rgba(90,170,255,.35),
      rgba(255,215,0,.18)
    );
}

/* =========================================================
   RESULTS
========================================================= */

.downloads .dl-resultsBar{
  display:flex;
  justify-content:space-between;
  gap:16px;

  flex-wrap:wrap;

  padding:18px 22px;

  border-radius:20px;

  background:
    rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  margin-bottom:26px;

  color:#fff;
}

/* =========================================================
   GRID
========================================================= */

.downloads .dl-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

  gap:26px;
}

/* =========================================================
   CARD
========================================================= */

.downloads .dl-card{
  position:relative;

  overflow:hidden;

  border-radius:28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );

  border:1px solid rgba(255,255,255,.10);

  box-shadow:
    0 18px 50px rgba(0,0,0,.35);

  transition:.32s ease;
}

.downloads .dl-card:hover{
  transform:translateY(-6px);

  border-color:rgba(255,215,0,.22);
}

.downloads .dl-cardInner{
  padding:18px;
}

.downloads .dl-cardTop{
  display:flex;
  justify-content:flex-start;
  margin-bottom:16px;
}

.downloads .dl-kind{
  display:flex;
  align-items:center;
  gap:8px;

  padding:9px 14px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  font-weight:800;
  font-size:.84rem;

  color:#fff;
}

.downloads .dl-kindDot{
  width:8px;
  height:8px;

  border-radius:50%;

  background:
    linear-gradient(
      90deg,
      #58aaff,
      #ffd700
    );
}

/* =========================================================
   COVER
========================================================= */

.downloads .dl-coverWrap{
  width:100%;
  height:230px;

  overflow:hidden;

  border-radius:20px;

  margin-bottom:20px;

  border:2px solid rgba(255,215,0,.16);
}

.downloads .dl-cover{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform .5s ease;
}

.downloads .dl-card:hover .dl-cover{
  transform:scale(1.03);
}

/* =========================================================
   TEXT
========================================================= */

.downloads .dl-cardTitle{
  font-size:1.45rem;
  line-height:1.4;

  margin-bottom:14px;

  color:#fff;
  font-weight:900;
}

.downloads .dl-cardDesc{
  color:rgba(255,255,255,.84);

  line-height:1.9;

  margin-bottom:18px;

  font-size:1rem;
}

/* =========================================================
   TAGS
========================================================= */

.downloads .dl-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;

  margin-bottom:20px;
}

.downloads .dl-tag{
  padding:8px 12px;

  border-radius:999px;

  background:
    rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  font-size:.8rem;

  color:rgba(255,255,255,.82);
}

/* =========================================================
   ACTIONS
========================================================= */

.downloads .dl-cardActions{
  display:flex;
  gap:12px;
}

.downloads .dl-link{
  flex:1;
}

/* REMOVE RIBBONS */

.downloads .dl-ribbon{
  display:none !important;
}

/* =========================================================
   EMPTY
========================================================= */

.downloads .dl-empty{
  text-align:center;

  padding:40px 20px;

  border-radius:24px;

  background:
    rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  color:#fff;
}

/* =========================================================
   MODAL
========================================================= */

.dl-modal{
  position:fixed;
  inset:0;

  display:none;

  place-items:center;

  z-index:9999;
}

.dl-modal.show{
  display:grid;
}

.dl-modalOverlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,.75);

  backdrop-filter:blur(8px);
}

.dl-modalCard{
  position:relative;

  width:min(1000px,92vw);
  height:min(85vh,760px);

  overflow:hidden;

  border-radius:28px;

  background:#08111d;

  z-index:2;
}

.dl-modalHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:16px 20px;

  background:
    rgba(255,255,255,.05);
}

.dl-modalTitle{
  font-weight:900;
  color:#fff;
}

.dl-modalActions{
  display:flex;
  gap:10px;
}

.dl-modalFrame{
  width:100%;
  height:calc(100% - 72px);

  border:none;

  background:#000;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

  .downloads .dl-hero{
    grid-template-columns:1fr;
  }

  .downloads .dl-controls{
    grid-template-columns:1fr;
  }

  .downloads .dl-controlsRight{
    justify-content:flex-start;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

  .downloads{
    border-radius:26px;
    padding:50px 0;
  }

  .downloads .dl-wrap{
    width:calc(100% - 18px);
  }

  .downloads .dl-title{
    font-size:2.2rem;
  }

  .downloads .dl-grid{
    grid-template-columns:1fr;
  }

  .downloads .dl-coverWrap{
    height:200px;
  }

  .downloads .dl-cardActions{
    flex-direction:column;
  }

  .downloads .dl-link{
    width:100%;
  }

  .downloads .dl-featuredActions{
    flex-direction:column;
  }

  .downloads .dl-controlsRight{
    width:100%;
  }

  .downloads .dl-select{
    flex:1;
    min-width:0;
  }

  .downloads #dlReset{
    padding:14px 18px;
  }

  .downloads .dl-cardTitle{
    font-size:1.24rem;
  }

  .downloads .dl-cardDesc{
    font-size:.96rem;
  }

  .downloads .dl-resultsBar{
    flex-direction:column;
    gap:10px;
  }

}


/* =========================
   PRAYER PAGE SECTION
========================= */
.prayer-section{
  position: relative;

  max-width: 1200px;
  margin: 50px auto;

  /* 🔥 REDUCED HEIGHT */
  padding: 70px 20px;

  background: linear-gradient(160deg, #08112b, #0b1a52, #140d3e);
  border-radius: 60px;
  overflow: hidden;
}

/* ✨ LIGHT RAYS EFFECT */
.prayer-section::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: lightRotate 18s linear infinite;
  pointer-events: none;
}

@keyframes lightRotate{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

/* Glow layer */
.prayer-bg-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.12), transparent 65%);
  z-index:0;
  pointer-events:none;
  animation: prayerGlowMove 14s ease-in-out infinite alternate;
}

@keyframes prayerGlowMove{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-30px); }
}

/* =========================
   CARD
========================= */
.prayer-container{
  position: relative;
  z-index: 2;

  max-width: 820px;
  margin: auto;

  /* 🔥 REDUCED HEIGHT */
  padding: 45px 40px;

  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(14px);

  border-radius: 45px;
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow: 
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(255,255,255,0.05);

  text-align: center;

  /* ✨ ENTRANCE ANIMATION */
  transform: scale(0.9) translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* Active state */
.prayer-container.active{
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ✨ HOVER GLOW */
.prayer-container:hover{
  transform: scale(1.02);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 30px rgba(255,215,0,0.25),
    inset 0 0 50px rgba(255,255,255,0.08);
}

/* =========================
   TEXT
========================= */
.prayer-title{
  color: #ffd700;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(255,215,0,0.5);
}

.prayer-subtitle{
  color: #eef3ff;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* =========================
   FORM
========================= */
.prayer-form{ 
  display:grid; 
  gap: 18px; 
}

.prayer-grid{ 
  display:grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 15px; 
}

/* Checkbox */
.prayer-row{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  color:#eef3ff;
  font-size: 0.9rem;
}

/* Note */
.prayer-note{
  margin-top: 8px;
  color: #eef3ff;
  opacity: .85;
  font-size: 0.85rem;
}

/* Honeypot */
.hp{ display:none; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){
  .prayer-section{
    margin: 30px 15px;
    padding: 50px 15px;
    border-radius: 40px;
  }

  .prayer-container{ 
    padding: 35px 20px; 
  }

  .prayer-grid{ 
    grid-template-columns: 1fr; 
  }
}


/* =========================
   PREMIUM BUTTON DESIGN
========================= */
.submit-btn{
  position: relative;
  display: inline-block;

  padding: 16px 45px;
  border: none;
  cursor: pointer;

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;

  color: #000;
  background: linear-gradient(135deg, #ffd700, #ffcc00);

  /* 🔥 UNIQUE SHAPE (not rectangle) */
  border-radius: 60px 20px 60px 20px;

  overflow: hidden;
  transition: all 0.35s ease;

  z-index: 1;
}

/* Inner text */
.submit-btn span{
  position: relative;
  z-index: 2;
}

/* ✨ ANIMATED GLOW BORDER */
.submit-btn::before{
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    120deg,
    #ffd700,
    #ffffff,
    #00c3ff,
    #ffd700
  );

  border-radius: inherit;
  z-index: 0;

  animation: borderGlow 4s linear infinite;
}

/* Mask center so only border shows */
.submit-btn::after{
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #ffd700, #ffcc00);
  border-radius: inherit;
  z-index: 1;
}

/* ✨ MOVING BORDER ANIMATION */
@keyframes borderGlow{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 300% 50%; }
}

/* ✨ HOVER EFFECT */
.submit-btn:hover{
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 10px 25px rgba(255,215,0,0.4),
    0 0 20px rgba(255,215,0,0.5);
}

/* ✨ SHINE EFFECT */
.submit-btn:hover::before{
  animation-duration: 1.5s;
}

/* ✨ CLICK EFFECT */
.submit-btn:active{
  transform: scale(0.96);
}

/* ✨ SOFT PULSE GLOW */
.submit-btn{
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow{
  0%,100%{
    box-shadow: 0 0 10px rgba(255,215,0,0.25);
  }
  50%{
    box-shadow: 0 0 25px rgba(255,215,0,0.6);
  }
}


/* ========================================= */
/* PERFECTED CINEMATIC NEWSLETTER SECTION */
/* ========================================= */

.dna-newsletter-section{

    position: relative;

    width: calc(100% - 3cm);

    margin: 55px auto 65px auto;

    padding: 60px 5.5%;

    border-radius: 42px;

    overflow: hidden;

    background:
    linear-gradient(
        135deg,
        #020b2d 0%,
        #06174f 40%,
        #082a63 75%,
        #031125 100%
    );

    box-shadow:
    0 18px 60px rgba(0,0,0,0.28),
    0 0 40px rgba(255,215,0,0.06);

}


/* ========================================= */
/* STARS */
/* ========================================= */

.newsletter-stars{

    position: absolute;
    inset: 0;

    background-image:
    radial-gradient(rgba(255,255,255,0.7) 1px, transparent 1px);

    background-size: 42px 42px;

    opacity: 0.10;

}


/* ========================================= */
/* GLOWS */
/* ========================================= */

.newsletter-glow-1{

    position: absolute;

    width: 420px;
    height: 420px;

    background:
    radial-gradient(circle,
    rgba(255,215,0,0.13),
    transparent 70%);

    top: -160px;
    right: -120px;

    filter: blur(28px);

}

.newsletter-glow-2{

    position: absolute;

    width: 320px;
    height: 320px;

    background:
    radial-gradient(circle,
    rgba(0,174,255,0.10),
    transparent 70%);

    bottom: -140px;
    left: -100px;

    filter: blur(28px);

}


/* ========================================= */
/* MAIN WRAPPER */
/* ========================================= */

.newsletter-wrapper{

    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 55px;

    flex-wrap: wrap;

}


/* ========================================= */
/* LEFT SIDE */
/* ========================================= */

.newsletter-content{

    flex: 1;
    min-width: 300px;

}

.newsletter-badge{

    display: inline-block;

    padding: 11px 24px;

    border-radius: 40px;

    background: rgba(255,215,0,0.08);

    border: 1px solid rgba(255,215,0,0.28);

    color: gold;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 22px;

    backdrop-filter: blur(12px);

}

.newsletter-heading{

    color: white;

    font-size: 54px;
    line-height: 1.04;
    font-weight: 900;

    margin-bottom: 22px;

}

.newsletter-description{

    color: rgba(255,255,255,0.82);

    font-size: 18px;
    line-height: 1.8;

    max-width: 620px;

    margin-bottom: 34px;

}


/* ========================================= */
/* FEATURES */
/* ========================================= */

.newsletter-points{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

}

.newsletter-point{

    padding: 18px 22px;

    border-radius: 16px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    color: white;

    font-size: 15px;

    backdrop-filter: blur(10px);

    transition: 0.35s ease;

}

.newsletter-point:hover{

    transform: translateY(-4px);

    border-color: gold;

    box-shadow:
    0 0 20px rgba(255,215,0,0.18);

}


/* ========================================= */
/* FORM SIDE */
/* ========================================= */

.newsletter-form-box{

    flex: 1;

    display: flex;
    justify-content: center;

    min-width: 300px;

}

.newsletter-form-card{

    width: 100%;
    max-width: 470px;

    padding: 42px;

    border-radius: 32px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.09),
        rgba(255,255,255,0.03)
    );

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(16px);

    box-shadow:
    0 15px 45px rgba(0,0,0,0.30);

    position: relative;

}

.newsletter-form-card::before{

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
    rgba(255,215,0,0.08);

    top: -90px;
    right: -90px;

    filter: blur(20px);

}

.newsletter-form-card h3{

    color: gold;

    font-size: 34px;
    font-weight: 800;

    margin-bottom: 14px;

}

.newsletter-form-card p{

    color: rgba(255,255,255,0.78);

    line-height: 1.7;

    margin-bottom: 28px;

    font-size: 15px;

}


/* ========================================= */
/* BREVO FORM FIXES */
/* ========================================= */

#sib-form-container{

    width: 100% !important;

}

#sib-container{

    background: transparent !important;

    border: none !important;

    max-width: 100% !important;

}

#sib-form{

    display: flex !important;

    flex-direction: column !important;

    gap: 18px !important;

}

#sib-form .entry__field{

    background: transparent !important;

    border: none !important;

}

#sib-form input{

    width: 100% !important;

    padding: 17px 20px !important;

    border-radius: 15px !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    background: rgba(255,255,255,0.06) !important;

    color: #ffffff !important;

    font-size: 15px !important;

    outline: none !important;

    box-sizing: border-box !important;

    box-shadow: none !important;

}

/* TYPED TEXT */

#sib-form input,
#sib-form input:focus,
#sib-form input:active{

    color: #ffffff !important;

}

/* PLACEHOLDER */

#sib-form input::placeholder{

    color: rgba(255,255,255,0.55) !important;

}

/* FOCUS */

#sib-form input:focus{

    border-color: gold !important;

    background: rgba(255,255,255,0.08) !important;

    box-shadow:
    0 0 18px rgba(255,215,0,0.18) !important;

}

/* REMOVE WHITE BREVO BACKGROUND */

.sib-form,
.sib-form-container{

    background: transparent !important;

}

/* BUTTON */

.sib-form-block__button,
.newsletter-btn{

    width: 100% !important;

    border: none !important;

    padding: 18px !important;

    border-radius: 16px !important;

    background:
    linear-gradient(
        90deg,
        #ffd700,
        #ffb300
    ) !important;

    color: #041027 !important;

    font-size: 17px !important;

    font-weight: 800 !important;

    cursor: pointer !important;

    transition: 0.35s ease !important;

    box-shadow:
    0 0 24px rgba(255,215,0,0.22) !important;

}

.sib-form-block__button:hover,
.newsletter-btn:hover{

    transform: translateY(-4px);

    box-shadow:
    0 0 35px rgba(255,215,0,0.40);

}

/* SUCCESS & ERROR */

.sib-form-message-panel{

    border-radius: 16px !important;

}

/* HIDDEN FIELD */

.input--hidden{

    display: none !important;

}

/* SMALL TEXT */

.newsletter-form-card small{

    display: block;

    margin-top: 18px;

    text-align: center;

    color: rgba(255,255,255,0.52);

    line-height: 1.6;

    font-size: 13px;

}


/* ========================================= */
/* TABLET */
/* ========================================= */

@media(max-width:992px){

    .dna-newsletter-section{

        width: calc(100% - 2cm);

        padding: 55px 6%;

    }

    .newsletter-heading{

        font-size: 46px;

    }

}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:768px){

    .dna-newsletter-section{

        width: calc(100% - 1.2cm);

        margin: 45px auto 50px auto;

        padding: 45px 22px;

        border-radius: 28px;

    }

    .newsletter-wrapper{

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 38px;

        text-align: center;

    }

    .newsletter-content{

        width: 100%;

        min-width: unset;

        display: flex;

        flex-direction: column;

        align-items: center;

    }

    .newsletter-heading{

        font-size: 42px;

        text-align: center;

    }

    .newsletter-description{

        font-size: 16px;

        text-align: center;

        max-width: 100%;

    }

    .newsletter-points{

        width: 100%;

        grid-template-columns: 1fr;

    }

    .newsletter-form-box{

        width: 100%;

        min-width: unset;

        display: flex;

        justify-content: center;

    }

    .newsletter-form-card{

        width: 100%;

        max-width: 100%;

        padding: 34px 24px;

        border-radius: 24px;

    }

    .newsletter-form-card h3{

        font-size: 30px;

        text-align: center;

    }

    .newsletter-form-card p{

        text-align: center;

    }

}


/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media(max-width:480px){

    .dna-newsletter-section{

        width: calc(100% - 0.8cm);

        padding: 40px 18px;

        border-radius: 24px;

    }

    .newsletter-heading{

        font-size: 34px;

    }

    .newsletter-description{

        font-size: 15px;

        line-height: 1.7;

    }

    .newsletter-point{

        font-size: 14px;

        padding: 16px 18px;

    }

    .newsletter-form-card{

        padding: 28px 18px;

    }

    .newsletter-form-card h3{

        font-size: 26px;

    }

    .sib-form-block__button{

        padding: 17px !important;

        font-size: 16px !important;

    }

}