/* main.css */
body {
  background: linear-gradient(135deg, #1e2a38, #11202b);
  color: #f1f1f1;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

header {
  background: rgba(0,0,0,0.5);
}

/* Rocket animation */
.rocket {
  position: absolute;
  top: 80%;
  left: -10%;
  font-size: 3rem;
  color: #ffcd38;
  transform: perspective(600px) rotateX(20deg);
  animation: flyRocket 8s ease-in-out infinite;
}

/* Buttons hover */
.btn-info, .btn-outline-info {
  transition: transform .3s, box-shadow .3s;
}
.btn-info:hover,
.btn-outline-info:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0,255,255,.7);
}

/* Card background dibuat lebih terang dan teks dibuat kontras */
.card {
  background-color: rgba(255, 255, 255, 0.08); /* Lebih terang dari 0.1 */
  color: #f1f1f1; /* Warna teks terang */
  transition: transform 0.3s, box-shadow 0.3s;
}

.card h5,
.card p {
  color: #ffffff; /* Putih terang agar kontras */
}
/* Warna dan background card agar lebih terang */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #f8f9fa;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Efek saat kursor mendekati */
.feature-card:hover {
  transform: scale(1.05) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.1);
}

/* Teks agar terlihat jelas */
.feature-card h5 {
  color: #ffffff;
}

.feature-card p {
  color: #dddddd;
}
/* Animasi saat elemen muncul (via AOS) */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}
/* Tombol animasi saat hover */
.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}
.feature-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
.faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-content {
  display: none;
  margin-top: 10px;
  font-size: 0.95rem;
}

.faq-active .faq-content {
  display: block;
}

.faq-toggle {
  float: right;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
}
.img-hover-glow {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.img-hover-glow:hover {
  transform: scale(1.05) perspective(1000px) translateZ(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}
.btn-glow {
  background: linear-gradient(45deg, #00f0ff, #00c3ff);
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
  transition: all 0.3s ease-in-out;
  border: none;
}

.btn-glow:hover {
  background: linear-gradient(45deg, #00c3ff, #00f0ff);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.9), 0 0 40px rgba(0, 243, 255, 0.4);
  transform: scale(1.05);
  color: #000;
}
.interactive-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 0 transparent;
}

.interactive-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.3);
  cursor: pointer;
}

.interactive-card img {
  transition: transform 0.5s ease;
}

.interactive-card:hover img {
  transform: scale(1.1);
}
/* Styling tombol kecil */
.btn-outline-info {
  border-color: rgba(0, 195, 255, 0.7);
  color: rgba(0, 195, 255, 0.8);
}

.btn-outline-info:hover {
  background-color: rgba(0, 195, 255, 0.1);
  color: #00c3ff;
}
.interactive-card img {
  width: 100%;              /* memenuhi lebar container */
  height: 200px;            /* tinggi tetap untuk semua kartu */
  object-fit: cover;        /* memotong/menge–zoom gambar agar memenuhi area */
  transition: transform 0.5s ease;
}

.interactive-card:hover img {
  transform: scale(1.1);
}
/* DARK GRADIENT + STARFIELD */
.dark-background {
  background: linear-gradient(135deg, #0a0f2c, #001b44);
  position: relative;
  z-index: 1;
}
.starfield {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent url('assets/img/') repeat;
  opacity: 0.2;
  z-index: 0;
  animation: moveStars 100s linear infinite;
}
@keyframes moveStars {
  from { background-position: 0 0; }
  to   { background-position: -10000px 5000px; }
}

/* FLOATING ANIMATION FOR HERO IMAGE */
.hero-float {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100%   { transform: translateY(0); }
  50%        { transform: translateY(-20px); }
}

/* BUTTON STYLING */
.btn-get-started {
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 195, 255, 0.4);
}

/* AOS Overrides (optional) */
[data-aos*="fade-"] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* 1) biar gambar “melight” ke background gelap */
.hero-float {
  mix-blend-mode: screen;      /* atau `lighten`, tergantung hasil yang pas */
  opacity: 0.9;                /* sedikit transparent agar ikut blend */
  /* tetap pertahankan animasi float */
  animation: float 6s ease-in-out infinite;
}

