    :root{
      --green: #2597f4;
      --dark:#0f172a;
      --light:#f8fafc;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    body{
      background:
        radial-gradient(circle at 10% 20%, rgba(34,197,94,0.15), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16,185,129,0.15), transparent 40%),
        linear-gradient(180deg, #f8fafc, #ecfeff);
      color:#1e293b;
      overflow-x:hidden;
      min-height:100vh;
    }
/* ===== NAVBAR TRANSPARAN BLUR ===== */
.header{
  position:fixed;
  top:20px;
  left:0;
  width:100%;
  z-index:1000;
  display:flex;
  justify-content:center;
}

.glass-nav{
  width:92%;
  max-width:1200px;
  padding:14px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:rgba(255,255,255,0.15); /* transparan */
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);

  border-radius:60px;
  border:1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15),
    inset 0 1px 1px rgba(255,255,255,0.3);

  transition:.4s ease;
}

/* Saat scroll (sedikit lebih jelas) */
.glass-nav.scrolled{
  background:rgba(255,255,255,0.35);
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

/* LOGO */
.logo img{
  width:46px;
  transition:.8s ease;
}

.logo:hover img{
  transform:rotate(360deg) scale(1.1);
  filter:drop-shadow(0 0 12px  #2597f4);
}

/* MENU */
.nav-menu{
  display:flex;
  gap:32px;
  list-style:none;
}

.nav-menu a{
  position:relative;
  text-decoration:none;
  color:#020617;
  font-weight:600;
  padding:8px 6px;
  transition:.3s;
}

/* underline glow */
.nav-menu a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:3px;
  background:linear-gradient(135deg, #2597f4, #2597f4);
  border-radius:10px;
  transition:.4s;
  transform:translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active{
  color: #2597f4;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
  width:100%;
}

/* MENU BUTTON */
.menu-btn{
  display:none;
  font-size:1.6rem;
  cursor:pointer;
  color: #2597f4;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .glass-nav{
    padding:14px 22px;
  }

  .nav-menu{
    position:absolute;
    top:85px;
    right:-100%;
    flex-direction:column;
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(25px);
    width:240px;
    padding:25px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.35);
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    transition:.4s;
  }

  .nav-menu.active{
    right:20px;
  }

  .menu-btn{
    display:block;
  }
}


    .nav{
      max-width:1200px;
      margin:auto;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:15px 20px;
    }

    /* ===== LOGO NAVBAR ===== */
.logo{
  display:flex;
  align-items:center;
  cursor:pointer;
}

.logo img{
  width:48px;
  height:auto;
  transition:transform .8s ease;
  transform-origin:center;
}

/* Hover desktop */
.logo:hover img{
  transform:rotate(360deg) scale(1.05);
}

/* Aktif (tap HP) */
.logo img:active{
  transform:rotate(360deg) scale(1.1);
}

/* Responsive */
@media(max-width:768px){
  .logo img{
    width:42px;
  }
}
.logo:hover img{
  transform:rotate(360deg) scale(1.1);
  filter:drop-shadow(0 0 12px  #2597f4);
}


    .nav ul{
      list-style:none;
      display:flex;
      gap:25px;
    }

    .nav ul li a{
      text-decoration:none;
      color:#1e293b;
      font-weight:500;
      position:relative;
      padding:5px 0;
      transition:0.3s;
    }

    /* Hover effect navbar */
    .nav ul li a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-5px;
      width:0;
      height:3px;
      background:var(--green);
      transition:0.3s;
      border-radius:10px;
    }

    .nav ul li a:hover{
      color:var(--green);
    }

    .nav ul li a:hover::after{
      width:100%;
    }

    .menu-btn{
      display:none;
      font-size:1.5rem;
      cursor:pointer;
    }

    /* ================= HERO ================= */
    .hero{
      height:100vh;
      background:
        linear-gradient(rgba(15,23,42,0.6), rgba(15,23,42,0.6)),
        url('image3.png') center/cover;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:white;
    }

    .hero-content{
      max-width:800px;
      padding:20px;
      animation: fadeUp 1.2s ease forwards;
    }

    .hero-content h1{
  max-width:700px;
  margin:auto;
  line-height:1.2;
}

@media(max-width:768px){
  .hero-content h1{
    max-width:100%;
    font-size:2.2rem;
  }
}


    .hero h1{
      font-size:3rem;
      font-weight:800;
      letter-spacing:2px;
      color:var(--green);
      text-shadow:0 5px 20px rgba(0,0,0,0.5);
    }

    .hero h2{
      font-size:2.2rem;
      margin:10px 0;
    }

    .hero p{
      margin:15px 0 30px;
      font-size:1rem;
      opacity:0.9;
    }

    .btn{
      display:inline-block;
      padding:12px 30px;
      background:var(--green);
      color:white;
      border-radius:30px;
      text-decoration:none;
      font-weight:600;
      transition:0.3s;
      box-shadow:0 10px 25px  #2597f4;
    }

    .btn:hover{
      transform:translateY(-5px) scale(1.05);
      box-shadow:0 15px 35px  #2597f4;
    }

    /* ================= SECTION ================= */

    .container{
      max-width:1200px;
      margin:auto;
    }

    .title{
      text-align:center;
      margin-bottom:60px;
    }

    .title h3{
      font-size:2rem;
      color:var(--green);
    }

    .cards{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:30px;
    }

    /* ABOUT SECTION */
    .about{
      position:relative;
      overflow:hidden;
    }

    .about::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, rgba(34,197,94,0.12), transparent 60%),
        radial-gradient(circle at bottom right, rgba(14,165,233,0.15), transparent 40%);
      z-index:-1;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
    }

    .about-img img{
      width:100%;
      border-radius:25px;
      box-shadow:0 25px 50px rgba(0,0,0,0.2);
      transition:0.5s;
    }

    .about-img img:hover{
      transform:scale(1.05) rotate(-1deg);
    }

    .about-text h3{
      font-size:2.2rem;
      color:var(--green);
      margin-bottom:15px;
    }

    .about-text p{
      margin-bottom:15px;
      line-height:1.7;
      opacity:0.9;
    }

    .card{
      background:white;
      padding:30px;
      border-radius:20px;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      transition:0.4s;
      transform:translateY(40px);
      opacity:0;
    }

    .card.show{
      transform:translateY(0);
      opacity:1;
    }

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

    .card i{
      font-size:2.5rem;
      color:var(--green);
      margin-bottom:15px;
    }

    .card h4{
      margin-bottom:10px;
    }

    /* ================= FOOTER ================= */
    footer{
      background:var(--dark);
      color:#cbd5f5;
      text-align:center;
    }

    /* ================= ANIMATION ================= */
    @keyframes fadeUp{
      from{opacity:0; transform:translateY(40px);}
      to{opacity:1; transform:translateY(0);}
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width:768px){
      .nav ul{
        position:absolute;
        top:70px;
        right:-100%;
        background:white;
        flex-direction:column;
        width:200px;
        padding:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
        transition:0.3s;
      }

      .nav ul.active{
        right:20px;
      }

      .menu-btn{
        display:block;
      }

      .hero h1{
        font-size:2.2rem;
      }

      .hero h2{
        font-size:1.6rem;
      }

      .about-grid{
        grid-template-columns:1fr;
      }
    }
    /* ================= VIDEO PROFILE PREMIUM ================= */
