* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
      background: linear-gradient(#d5f2ee, #d7edea, #dfeae9);
}


/* Premium Navbar */
.navbar-wrapper {
  height: 80px;
  width: 100%;
}

.navbar {
  position: fixed;
  top: 5px;

  max-width: 1250px;
  /* ← main fix */
  margin: 0 auto;
  /* ← center with gap */
  left: 0;
  right: 0;
  /* ← equal space left-right */

  height: 70px;

  background: linear-gradient(to right,
      rgba(198, 241, 231, 0.9),
      rgba(193, 224, 249, 0.9));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 30px;
  z-index: 999;

}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #0b8d5c;
}

.navbar ul {
  display: flex;
  gap: 28px;
}

.navbar ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.navbar ul li:hover {
  color: #0b8d5c;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.navbar a {
  text-decoration: none;
  color: inherit;
}

.navbar a:hover {
  text-decoration: none;
  color: inherit;
}


/* MAIN CONTAINER */
.contact-container {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
  display: flex;
  gap: 60px;
  padding: 20px;
}

/* LEFT SIDE */
.left-side {
  flex: 1;
}

.left-side h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 10px;
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

/* RIGHT SIDE */
.right-side {
  flex: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 6px rgba(168, 85, 247, 0.4);
}

textarea {
  height: 120px;
  resize: none;
}

/* SUBMIT BUTTON */
.submit-btn {
  padding: 14px;
  font-size: 1rem;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  background: linear-gradient(90deg, #a855f7, #f97316);
  transition: 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

footer {
  width: 100%;
  padding: 15px;
  font-size: 0.8rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  bottom: 0;
  left: 0;

  background: #ffffffa1;
  /* हल्का transparent white */
  backdrop-filter: blur(10px);
}


/* RESPONSIVE */
@media (max-width: 900px) {


  .navbar ul li {

    font-size: 18px;
    font-weight: 400;

  }

  .navbar ul {

    gap: 15px;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }



}

/* Extra Small Devices Fix (320px - 350px) */
@media (max-width: 450px) {



      .navbar ul li {
  
  font-size: 14px;
  font-weight: 500;

}

.navbar ul {

  gap: 10px;
  
}

}