* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", "Courier", monospace;
}

body {
  min-height: 100vh;
  background: url("Background.png") no repeat;
  background-color: cover;
  background-position: center;
  background-color: rgb(3, 1, 14);
  /* display: flex; */
  /* align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: row; */
  background: url(/client-portfolio/Project-4657-9871562/Background.png) #030728
    no-repeat center;
  background-size: cover;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  min-height: 100vh;
}

.hearder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: rgba(225, 225, 225, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(225, 225, 225, 0.2);
  z-index: 100;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 225, 225, 0.4),
    transparent
  );
  transition: 0.5s;
}

header:hover::before {
  left: 100%;
}

.logo {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
}

.navbar a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin-left: 39px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #f00;
}

.about-color {
  color: #f00;
}

#menu-icon {
  font-size: 36px;
  color: #fff;
  display: none;
}

/* Breakpoints */
@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    padding-left: 80px;
    background: rgba(225, 225, 225, 0.1);
    border-bottom: 2px solid rgba(225, 225, 225, 0.2);
    backdrop-filter: blur(10px);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    margin: 1.5rem;
  }
}

.nav-bg {
  position: fixed;
  top: 4.8%;
  left: 0;
  width: 100%;
  height: 295px;
  background: rgba(225, 225, 225, 0.1);
  border-bottom: 2px solid rgba(225, 225, 225, 0.2);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: none;
}

/* form css */
/* Navigation Link */

.form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  margin-top: 75px;
}
.home-link {
  position: absolute;
  top: 20px;
  left: 20px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}
.home-link:hover {
  color: #000;
}

.container {
  width: 100%;
  max-width: 600px;
  background: rgba(225, 225, 225, 0.1);
  backdrop-filter: blur(100px);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #f00;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Form and Input Styling */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box; /* Ensures padding doesn't affect total width */
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
button {
  /* display: inline-block;
  align-self: center; */
  /* right: 50px; */
  margin-left: 160px;
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  border: #fff solid;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease 0.4s both;
}

button:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  color: #f00;
  box-shadow: 0 6px 12px rgba(240, 9, 9, 0.15);
}

/* Message Box Styling */
.message-box {
  display: none;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.message-box.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.message-box.success {
  background-color: #e8f5e9;
  color: #4caf50;
}

.message-box.error {
  background-color: #ffebee;
  color: #f44336;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
    box-shadow: none;
  }
}

/* footer*/
footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.container3 {
  margin-left: 100px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ecf0f1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .stat {
    min-width: 150px;
  }

  .stat-number {
    font-size: 36px;
  }
}
