@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ---------- Reset + Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #ffffff;
  background: #010312;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Video Background ---------- */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* ---------- Navbar ---------- */
/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  position: relative;
  z-index: 3;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  height: 78px;
  width: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.06);
  margin-bottom: 6px;
}

.logo h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-right {
  display: flex;
  list-style: none;
  gap: 18px;
}

.nav-right li a {
  text-decoration: none;
  color: antiquewhite;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.nav-right li a:hover {
  background: #64ffda;
  color: #000;
  transform: translateY(-1px);
}


/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  text-align: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 130px;
  z-index: 2;
}

.text-box h1 {
  font-size: 3rem;
  color: #64ffda;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.text-box p {
  font-size: 1.2rem;
  color: #eaf6ff;
  line-height: 1.8;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  max-width: 720px;
  margin: 0 auto 30px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #64ffda;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background: #4ee3c0;
  transform: translateY(-2px);
}

/* ---------- Info Section ---------- */
.info-wrapper {
  display: flex;
  justify-content: center;
  padding: 70px 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}

.info-box {
  padding: 26px;
  background: linear-gradient(180deg, rgba(10,20,36,0.06), rgba(10,20,36,0.03));
  border-radius: 12px;
  color: #eaf6ff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.info-box h2 {
  color: #64ffda;
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: left;
}

.info-box ul {
  list-style: disc;
  padding-left: 22px;
  color: #dbeeff;
  line-height: 1.6;
}

.info-box ul li { margin-bottom: 10px; }

/* ---------- Footer ---------- */
.footer {
  background: #0a192f;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 46px;
  text-align: center;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section h2 { color: #64ffda; margin-bottom: 14px; }

.footer-section ul { list-style: none; margin-top: 8px; }

.footer-section ul li a { color: #fff; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; justify-content: center; }

.footer-section ul li a:hover { color: #64ffda; }

.footer-section p { margin: 8px 0; font-size: 0.98rem; }
.footer-section a {
  color: #64ffda;
  text-decoration: none;
}

.social-icons { display: flex; justify-content: center; gap: 16px; margin-top: 12px; }

.social-icons a { font-size: 1.5rem; color: white; transition: transform 0.25s, color 0.25s; }

.social-icons a:hover { color: #64ffda; transform: scale(1.1); }

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #1d3557;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-branch h3 { color: #64ffda; margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .logo img { height: 68px; width: 68px; }
  .text-box h1 { font-size: 2.4rem; }
  .text-box p { font-size: 1rem; margin-bottom: 25px; }
}
.text-box h1::after {
  content: '|';
  animation: blink 0.8s infinite;
  color: #64ffda;
}

@keyframes blink {
  50% { opacity: 0; }
}