/* 2) overlay mask agar tepian gambar merata ke latar */
.hero-img {
  position: relative;
  overflow: hidden;
}
.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  /* gradient yang memudar ke warna gelap #0a0f2c */
  background: linear-gradient(
    to bottom,
    rgba(10,15,44,0.0) 0%,
    rgba(10,15,44,0.8) 60%,
    rgba(10,15,44,1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* pastikan keyframes float tetap ada di file */
@keyframes float {
  0%, 100%   { transform: translateY(0); }
  50%        { transform: translateY(-20px); }
}
/* Pastikan semua .pic punya container 120×120 */
.team-card .pic {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(0,195,255,0.6);
}

/* Gambar di dalamnya akan dicrop & tidak memanjang */
.team-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effect */
.team-card:hover .pic img {
  transform: scale(1.1);
}

/* Visi & Misi Card */
.vm-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 195, 255, 0.4);
  cursor: pointer;
}

/* Icon Styling */
.vm-icon {
  font-size: 3rem;
  color: #00c3ff;
  transition: transform 0.4s ease;
}
.vm-card:hover .vm-icon {
  transform: rotate(15deg) scale(1.2);
}

/* Section Title */
.section-title h2 {
  font-size: 2.5rem;
}
.section-title p {
  color: rgba(255,255,255,0.7);
}

/* AOS Defaults */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* default: sembunyikan konten */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 16px;
}

/* saat .faq-item mendapat kelas faq-active → buka */
.faq-item.faq-active .faq-content {
  max-height: 200px;     /* atau sesuaikan dengan tinggi konten */
  padding: 16px;
}

/* ubah arah icon */
.faq-item .faq-toggle {
  transition: transform 0.3s ease;
}
.faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

/* styling dasar FAQ (glassmorphism dsb.) */
.faq-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  margin-bottom: 16px;
}
.faq-header {
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}
.faq-icon {
  font-size: 1.5rem;
  color: #00c3ff;
  margin-right: 12px;
}
.faq-header h3 {
  flex: 1;
  color: #fff;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .team-card .pic {
    width: 80px;
    height: 80px;
  }
  .interactive-card img {
    height: 150px;
  }
}
/* === Contact Section Custom Style === */
#contact {
  background: radial-gradient(circle at top left, #0d1b2a, #000);
  color: #f1f1f1;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#contact .section-title h2 {
  color: #00d9ff;
  font-weight: 700;
  font-size: 32px;
}

#contact .section-title p {
  color: #bbb;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

#contact .info-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.1);
}

#contact .info-item {
  margin-bottom: 25px;
  align-items: center;
}

#contact .info-item i {
  font-size: 24px;
  color: #00d9ff;
  margin-right: 20px;
}

#contact .info-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffffff;
}

#contact .info-item p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
}

.php-email-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.05);
}

.php-email-form input,
.php-email-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00d9ff44;
  color: #f1f1f1;
  font-size: 14px;
}

.php-email-form input::placeholder,
.php-email-form textarea::placeholder {
  color: #aaa;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  outline: none;
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.05);
  color: #ffffff;
}
/* Floating hero image */
.hero-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* main.css atau di dalam <style> */

/* Background biru + shadow */
.about.section {
  background-color: #3898cf;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  padding: 60px 0;
  border-radius: 8px;
}

