/* === General === */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  overflow-x: hidden;
  color: #fff;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

/* === Animated Background === */
#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -1;
}

/* === 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;
  }
}

/* === Contact Section === */
.contact-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 70px;
}
.contact-card {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 30px rgba(0,255,213,0.2);
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-card h2 {
  text-align: center;
  color: #00ffd5;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px #00ffd5;
}
.input-field {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  transition: 0.3s;
}
.input-field:focus {
  border-color: #00ffd5;
  box-shadow: 0 0 10px #00ffd5;
}
button {
  background: linear-gradient(90deg, #00ffd5, #0077ff);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffd5;
}

/* === Footer === */
footer {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 50px 25px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
footer h3 { color: #00ffd5; margin-bottom: 10px; }
.company-name {
  font-size: 24px;
  color: #00ffd5;
  text-shadow: 0 0 15px #00ffd5;
  font-weight: bold;
}
#copy {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  color: #aaa;
  font-size: 14px;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* === WhatsApp Button === */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  background: #25D366;
  width: 55px; height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  z-index: 1000;
}
.whatsapp-float img { width: 30px; height: 30px; }