/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background: url("imgs/cont.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Space Title Section */
.space {
  height: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.space p {
  margin-top: 70px;
  font-size: 60px;
  color: #4b0000;
  font-weight: 750;
animation: slideUp 1s ease;
}

/* Contact Container */
.container {
  margin: 80px auto 40px auto;
  width: 90%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  background: #e0d0b88f;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: slideUp 1s ease-in-out;
  z-index: 1;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Left Form */
.form-section {
  flex: 1;
}
.form-section .logo {
  font-size: 22px;
  font-weight: bold;
  color: #4b0000;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
  text-decoration: none;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}
input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #f1f5ff;
  font-size: 14px;
  transition: 0.3s;
}
input:focus, textarea:focus {
  outline: none;
  background: #e3edff;
  transform: scale(1.02);
}
textarea {
  resize: none;
  height: 100px;
}
button {
  background: #1976d2;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
button:hover {
  background: #1258a5;
  transform: scale(1.05);
}

/* Right Info */
.info-section {
  flex: 1;
  background: #f8faff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
}
.info-section p {
  margin: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-section iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
}

/* Footer */
.copyright {
  text-align: center;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #4b0000;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    margin: 80px auto 20px auto;
    padding: 20px;
    width: 95%;
  }
  .info-section iframe {
    height: 200px;
  }
}
footer {
  text-align: center;
  padding: 60px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #4b0000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.linkedin-link:hover .linkedin-icon {
  transform: translateY(-3px) scale(1.1);
  fill: #0077b5; /* LinkedIn blue on hover */
}