/* General Reset */
* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: url("images/Flat\ design\ art\ styl.png") no-repeat center center/cover;
  background-attachment: fixed;
  background-color: #000000;
  min-height: 100vh;
  color: #fff;
}

/* NAVIGATION BAR*/

.logo-nav-wrapper {
  position: absolute;
  top: 5px;
  left: 30px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  position: static;
  margin: 0;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Right Navigation Links */
.navigation-links {
  position: static;
  transform: none;
  /* Removed animation: slideInRight 1.5s ease-in-out; */
}

.navigation-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.navigation-links li {
  margin: 0;
  position: relative;
}

.navigation-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navigation-links a .icon-label {
  display: none;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  white-space: nowrap;
}

.navigation-links a:hover .icon-label {
  display: inline;
}

.navigation-links a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff0000;
  transition: width 0.4s ease;
}

.navigation-links a:hover {
  color: #ff0000;
  transform: translateX(-5px);
}

.navigation-links a:hover::before {
  width: 100%;
}

@keyframes slideInRight {
  from { right: -100px; opacity: 0; }
  to { right: 20px; opacity: 1; }
}

/*CONTACT FORM SECTION*/

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 140px 50px 50px;
  flex-wrap: wrap;
}


.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  width: 100%;
  color: #fff;
}

.left-info {
  flex: 1;
  max-width: 350px;
}

.right-form {
  flex: 1.5;
  max-width: 650px;
}

.right-form h2 {
  margin-bottom: 10px;
}

.right-form p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  justify-content: center;
}

.name-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-top: 8px;
  outline: none;
}

.right-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.right-form small {
  font-size: 0.8rem;
  color: #ccc;
  display: block;
  margin-top: 4px;
}

/* File Upload */
.file-upload {
  position: relative;
  margin-top: 10px;
}

.file-upload input[type="file"] {
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.upload-box {
  border: 1px dashed #ccc;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  z-index: 1;
}

.upload-box i {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.upload-box span {
  font-size: 0.9rem;
  color: #ccc;
}

button[type="submit"] {
  background-color: #d32f2f;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: 6px;
  border: none;
  color: #fff;
  margin-top: 1.5rem;
  width: 100%;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #b71c1c;
}



.logo img {
  /* Removed animations */
  animation: none;
}

.navigation-links a {
  /* Removed animations */
  animation: none;
}

.glass-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  width: 100%;
  color: #fff;
  animation: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: block;
}

.glass-card.visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

button[type="submit"] {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}

