* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
  width: 100%; 
  margin:0; 
  font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif; 
  line-height:1.6; 
  overflow-x:hidden; 
  background: #000;  /* Dark theme */
  color: #fff;
}

/* Loader */
.loader { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: #000000; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  z-index: 9999; 
  overflow: hidden; 
}

.logo { 
  width: 15vw; 
  height: 200px; 
  background: url('/image/logofnlbg-.png') no-repeat center/contain; 
  position: absolute; 
  left: 50%; 
  top: 50%; 
  transform: translate(-50%, -50%); 
}

.green-screen { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  height: 0; 
  background-color: #1702ff; /* Theme blue */
  z-index: 1; 
}

/* Tablets */
@media (max-width: 1024px) { 
  .logo { width: 20vw; max-width: 120px; } 
}

/* Small tablets / large phones */
@media (max-width: 768px) { 
  .logo { width: 25vw; max-width: 200px; } 
}

/* Phones */
@media (max-width: 480px) { 
  .logo { width: 30vw; max-width: 150px; } 
}




/* Navbar */
.navbar { 
  position: fixed; 
  width: 100%; 
  top: 0; 
  left: 0; 
  background: rgba(0,0,0,0.8); 
  backdrop-filter: blur(10px);
  z-index: 1000; 
  padding: 1rem 2rem; 
  display: flex; 
  justify-content: center; 
  border-bottom: 1px solid rgba(23,2,255,0.3);
}

.navbar-container { 
  width: 100%; 
  max-width: 1200px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}

.navbar .logo { 
  font-size: 1.8rem; 
  font-weight: bold; 
  color: #fff; 
}

.logo img { 
  width: 150px; 
  height:100px; 
  display: block; 
}

/* Responsive logo */
@media (max-width: 768px) { 
  .logo img { width: 120px; } 
}
@media (max-width: 480px) { 
  .logo img { width: 100px; } 
}

/* Nav links */
.nav-links { 
  list-style: none; 
  display: flex; 
  gap: 2rem; 
}

.nav-links li a { 
  text-decoration: none; 
  color: #fff; 
  font-weight: 500; 
  transition: 0.3s; 
  position: relative;
}

/* Neon underline effect */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #1702ff;
  transition: width 0.3s ease-in-out;
}
.nav-links li a:hover::after {
  width: 100%;
}
.nav-links li a:hover { 
  color: #1702ff; 
}

/* Hamburger */
.hamburger { 
  display: none; 
  flex-direction: column; 
  cursor: pointer; 
  gap: 5px; 
}

.hamburger span { 
  width: 25px; 
  height: 3px; 
  background: #fff; 
  display: block; 
  transition: 0.3s; 
}

/* Mobile menu */
@media (max-width: 768px) { 
  .nav-links { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    height: 100vh; 
    width: 70%; 
    background: rgba(10,10,15,0.98); 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 2rem; 
    transition: 0.5s; 
    backdrop-filter: blur(20px);
  } 
  .nav-links.show { right: 0; } 
  .hamburger { display: flex; } 
  .nav-links li a { font-size: 1.2rem; } 
}