/* Gradient text judul */
.gradient-text {
  background: linear-gradient(45deg, #9d14c7, #ff00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button outline */
.btn-outline-light {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Floating image animation */
.floating-img {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Particles canvas covers section */
#particles-canvas {
  pointer-events: none;
}

/* A simple particles effect (vanilla JS) */
/* main.css atau di dalam <style> */

/* Ganti background biru */
.bg-blue {
  background-color: #0073b7 !important;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  padding: 60px 0;
  border-radius: 8px;
}

/* Gradient text judul */
.gradient-text {
  background: linear-gradient(45deg, #ff00bf, #1900ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button outline */
.btn-outline-light {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Floating image animation */
.floating-img {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

  header.header {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  .sitename {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0ff; /* neon cyan */
    text-shadow: 0 0 5px #0ff;
  }

  nav#navmenu ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  nav#navmenu ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s;
  }

  nav#navmenu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0ff;
    transition: width 0.3s ease-in-out;
  }

  nav#navmenu ul li a:hover::after,
  nav#navmenu ul li a.active::after {
    width: 100%;
  }

  nav#navmenu ul li a:hover,
  nav#navmenu ul li a.active {
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
  }

  .btn-getstarted {
    background: linear-gradient(135deg, #0ff, #00f2ff);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 0 10px #0ff;
  }

  .btn-getstarted:hover {
    background: linear-gradient(135deg, #00c2ff, #0ff);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 15px #00f0ff;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
  /* Main CSS (tambah di main.css atau dalam <style>) */

/* 1. Background biru global */
.bg-blue {
  background-color: #0073b7 !important;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.1);
}

/* 2. Glassmorphism card */
.vm-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* 3. Icon styling */
.vm-icon i {
  font-size: 2.5rem;
  color: #ffd54f; /* soft amber for contrast */
  transition: color 0.3s ease, transform 0.3s ease;
}
.vm-card:hover .vm-icon i {
  color: #ffeb3b;
  transform: scale(1.2) rotate(-10deg);
}

/* 4. Ensure text readability */
.section-title h2,
.vm-card h4 {
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.text-light, .text-info {
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
/* main.css atau <style> */

/* Latar putih untuk section */
.bg-light {
  background-color: #ffffff !important;
}

/* Glassmorphism card di atas putih */
.feature-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Ikon animasi dan warna kontras */
.feature-icon {
  transition: transform 0.3s, color 0.3s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(-10deg);
  /* tetap gunakan warna asli dari kelas text-*, misal text-primary */
}

/* Teks default untuk section putih */
.text-dark {
  color: #212529 !important;
}
.text-secondary {
  color: #6c757d !important;
}
/* Efek glass-style dengan latar putih */
.feature-card-glass {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Ikon animasi */
.feature-icon i {
  font-size: 3rem;
  transition: transform 0.3s ease;
}
.feature-card-glass:hover .feature-icon i {
  transform: scale(1.2) rotate(-5deg);
}

/* Warna teks konsisten */
.feature-card-glass h5 {
  color: #212529;
}
.feature-card-glass p {
  color: #444;
}
/* 1. Soft blue sebagai background section */
.bg-soft-blue {
  background-color: #b3e5fc !important; /* Light Sky Blue */
}

/* 2. Glass-card untuk konten window */
.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* 3. Teks gelap untuk keterbacaan */
.text-dark {
  color: #212529 !important;
}

/* 4. Primary accent untuk ikon & judul */
.text-primary {
  color: #0277bd !important; /* lebih gelap sedikit */
}

/* 5. Gradient khusus pada judul About */
.gradient-text {
  background: linear-gradient(45deg, #0277bd, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 6. Floating image animation */
.floating-img {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 7. Particles canvas click-through */
#particles-canvas {
  pointer-events: none;
}

/* 8. Icon hover animasi */
.vm-icon i,
.feature-icon i {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}
.glass-card:hover .vm-icon i,
.glass-card:hover .feature-icon i {
  transform: scale(1.2) rotate(-10deg);
}
/* main.css atau <style> di head */

/* 1. Latar biru muda */
.bg-soft-blue {
  background-color: #b3e5fc !important;
}

/* 2. Gradient pada judul */
.gradient-text {
  background: linear-gradient(45deg, #0277bd, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3. Tipografi dan spacing */
.about .section-title h2 {
  margin-bottom: 0.5rem;
}
.about .section-title p {
  color: #555;
}
.about .lead {
  font-size: 1.125rem;
  line-height: 1.8;
}
.about ul li {
  font-size: 1rem;
  line-height: 1.6;
}

/* 4. Ikon check berwarna kontras */
.about ul li i {
  font-size: 1.25rem;
}

/* 5. Teks utama */
.text-dark {
  color: #212529 !important;
}

.floating-img-wrapper {
  pointer-events: none;
}

.floating-img {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
/* Soft-blue background for both sections */
.bg-soft-blue {
  background-color: #b3e5fc !important;
}

/* Glass-card styling */
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Hover lift for cards */
.feature-card-glass:hover,
.accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Icon animation */
.feature-icon i,
.accordion-button i {
  transition: transform 0.3s ease;
}
.feature-card-glass:hover .feature-icon i,
.accordion-item:hover .bi {
  transform: scale(1.1) rotate(-5deg);
}

/* 3D image glow & hover */
.img-3d-wrapper {
  perspective: 800px;
}
.img-hover-glow {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.img-hover-glow:hover {
  transform: scale(1.05) translateZ(20px);
  box-shadow: 0 0 30px rgba(0,195,255,0.4);
}

/* Ensure accordion buttons stand out */
.accordion-button {
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  color: #0277bd;
}
.accordion-button:not(.collapsed) {
  background: #0277bd;
  color: #fff;
}
/* Penajaman warna untuk Features Section */

/* Judul dan paragraf section */
.section-title h2 {
  color: #012F4B;    /* biru tua untuk kontras */
}
.section-title p {
  color: #333;       /* abu gelap */
}

/* Card dasar putih, tepi halus */
.feature-card {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Teks dalam card */
.feature-card h5 {
  color: #012F4B;    /* gelap, kontras */
}
.feature-card p {
  color: #555;       /* abu sedang */
}

/* Ikon warna aksen yang kontras */
.feature-icon i {
  font-size: 3rem;
  color: #0277BD;    /* biru cerah */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover efek pada card */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.feature-card:hover .feature-icon i {
  color: #014A75;    /* biru lebih gelap saat hover */
  transform: scale(1.2) rotate(-5deg);
}
/* Tambahkan ke main.css */

/* Soft-blue background untuk section */
.bg-soft-blue {
  background-color: #b3e5fc;
}

/* Frame di sekitar gambar */
.image-frame {
  padding: 8px;
  background: rgba(255,255,255,0.9);
  border: 2px solid #0277bd;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Gaya untuk gambar di dalam frame */
.image-frame .img-shadow {
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Glass-card untuk FAQ items */
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Pastikan teks dan tombol accordion terlihat */
.accordion-button {
  color: #0277bd;
}
.accordion-button:not(.collapsed) {
  background: #0277bd;
  color: #fff;
}
/* Soft blue background */
.bg-soft-blue {
  background-color: #b3e5fc;
}

/* Frame seperti di "Why Us" */
.image-frame {
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #0288d1;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Gambar animasi saat hover */
.img-shadow.hover-animate {
  transition: transform 0.4s ease;
}
.img-shadow.hover-animate:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* Progress bar start from 0% */
.skill-progress {
  width: 0;
  transition: width 1.5s ease-in-out;
}
.image-frame {
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #0288d1;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.img-shadow.hover-animate {
  transition: transform 0.4s ease;
}
.img-shadow.hover-animate:hover {
  transform: scale(1.05) rotate(-1deg);
}
/* main.css */

/* 1. Background biru Web 3.0 */
.bg-main-blue {
  background-color: #0277bd !important;
}

/* 2. Glassmorphism card umum */
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* 3. Interactive card styling */
.interactive-card img {
  border-radius: 8px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.interactive-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* 4. Portfolio filters */
.portfolio-filters li {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.portfolio-filters li.filter-active,
.portfolio-filters li:hover {
  background: #fff;
  color: #0277bd;
}

/* 5. Team card */
.team-card .pic img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.team-card h5,
.team-card span,
.team-card p {
  color: #fff;
}
.team-card .social a {
  margin: 0 0.3rem;
}
/* main.css */

/* Background biru gelap */
.bg-main-blue {
  background-color: #0277bd !important;
}

/* Glass-card umum */
.glass-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Filters */
.portfolio-filters li {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.portfolio-filters li.filter-active,
.portfolio-filters li:hover {
  background: #fff;
  color: #0277bd;
}

/* Interactive card image hover */
.interactive-card img {
  border-radius: 8px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.interactive-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Text styling */
.text-white-75 {
  color: rgba(255,255,255,0.75) !important;
}

/* Team card picture */
.team-card .pic img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

/* Social icon */
.team-card .social a {
  margin: 0 0.3rem;
  transition: color 0.3s;
}
.team-card .social a:hover {
  color: #fff;
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-button {
  background-color: transparent;
  color: #fff;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.08);
  color: #0ff;
}

.accordion-body {
  font-size: 0.95rem;
}
.bg-dark-blue {
  background-color: #0b1c2c;
}
/* Efek glow dan animasi floating */
.hero img.animated {
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.2));
  animation: float 6s ease-in-out infinite;
}

.hero img.animated:hover {
  transform: scale(1.05) rotateZ(1deg);
  filter: drop-shadow(0 8px 20px rgba(0, 255, 255, 0.5));
}

/* Animasi mengambang lembut */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
/* Tombol Login di Navbar */
.navmenu .btn {
  padding: 6px 16px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.navmenu .btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Atur list dan button sejajar */
.navmenu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}
/* Starfield Canvas Background */
.starfield {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  z-index: 0;
  overflow: hidden;
}

/* Hero Section Gradient */
.dark-background {
  background: linear-gradient(135deg, #1a1a40 0%, #3c00a0 100%);
  color: white;
  position: relative;
  z-index: 1;
}

/* Navbar Stylish Elegan */
header.header {
  background-color: #0073b7 !important;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 15px 0;
  transition: background-color 0.3s ease;
  z-index: 9999;
}

/* Logo Phyxera */
.logo .sitename {
  font-size: 24px;
  font-weight: 600;
  color: white;
}

/* Navbar Menu Style */
nav#navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
nav#navmenu ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
nav#navmenu ul li a.active,
nav#navmenu ul li a:hover {
  color: #d4f0ff;
}

/* Get Started Button */
.btn-getstarted {
  background: #0d6efd;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
  margin-left: 20px;
}
.btn-getstarted:hover {
  background: #0056b3;
  color: #fff;
}
.offcanvas {
  transition: transform 0.4s ease-in-out;
}

.offcanvas.show {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: cyan;
  color: cyan;
  transition: all 0.3s ease-in-out;
}

.btn-light:hover {
  background-color: #ddd;
  color: black;
}
.glass-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
/* Background utama biru Phyxera */
.bg-main-blue {
  background-color: rgb(2, 119, 189) !important;
}

/* Tombol nav mobile */
#header .btn i {
  transition: 0.3s ease;
}

#header .btn:hover i {
  transform: rotate(90deg);
}

/* Offcanvas nav link hover */
.offcanvas .nav-link:hover {
  text-decoration: underline;
  color: #e3f2fd !important;
}

/* Responsif logo teks */
.sitename {
  font-size: 1.5rem;
}

/* Optional: smooth transition */
.offcanvas, .navbar-nav .nav-link {
  transition: all 0.3s ease-in-out;
}
.skills-section {
  background-color: rgb(237, 246, 253); /* warna biru soft */
  color: #1a1a1a;
}

.section-title {
  color: rgb(2, 119, 189);
  font-weight: 700;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.6;
}

.image-frame img {
  max-width: 100%;
  border-radius: 1rem;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s ease-in-out;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .progress {
    height: 6px;
  }
}
.skills-section {
  background-color: #b3e5fc;
  color: #1a1a1a;
}

.section-title {
  color: rgb(2, 119, 189);
  font-weight: 700;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.6;
}

.image-frame img {
  max-width: 100%;
  border-radius: 1rem;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .progress {
    height: 6px;
  }
}
.btn-glow {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 201, 255, 0.6);
    transition: all 0.3s ease;
  }
  .btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 201, 255, 0.9);
    transform: translateY(-3px);
    color: #000;
  }
  .btn-modern-glow {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(270deg, #00f2fe, #4facfe, #00f2fe);
  background-size: 600% 600%;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
  transition: all 0.4s ease-in-out;
  animation: gradientMove 8s ease infinite;
  position: relative;
  z-index: 2;
}

.btn-modern-glow:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
  color: #fff;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsif otomatis */
@media (max-width: 576px) {
  .btn-modern-glow {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}



  


