@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c;
  --background-color: #ecf0f1;
  --text-color: #2c3e50;
  --muted-color: #eee;
  --main-color: #3b82f6;
  --hover-color: #2d5eac;
  --second-color: #cadcee;
  --black-color: #000;
  --button-color: #5b5b5b;
  --paragraph-color: #919191;
}

:root html,
:root body,
:root ul,
:root h1,
:root h2,
:root h3,
:root h4,
:root h5,
:root ol {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  height: auto;
  width: auto;
  overflow-y: auto;
}

html {
  scroll-behavior: smooth;
  background-color: #f8fafc;
}

#contact {
  padding: 120px 0;
  min-height: 400px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
#contact.fade-in {
  opacity: 1;
  transform: translateY(0);
}
#contact .contact-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-in-out forwards;
}
#contact .contact-wrapper .contact-inner .contact-content {
  max-width: 1200px;
  margin: 0 auto;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-header {
  text-align: center;
  margin: 100px 0 60px 0;
  font-family: "Poppins", sans-serif;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-header .header {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 0.5s forwards;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-header .divider {
  width: 100px;
  height: 4px;
  background-color: var(--main-color);
  margin: 10px auto;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 0.5s forwards;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-header .contact-p {
  margin: 0;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 20px;
  padding-bottom: 70px;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card {
  display: flex;
  flex-direction: column;
  gap: 35px;
  height: auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  padding: 20px;
  animation: fadeIn 1s ease-in-out 1s forwards;
}
@media screen and (min-width: 712px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card {
    gap: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card {
    gap: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .name-role {
  text-align: left;
  display: flex;
  flex-direction: column;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .name-role h2 {
  font-size: 1.5rem;
  font-weight: 200;
  color: #333;
  margin-top: 20px;
  margin-bottom: 5px;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .name-role p {
  font-size: 1rem;
  margin: 0;
  color: #666;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .name-role p a {
  text-decoration: none;
  color: #0056b3;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .name-role .role {
  margin-bottom: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .name-role .divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 1rem 0;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media {
  display: flex;
  justify-content: left;
  align-items: left;
}
@media screen and (min-width: 712px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media {
    justify-content: center;
    align-items: center;
  }
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: left;
  align-items: left;
}
@media screen and (min-width: 712px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul {
    flex-direction: column;
    align-items: left;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul {
    flex-direction: column;
    align-items: left;
  }
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul li {
  margin: 0;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul li a {
  display: flex;
  align-items: center;
  justify-content: left;
  text-decoration: none;
  color: var(--main-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul li a span {
  margin-left: 10px;
  font-size: 1rem;
  color: #666;
  display: none;
}
@media screen and (min-width: 712px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul li a span {
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul li a span {
    display: inline-block;
  }
}
#contact .contact-wrapper .contact-inner .contact-content .contact-form .contact-card .social-media ul li a:hover {
  transform: scale(1);
  color: var(--hover-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
