* { margin:0; padding:0; box-sizing:border-box; }
body, html {
  width:100%; height:100%;
  font-family:"Poppins",sans-serif;
  color:#fff;
  background:#0b0b1e;
  overflow-x:hidden;
  scroll-behavior:smooth;
}
#lightning-canvas {
  position:absolute; top:0; left:0;
  width:100%; height:100%;
  z-index:0; pointer-events:none;
}
  /* === Navbar === */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
/* === LOGO IMAGE === */
.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  height: 55px;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(0,255,255,0.3));
}

/* Hover glow effect */
.logo img:hover {
  filter: drop-shadow(0 0 15px rgba(0,255,255,0.9))
          drop-shadow(0 0 30px rgba(0,255,255,0.6));
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 38px;
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 5px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  background: #00ffd5;
  transition: 0.3s;
}
nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav ul {
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  nav ul.active {
    max-height: 250px;
  }
}
.content {
  position:relative; z-index:2; text-align:center;
  max-width:800px; padding:40px;
  background:rgba(0,0,0,0.6);
  border-radius:25px; backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  margin:150px auto; animation:fadeIn 2s ease forwards;
}
.content h1 { font-size:3rem; margin-bottom:15px; text-shadow:0 0 25px rgba(80,140,255,0.8);}
.content p { font-size:1.1rem; color:#ccc; line-height:1.6; }
.highlight { color:#60a3ff; font-weight:600; }
.learn-more {
  margin-top:25px; background:linear-gradient(90deg,#4776E6,#8E54E9);
  border:none; color:white; padding:12px 30px; font-size:1rem;
  border-radius:30px; cursor:pointer; transition:transform 0.3s ease;
}
.learn-more:hover { transform:scale(1.05); }
.gallery {
  position:relative; z-index:2; display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:15px; padding:60px 5%; background:rgba(0,0,0,0.9);
}
.gallery img {
  width:100%; height:250px; object-fit:cover; border-radius:15px;
  transition:transform 0.3s ease, filter 0.3s ease;
  border:2px solid rgba(255,255,255,0.1);
}
.gallery img:hover { transform:scale(1.05); filter:brightness(1.2); }
.info {
  position:relative; z-index:2; background:rgba(0,0,0,0.85);
  padding:60px 10%; text-align:center;
}
.info h2 { font-size:2rem; color:#60a3ff; margin-bottom:20px; }
.info p { color:#ccc; font-size:1.1rem; line-height:1.7; margin-bottom:20px; }
/* ==== WHATSAPP FLOAT ==== */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: transform 0.3s;
      z-index: 200;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }

    /* ==== FOOTER ==== */
footer {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 50px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-right {
  text-align: right;
  position: relative;
}

.company-name {
  font-size: 28px;
  font-weight: bold;
  color: #00ff99;
  animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.footer-middle h3,
.footer-left h3 {
  margin-bottom: 10px;
  color: #00ff99;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li {
  margin: 6px 0;
}

.footer-middle li::before {
  content: "• ";
  color: #00ff99;
}

.footer-left p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.social-icons a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00ff99;
}

.social-icons img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

#copy {
  text-align: center;
  margin-top: 50px;
  color: #aaa;
  font-size: 0.9rem;
  width: 100%;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  footer {
    padding: 40px 40px;
  }
  .company-name {
    font-size: 24px;
  }
  .footer-left, .footer-middle, .footer-right {
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }
  .footer-left, .footer-middle, .footer-right {
    text-align: center;
    margin: 15px 0;
    min-width: auto;
    width: 90%;
  }
  .company-name {
    font-size: 22px;
  }
  .social-icons a {
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px 15px;
  }
  .company-name {
    font-size: 20px;
  }
  .footer-left p,
  .footer-middle li,
  .footer-right p {
    font-size: 0.9rem;
  }
  #copy {
    margin-top: 30px;
    font-size: 0.8rem;
  }
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}