* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f2027, #000000);
  color: #030303;
  overflow-x: hidden;
}

.logo {
   color: white;
  font-weight: bold;
  font-size: 22px;
}

/* Hide menu initially */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
 
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}


.navbar {
  position: fixed;   /* stays on top */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(0, 0, 0, 0.6); /* transparent effect */
  z-index: 1000; /* VERY IMPORTANT */
 
  backdrop-filter: blur(10px);
}

/* HOVER EFFECT */
.nav-links a:hover {
  color: #00c3ff;
}

/* Header */
.contact-header {
  text-align: center;
  padding: 80px 20px;
}

.contact-header h1 {
  font-size: 55px;
  background: linear-gradient(90deg, #00f7ff, #00c6ff, #0072ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #00f7ff; }
  to { text-shadow: 0 0 25px #00c6ff; }
}

.contact-header p {
  color: #bbb;
  margin-top: 10px;
  line-height: 2.0;
}

.contact-header p{
   max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
       color: #f1f1f1;
    animation: fadeUp 1.5s ease;
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== CONTACT MOBILE ===== */

@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
    padding: 20px;
  }

  .contact-info,
  .contact-form {
    min-width: 100%;
    padding: 20px;
  }

}
/* Container */
/* ===== CONTACT CONTAINER RESPONSIVE ===== */

.contact-container {
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
  gap: 100px;
  justify-content: center;
  align-items: stretch;
  max-width: 1300px;
  margin: auto;
}

/* Glass Card */
.contact-info,
.contact-form {
  flex: 1;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 25px rgba(0,255,255,0.2);
  transition: 0.3s;
}

.contact-info:hover,
.contact-form:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0,255,255,0.5);
}

/* Info */
.contact-info h2 {
  color: #00f7ff;
  margin-bottom: 15px;
}

.contact-info p {
  color: #ccc;
}

.info-box {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.info-box i {
  font-size: 20px;
  margin-right: 10px;
  color: #00f7ff;
}

/* Inputs */
.input-box {
  margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.3s;
  
}

.input-box input:focus,
.input-box textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #00f7ff;
}

.input-box input:hover,
.input-box textarea:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0,255,255,0.5);
}
/* Button */
.btn {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #00f7ff, #0072ff);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0 0 20px #00f7ff;
  transform: scale(1.05);
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;   /* FIX */
  align-items: center;
  justify-content: center;
  width: auto;            /* IMPORTANT */
  height: auto;           /* IMPORTANT */
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Hover */
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
.whatsapp-float i {
  margin-right: 6px;
}
/* ===== MOBILE NAVBAR ===== */

@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .logo {
    text-align: center;
    font-size: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-right: 0;
  }

  .nav-links a {
    font-size: 14px;
  }

}
/* ===== CONTACT HEADER RESPONSIVE ===== */

@media (max-width: 768px) {

  .contact-header {
    padding: 120px 20px 60px;
  }

  .contact-header h1 {
    font-size: 38px;
  }

  .contact-header p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 10px;
  }

}
/* ===== INPUT RESPONSIVE ===== */

@media (max-width: 600px) {

  .input-box input,
  .input-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  .btn {
    padding: 14px;
    font-size: 14px;
  }

}
/* ===== WHATSAPP BUTTON MOBILE ===== */

@media (max-width: 600px) {

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    font-size: 13px;
    padding: 10px 15px;
  }

}

/* ================= LAPTOP ======================== */


@media (max-width: 1200px) {

  .contact-container {
    padding: 40px;
    gap: 30px;
  }

  .contact-header h1 {
    font-size: 48px;
  }

}



/* ================= TABLET ======================== */


@media (max-width: 992px) {

  /* Navbar */
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 15px;
    margin-right: 0;
  }

  .nav-links a {
    font-size: 15px;
  }

  /* Header */
  .contact-header {
    padding: 120px 20px 60px;
  }

  .contact-header h1 {
    font-size: 42px;
  }

  .contact-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Contact Section */
  .contact-container {
    flex-direction: column;
    padding: 30px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    min-width: 100%;
  }

}

/* ================= MOBILE ======================== */


@media (max-width: 600px) {

  /* Navbar */
  .navbar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    text-align: center;
  }

  .logo {
    font-size: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 14px;
  }

  /* Header */
  .contact-header {
    padding: 120px 15px 50px;
  }

  .contact-header h1 {
    font-size: 34px;
  }

  .contact-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Contact Section */
  .contact-container {
    padding: 20px;
    gap: 20px;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
    border-radius: 15px;
  }

  /* Inputs */
  .input-box input,
  .input-box textarea {
    padding: 12px;
    font-size: 14px;
  }

  /* Button */
  .btn {
    font-size: 14px;
    padding: 12px;
  }

  /* WhatsApp Button */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 13px;
  }

}