* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Contact Section */
.contact {
  width: 100%;
  padding: 40px 20px;
  color: black;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
      padding-top: 162px;
      padding-left: 40px;
      padding-right: 40px;
      padding-bottom: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  animation: fadeIn 1.2s ease;
}

/* Info Section */
.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.contact-info p {
  opacity: 0.85;
  margin-bottom: 20px;
}

.contact-info ul li {
  list-style: none;
  margin: 12px 0;
  font-size: 1.1rem;
}

/* Form */
.contact-form form {
color: black;
  width: 100%;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
 width: 100%;
    padding: 14px;
    background: #ffffff66;
    border: 1px solid rgb(36 26 26 / 40%);
    border-radius: 10px;
    color: #020202;
    outline: none;
    font-size: 1rem;
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.4s;
  opacity: 0.7;
}

.input-group textarea + label {
  top: 20px;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  /* background: #203a43; */
  padding: 0 8px;
  font-size: 0.85rem;
  opacity: 1;
}

/* Button */
/* button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,114,255,0.5);
} */

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
