/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Background gradient */
body {
  background: #434343 ;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}
nav {
    text-align: left;
    padding: 20px 10px;
}

#home {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    color: #a0c4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#home:hover {
    color: #72a0ff;
    text-decoration: underline;
}
/* Main container */
.container {
  background: #fff;
  margin-top: 90px;
  margin-left: 35%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

/* Title */
h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4facfe;
  outline: none;
  box-shadow: 0 0 8px rgba(79, 172, 254, 0.4);
}

/* Button */
.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #7cbef8, #00bfff);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

/* Direct contact link */
.direct-contact {
  margin-top: 25px;
  font-size: 0.95rem;
}

.direct-contact a {
  color: #4facfe;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.direct-contact a:hover {
  color: #00c6ff;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Social Section */
.social-section {
  margin-top: 30px;
}

.social-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  font-size: 1.8rem;
  color: #5baaf0;
  transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
  color: #00c6ff;
  transform: scale(1.2);
}

