/* Skills Section */
.contact{
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(45deg, #b6e8fc, #bda7fd);
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
	
}


/* Contact Section */
.contact-section, .contact-para {
  max-width: 600px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Floating label input */
.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  /*background: transparent;*/
  background: #fff;
  font-size: 1.2rem;
  outline: none;
  transition: border 0.3s ease;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 3px 10px;
  color: #888;
  border-radius:5px;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Floating effect */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #000;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  font-size: 0.9rem;
  color: #000;
  border:1px solid #000;
}

/* Button */
button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}