.contact-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 35px;
  background: #EDEEEF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 82, 118, 0.08);
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: 0.3s ease;
}

.contact-container:hover {
  box-shadow: 0 15px 50px rgba(0, 82, 118, 0.15);
}

.contact-container h2 {
  color: #005276;
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}
.contact-desc {
  text-align: center;
  color: #000000;
  font-size: 15px;
  margin-bottom: 25px;
}
/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Force same radius for all fields */
.contact-container input,
.contact-container textarea {
  padding: 14px 16px;
  border: 1px solid #9E9E9E;
  border-radius: 14px !important; /* 🔥 force apply */
  font-size: 15px;
  background: #f9fbfc;
  transition: all 0.25s ease;
}

/* Ensure textarea same style */
.contact-container textarea {
  min-height: 140px;
  border-radius: 22px !important;
}

/* Placeholder */
input::placeholder, textarea::placeholder {
  color: #999;
}

/* Focus (Blue Outline) */
input:focus, textarea:focus {
  border-color: #005276;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 82, 118, 0.15);
}

/* Button */
button {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #005276, #0078a8);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button Hover */
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 82, 118, 0.25);
}

/* Button Click */
button:active {
  transform: scale(0.98);
}

/* Success Message */
#successMsg {
  margin-top: 20px;
  padding: 16px;
  background: #e6f7ff;
  color: #005276;
  border-left: 5px solid #005276;
  border-radius: 14px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .contact-container {
    padding: 25px;
    margin: 30px 15px;
  }

  input, textarea {
    font-size: 14px;
  }

  button {
    font-size: 15px;
  }
}

/* Success Message */
#successMsg {
  margin-top: 20px;
  padding: 16px;
  background: #e6f7ff;
  color: #005276;
  border-left: 5px solid #005276;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#successMsg {
  margin-top: 20px;
  padding: 15px;
  background: #e6f7ff;
  color: #005276;
  border-radius: 8px;
  font-weight: bold;
}