/* Contact Section */
.contact-form {
  margin-top: 40px;
  padding: 40px 20px;
  max-width: 800px;
  background-color: #464956c3;
  border: 1px solid #ddd;
  backdrop-filter: blur(3px);
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  margin: 0 auto;
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #e63946;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff6b81;
}

/* Connect Pge */
.post-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}
img.social-icon,
.post-button img,
.social-link img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  object-fit: contain;
}

.post-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.post-button:hover {
  background-color: #ff6b81;
  transform: translateY(-2px);
}

.post-button img {
  width: 20px;
  height: 20px;
}

img.video-thumb {
  width: 50px;
  height: 50px;
  border-radius: 25%;
  transition: transform 0.3s ease;
}
.video-thumb:hover {
  transform: scale(1.1);
}
/* Footer Social Links */
footer .social-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

footer .social-links li {
  display: inline;
  margin: 0 10px;
}

footer .social-links a {
  color: #e63946;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer .social-links a:hover {
  text-decoration: underline;
  color: #ff6b81;
}

a {
  color: #e63946;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  color: #ff6b81;
  text-decoration: underline;
}