.video-profile{
  position:relative;
  background:linear-gradient(120deg, #0a4474,  #2597f4);
  color:white;
  overflow:hidden;
}

.video-overlay{
  position:absolute;
  inset:0;
  background:url('image4.png') center/cover;
  opacity:0.15;
}

.video-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  padding:120px 20px;
}

.badge{
  display:inline-block;
  padding:6px 16px;
  border:1px solid rgba(255,255,255,.6);
  border-radius:20px;
  font-size:.8rem;
  margin-bottom:15px;
}

.video-text h2{
  font-size:2.4rem;
  font-weight:700;
  margin-bottom:20px;
}

.video-text p{
  opacity:.95;
  max-width:520px;
  margin-bottom:30px;
}

.video-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-outline{
  background:white;
  color: #2597f4;
  box-shadow:none;
}

.video-box{
  position:relative;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.video-box img{
  width:100%;
  display:block;
}

.play-btn{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3.5rem;
  color:white;
  background:rgba(0,0,0,.35);
  transition:.4s;
}

.play-btn:hover{
  background:rgba(0,0,0,.55);
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
  .video-grid{
    grid-template-columns:1fr;
    padding:80px 20px;
    text-align:center;
  }
  .video-actions{
    justify-content:center;
  }
}
/* FASILITAS */
.facilities{
  background:#fff;
  padding:120px 20px;
  position:relative;
  overflow:hidden;
}

.fac-title{
  text-align:center;
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:70px;
  color:#020617;
}

.fac-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px 50px;
}

