/* ==== GENERAL RESET ==== */
/* ==== GENERAL RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🚫 Prevent horizontal scroll */
  width: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: white;
  line-height: 1.6;
  overflow-y: scroll;
}

/* === Optional Background Video and Overlay === */
#background-video {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: blur(8px);
}
body::after {
  content: "";
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

/* ==== HEADER ================================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  z-index: 100;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  font-size: 28px;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links a i {
  font-size: 20px;
}

/* Underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #00e6e6;
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-links a:hover {
  color: #00e6e6;
  transform: scale(1.05);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
  transform: scale(1.1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



/* ==== MAIN ABOUT SECTION ================================================================ */
.about-section {
  padding: 100px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: fadeSlideIn 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  min-height: 80vh;         /* Minimum height: 80% of screen */
  display: flex;            /* To center content */
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}


.about-section .about-container h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: #00e6e6;
  text-align: left;
}

.about-section p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 16px;
  text-align: left;
}

/* ==== ANIMATION ==== */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== FOOTER =============================================================================== */
.footer {
  width: 100vw;
  margin: 0;
  padding: 60px 20px;
  background: rgba(0, 20, 20, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #ccc;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  box-shadow: 0 -4px 16px rgba(0, 230, 230, 0.1);
  border-top: none;
  position: relative;
  z-index: 2;
  animation: slideFadeIn 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  border-radius: 20px 20px 0 0;
}

.footer-bottom {
  width: 100vw;
  margin: 0;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

.footer-contact,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-contact h4,
.footer-social h4 {
  color: #00e6e6;
  margin-bottom: 12px;
}

.footer-contact p,
.footer-contact a {
  color: #bbb;
  margin: 6px 0;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(180, 100%, 45%);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.social-wrapper {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.social-icons li {
  width: 100%;
}

.social-icons a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: #00e6e6;
  font-size: 16px;
  text-decoration: none;
  transform: translateX(20px);
  opacity: 0;
  animation: popIn 0.5s forwards;
  width: 100%;
  justify-content: end;
  text-align: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.social-icons a:hover {
  transform: scale(1.08) translateX(0);
  background: rgba(0, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.25);
  color: #00ffff;
}

.social-icons a span {
  font-size: 14px;
  color: #ccc;
}

.social-icons li:nth-child(1) a { animation-delay: 0.2s; }
.social-icons li:nth-child(2) a { animation-delay: 0.4s; }
.social-icons li:nth-child(3) a { animation-delay: 0.6s; }
.social-icons li:nth-child(4) a { animation-delay: 0.8s; }

@keyframes popIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .footer-social .social-icons {
    align-items: center;
  }

  .footer-links {
    margin-top: 20px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 16px;
  }
}
/* 🎥 Fullscreen video background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
/* 🌀 Blur overlay on video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);  /* Smooth blur */
  background: rgba(0, 0, 0, 0.3); /* Optional dark tint */
  z-index: 0;
}

.header .footer .footer-bottom {
position: fixed; /* for header or sticky/footer as needed */
left: 0;
right: 0;
width: auto;
}

