@import url("https://fonts.googleapis.com/css2?family=Boldonse&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
}


:root {
  --background-color: #c8d8ff;
  --orange-color: #f79645;
  --light-blue: #2d52a0;
  --red: #df131f;
  --pink: #ffe8c2c6;
  --yellow: #efc21e;
  --neon-pink: #ff007f;
  --electric-blue: #00e5ff;
  --black: #0d0d0d;
  --soft-purple: #9b59b6;
  --light-cyan: #81d4fa;
  --cream: #ffccbc;
  --slate: #2c3e50;
  --light-emerald: #2ecc71;
  --cloudy-white: #ecf0f1;
}

.contact-section {
  width: 100%;
  min-height: 100vh;
  background-color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; 
}



.contact-wrapper {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-container1 {
  width: 50%;
  color: white;
}

.contact-container2 {
  width: 50%;
  display: flex;
  justify-content: center;
}

.Contact-Model {
  width: 100%;
  max-width: 800px;
  height: 800px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    margin-top: 100px;
  }

  .contact-container1,
  .contact-container2 {
    width: 100%;
    text-align: center;
  }

}

/* Form Styling */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--black);
  color: white;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px; 
}

.contact-form button {
  padding: 12px;
  font-size: 18px;
  background-color: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: transparent;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
}

.contact-list{
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  animation: moveLeft 25s linear infinite;
  margin-top: 25px;
}
.contact-container1 {
  overflow: hidden;  
  position: relative;
  border: 2px solid var(--red);
  padding: 50px;
  border-radius: 20px;
}

@keyframes moveLeft {
  0% { transform: translateX(100%); }   
  100% { transform: translateX(-100%); }
}

.contact-list a{
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.contact-list i:hover, a:hover {
  color: var(--neon-pink);
  transition: 0.3s;
}

.contact-list li {
  font-size: 18px;
  color: white;
  padding: 10px 20px;
  white-space: nowrap;
}


.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    to bottom,
    #010000 20%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(1, 0, 0, 0) 100%
  );
  filter: blur(15px);
  pointer-events: none;
  z-index: 3;
}
footer {
  width: 100%;
  padding: 20vh 10%;
  background-color: #010000;
  color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-align: center;
  position: relative;  
  overflow: hidden;
}



footer p{
  cursor: pointer;
}

.footer-p{
  color: white;
}

.home-footer a {
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.site-footer a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-pink);
}

.footer-socials i {
  font-size: 22px;
  margin: 0 8px;
  transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
  color: white;
}

.footer-socials i:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--black), 0 0 12px var(--neon-pink);
}