.fac-item{
  display:flex;
  align-items:center;
  gap:18px;
  padding:26px 30px;
  border-radius:18px;
  font-weight:600;
  font-size:1.05rem;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
}

.fac-item i{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
}

/* Hijau */
.fac-item.green{
  background:linear-gradient(135deg, #2597f4, #2597f4);
  color:white;
}
.fac-item.green i{
  background:white;
  color: #2597f4;
}

/* Outline */
.fac-item.outline{
  background:#f8fafc;
  border:2px solid  #2597f4;
  color:#020617;
}
.fac-item.outline i{
  background: #2597f4;
  color:white;
}

.fac-item:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 25px 60px  #04335a;
}

/* Responsive */
@media(max-width:900px){
  .fac-grid{
    grid-template-columns:1fr;
  }
}
/* STATISTIK */
.stats{
  padding:120px 20px;
  background:linear-gradient(135deg,#f0fdf4,#ecfeff);
  position:relative;
  overflow:hidden;
}

.stats-title{
  text-align:center;
  font-size:2.3rem;
  font-weight:700;
  margin-bottom:70px;
  color: #2597f4;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}

.stat-card{
  background:rgba(255,255,255,.25);
  backdrop-filter:blur(20px);
  border-radius:28px;
  padding:45px 30px;
  text-align:center;
  box-shadow:0 25px 60px rgba(34, 124, 197, 0.25);
  transition:.5s;
  position:relative;
}

.stat-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  background:linear-gradient(135deg,transparent,#133fc333,transparent);
  opacity:0;
  transition:.5s;
}

.stat-card:hover::after{
  opacity:1;
}

.stat-card:hover{
  transform:translateY(-12px) scale(1.05);
  box-shadow:0 40px 90px rgba(11, 84, 123, 0.5);
}

.stat-card i{
  font-size:2.8rem;
  color: #2597f4;
  margin-bottom:15px;
}

.stat-card h3{
  font-size:3rem;
  font-weight:800;
  color:#020617;
}

.stat-card p{
  margin-top:10px;
  font-weight:600;
  opacity:.8;
}
/* ===== GALERI ===== */
.gallery{
  padding:120px 20px;
  background:linear-gradient(135deg,#f0fdf4,#ecfeff);
}

.gal-title{
  text-align:center;
  font-size:2.4rem;
  font-weight:800;
  color: #2597f4;
  margin-bottom:40px;
}

/* BUTTON */
.gal-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.gal-btn{
  padding:10px 26px;
  border-radius:50px;
  border:2px solid  #2597f4;
  background:transparent;
  color: #2597f4;
  font-weight:600;
  cursor:pointer;
  transition:.4s;
}

.gal-btn.active,
.gal-btn:hover{
  background:linear-gradient(135deg, #2597f4, #1763a2);
  color:white;
  box-shadow:0 10px 30px rgba(34, 110, 197, 0.4);
}

/* GRID */
.gal-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.gal-item{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  transform:scale(.9);
  opacity:0;
  transition:.5s;
}

.gal-item.show{
  transform:scale(1);
  opacity:1;
}

.gal-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.6s;
}

.gal-item:hover img{
  transform:scale(1.1);
}
/* ===== TIMELINE ===== */
.timeline{
  padding:120px 20px;
  background:linear-gradient(180deg,#f0fdf4,#ffffff);
}

.timeline-title{
  text-align:center;
  font-size:2.6rem;
  font-weight:800;
  color: #2597f4;
}

.timeline-sub{
  text-align:center;
  max-width:600px;
  margin:15px auto 70px;
  opacity:.8;
}

.timeline-wrapper{
  position:relative;
  max-width:900px;
  margin:auto;
}

.timeline-wrapper::before{
  content:'';
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:4px;
  height:100%;
  background:linear-gradient(180deg, #2597f4, #1347b5);
  border-radius:10px;
}

.timeline-item{
  position:relative;
  width:50%;
  padding:20px 40px;
}

.timeline-item.left{left:0}
.timeline-item.right{left:50%}

.timeline-item::before{
  content:'';
  position:absolute;
  top:30px;
  width:18px;
  height:18px;
  background: #2597f4;
  border-radius:50%;
  box-shadow:0 0 0 6px rgba(34,197,94,.25);
}

.timeline-item.left::before{right:-9px}
.timeline-item.right::before{left:-9px}

.timeline-content{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(15px);
  padding:25px 30px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
  transform:translateY(40px);
  opacity:0;
  transition:.6s;
}

.timeline-content.show{
  transform:none;
  opacity:1;
}

.timeline-content .year{
  display:inline-block;
  font-weight:800;
  color:white;
  background:linear-gradient(135deg, #2597f4, #2597f4);
  padding:6px 18px;
  border-radius:50px;
  margin-bottom:12px;
}

.timeline-content h4{
  margin-bottom:10px;
  color:#022c22;
}

/* RESPONSIVE */
@media(max-width:900px){
  .timeline-wrapper::before{left:8px}
  .timeline-item{
    width:100%;
    padding-left:40px;
    padding-right:10px;
    left:0!important;
  }
  .timeline-item::before{
    left:0;
  }
}
/* IMAGE DI TIMELINE */
.timeline-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:15px;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
  transition:.5s;
}

.timeline-content:hover .timeline-img{
  transform:scale(1.05);
}
/* ===== TESTIMONI ===== */
.testimoni{
  position:relative;
  padding:120px 20px;
  background:url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1') center/cover fixed;
  color:white;
}

.testi-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(2,6,23,.85),rgba(2,6,23,.85));
  z-index:0;
}

.testimoni .container{
  position:relative;
  z-index:1;
}

.testi-title{
  text-align:center;
  font-size:2.6rem;
  font-weight:800;
  margin-bottom:10px;
  color: #2597f4;
}

.testi-sub{
  text-align:center;
  margin-bottom:60px;
  opacity:.85;
}

.testi-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

.testi-card{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(18px);
  border-radius:25px;
  padding:35px;
  box-shadow:0 30px 70px rgba(0,0,0,.4);
  transition:.5s;
  transform:translateY(40px);
  opacity:0;
}

.testi-card.show{
  transform:none;
  opacity:1;
}

.testi-card:hover{
  transform:translateY(-10px) scale(1.03);
}

.stars{
  font-size:1.4rem;
  color:#facc15;
  margin-bottom:15px;
  letter-spacing:3px;
}

.testi-card p{
  font-style:italic;
  line-height:1.7;
  margin-bottom:18px;
}

.testi-card h4{
  font-weight:700;
  color: #4c9ee1;
}

/* RESPONSIVE */
@media(max-width:768px){
  .testi-title{font-size:2rem}
}
/* ===== FAQ ===== */
.faq{
  padding:120px 20px;
  background:linear-gradient(135deg,#f0fdf4,#ecfeff);
}

.faq-title{
  text-align:center;
  font-size:2.6rem;
  font-weight:800;
  color: #2597f4;
}

.faq-sub{
  text-align:center;
  margin:15px auto 60px;
  max-width:600px;
  opacity:.8;
}

.faq-item{
  background:rgba(255,255,255,.9);
  border-radius:20px;
  margin-bottom:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
  overflow:hidden;
  transition:.4s;
}

.faq-question{
  padding:22px 30px;
  cursor:pointer;
  font-weight:600;
  position:relative;
  background:linear-gradient(135deg, #2597f4, #155991);
  color:white;
}

.faq-question::after{
  content:'+';
  position:absolute;
  right:25px;
  font-size:1.6rem;
  transition:.4s;
}

.faq-item.active .faq-question::after{
  content:'−';
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
  background:white;
}

.faq-item.active .faq-answer{
  max-height:500px;
}

.faq-answer ul,
.faq-answer p{
  padding:25px 30px;
  line-height:1.8;
}

.faq-answer li{
  margin-bottom:10px;
}
/* ===== FOOTER ===== */
.footer{
  position:relative;
  background:url('image.png') center/cover;
  color:#e5e7eb;
}

.footer-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(2,6,23,.92),rgba(2,6,23,.92));
}

.footer-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
  padding-bottom:60px;
}

.footer-brand h2{
  color: #2597f4;
  font-weight:800;
  margin-bottom:15px;
}

.footer-brand p{
  line-height:1.8;
  opacity:.85;
}

.footer-address h4,
.footer-social h4{
  margin-bottom:15px;
  color: #2597f4;
}

.footer-address p{
  line-height:1.8;
  opacity:.85;
}

/* SOCIAL ICON */
.social-icons{
  display:flex;
  gap:18px;
}

.social-icons a{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:white;
  font-size:1.2rem;
  transition:.4s;
}

.social-icons a:hover{
  background:linear-gradient(135deg, #2597f4, #135992);
  transform:translateY(-6px) scale(1.1);
  box-shadow:0 15px 40px #2597f4;
}

/* BOTTOM */
.footer-bottom{
  position:relative;
  z-index:1;
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  padding:25px 20px;
  font-size:.9rem;
  opacity:.8;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer{text-align:center}
  .social-icons{justify-content:center}
}

/* ================= EXTRA RESPONSIVE FIX ================= */

/* HP KECIL */
@media(max-width:480px){

  .hero{
    padding:0 15px;
  }

  .hero h1{
    font-size:1.9rem;
  }

  .hero h2{
    font-size:1.3rem;
  }

  .hero p{
    font-size:.95rem;
  }

  .btn{
    padding:10px 22px;
    font-size:.9rem;
  }

  .about-text h3,
  .title h3,
  .fac-title,
  .stats-title,
  .gal-title,
  .timeline-title,
  .testi-title,
  .faq-title{
    font-size:1.6rem;
  }

  .stats-grid{
    gap:20px;
  }

  .stat-card h3{
    font-size:2.3rem;
  }

  .timeline-img{
    height:140px;
  }

  .testi-card{
    padding:25px;
  }

  .faq-question{
    padding:18px 20px;
    font-size:.95rem;
  }

  .faq-answer ul,
  .faq-answer p{
    padding:18px 20px;
  }

  .footer-grid{
    gap:30px;
  }

  .social-icons a{
    width:40px;
    height:40px;
    font-size:1rem;
  }
}

/* TABLET */
@media(max-width:768px){

  section{
    padding:90px 15px;
  }

  .cards{
    gap:20px;
  }

  .card{
    padding:25px;
  }

  .video-text h2{
    font-size:1.9rem;
  }

  .video-text p{
    font-size:.95rem;
  }

  .gal-item img{
    height:200px;
  }
}

/* LAPTOP BESAR */
@media(min-width:1400px){
  .container{
    max-width:1350px;
  }

  .hero h1{
    font-size:3.5rem;
  }

  .hero h2{
    font-size:2.5rem;
  }
}
/* TYPING EFFECT */
#typing-text{
  border-right:4px solid #ffffff;
  padding-right:6px;
  display:inline-block;
  max-width:100%;
  word-wrap:break-word;
  overflow-wrap:break-word;
  animation: blink 0.8s infinite;
  color: whitesmoke;
  font-size: 20px;
}


@keyframes blink{
  0%,100%{border-color:transparent}
  50%{border-color:#ffffff}
}
/* Animasi floating + shadow */
.floating-shadow {
  display: inline-block;
  font-size: 60px; /* bisa sesuaikan */
  color: #ffffff; /* warna teks */
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); /* shadow awal */
  animation: float-shadow 3s ease-in-out infinite;
}

@keyframes float-shadow {
  0% {
    transform: translateY(0px);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateY(-15px);
    text-shadow: 0 15px 25px rgba(0, 0, 0, 0.5); /* shadow lebih besar saat naik */
  }
  100% {
    transform: translateY(0px);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
}
/* Animasi glowing / kilat pada <p> */
.flash-light {
  color: #ffffff;
  font-size: 18px;
  position: relative;
  animation: flash 2s infinite;
}

@keyframes flash {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2),
                 0 0 10px rgba(255, 255, 255, 0.2),
                 0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 10px #ffffff,
                 0 0 20px #ffffff,
                 0 0 30px #ffffff,
                 0 0 40px #2597f4; /* cahaya kilat biru lembut */
    color: #ffffe0; /* sedikit terang saat flash */
  }
}
/* Lokasi Navbar */
.nav-location a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  margin-right: 20px;
}

.nav-location i {
  color: #2597f4;
  font-size: 16px;
}

.nav-location a:hover {
  color: #2597f4;
}
/* Thumbnail Video */
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Tombol Play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: 0.3s;
}

.video-thumb:hover .play-btn {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* MODAL */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Konten Modal */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Close Button */
.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}