/* Talk button */
.talk-btn { 
  display: inline-block; 
  padding: 0.3rem 1rem; 
  background: linear-gradient(135deg,#1702ff,#0d0057); 
  color: #fff; 
  font-weight: 600; 
  font-size: 1rem;  /* base size */
  border-radius: 10px; 
  text-decoration: none; 
  transition: 0.3s; 
  box-shadow: 0 0 10px rgba(23,2,255,0.6);
}
.talk-btn:hover { 
  background: linear-gradient(135deg,#0d0057,#1702ff); 
  box-shadow: 0 0 20px rgba(23,2,255,0.9);
  transform: translateY(-2px);
}

/* Responsive: smaller size on phones */
@media (max-width: 768px) {
  .talk-btn {
    padding: 0.3rem 1rem;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .talk-btn {
    padding: 0.4rem 0.4rem;
    border-radius: 8px;  }
}


/* Hamburger animation */
.rotate-top { 
  transform: rotate(45deg) translate(5px, 5px);
 }

.rotate-bottom {
   transform: rotate(-45deg) translate(5px, -5px); 
  }

.fade { 
  opacity: 0;
 }





/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* video behind */
  opacity: 0.25; /* dim video so text is visible */
}

.falling-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.falling-item {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1702ff;
  opacity: 0.8;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2; /* bring text above video */
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #1702ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  color: #fff; /* ensure readability */
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 10px;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(90deg, #1702ff, #00c6ff);
    box-shadow: 0 0 15px rgba(23,2,255,0.4);
  color: #fff;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #1702ff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #00c6ff;
  color: #00c6ff;
}

.btn-outline:hover {
  background: #00c6ff;
  color: #fff;
}



/* Responsive Hero */
@media (max-width: 768px) {
  .hero{
    height:100vh;
  }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}




/* ---------------- About ---------------- */
.section-about {
  padding: 3rem 2rem;
  background: linear-gradient(to bottom, #000000, #0a0a0a);
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 380px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(23,2,255,0.3);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(to right, #1702ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #d0d0d0;
}

.about-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #1702ff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.4s ease;
  box-shadow: 0 0 15px rgba(23,2,255,0.4);
}

.about-btn:hover {
  background: #000000;
  color: #fff;
  box-shadow: 0 0 25px rgba(23,2,255,0.8);
  transform: translateY(-3px);
}

/* Responsive About */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image, .about-text {
    min-width: 100%;
  }
  .about-image img {
    width: 90%;
    margin: 0 auto;
  }
  .about-text h2 { font-size: 1.5rem; }

  .about-text p {
     font-size: 0.8rem;
     text-align: left;
     }
}




/* service */
#services {
  position: relative;
  min-height: 80vh;
  padding: clamp(4rem, 6vw, 6rem) 2rem;
  overflow: hidden;
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}
.section-title {
  font-family: "Poppins", serif;
  position: relative; 
  text-align: center;
  font-size: clamp(200px, 12vw, 150px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .01em;
  background: linear-gradient(to bottom, #ffffff, #1702ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 0 20px 50px; /* add padding for small screens */
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(80px, 8vw, 60px); 
    line-height: 1.1;
    margin-bottom: 15px; 
  }

  .services-grid {
    grid-template-columns: 1fr; 
    gap: 15px;
    padding: 0 10px 30px; 
  }
  .service-card h3 , p{
    text-align: left;
    }
}


.service-card {
  background: rgba(23, 2, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(23, 2, 255, 0.25);
  box-shadow: 0 8px 25px rgba(23, 2, 255, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(23, 2, 255, 0.6);
}

.service-img-large {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #cfd8ff;
}

.service-card .btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #1702ff, #000000);
  color: #ffffff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid rgba(23, 2, 255, 0.4);
}

.service-card .btn:hover {
  background: #000000;
  color: #1702ff;
  border: 1px solid #1702ff;
}





/* Footer */
footer {
  background: linear-gradient(180deg, #000000, #0b0f29);
  padding: 30px 20px;
  text-align: center;
  color: #e0e0e0;
  margin-top: 80px;
  border-top: 1px solid rgba(23, 2, 255, 0.2);
}

footer h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #1702ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-links, .socials {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a, .socials a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.footer-links a:hover, .socials a:hover {
  color: #1702ff;
  text-shadow: 0 0 8px rgba(23, 2, 255, 0.6);
}


.copy {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}








/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .navbar .logo img { width: 130px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.5s;
  }
  .nav-links.show { right: 0; }
  .hamburger { display: flex; }
  .nav-links li a { font-size: 1.2rem; }
}

@media (max-width: 480px) {
   .logo {width: 100%; }
  .hero-btn, .about-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .service-card { padding: 15px; }
  .service-card h3 { font-size: 1.2rem; }
}