* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(-45deg, #020617, #0f172a, #020617, #1e293b);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;

  color: white;
  line-height: 1.6;
  font-family: "Segoe UI", sans-serif;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(175, 175, 175, 0.1);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: white;
}

header {
  height: 100vh;
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
    url("images/hero3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: -3px 2px 5px #000000;
}

.hero-content p {
  font-size: 21px;
  color: whitesmoke;
  margin-bottom: 30px;
  padding: 5px;
  /* background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 15px; */
  text-shadow: -3px 2px 2px #000000;
}

.cta-btn {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.section {
  padding: 120px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #38bdf833, transparent);
  top: -200px;
  left: -200px;
  filter: blur(120px);
}
.dark {
  background: #020617;
}

.cards {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 14px;
  width: 280px;
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25);
}
.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin: auto;
  gap: 18px;
}

input,
textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #38bdf8;
}
button {
  padding: 12px;
  border: none;
  background: #38bdf8;
  font-weight: bold;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  margin-top: 40px;
}
header {
  height: 90vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("images/hero3.png");
  /* background-image: url("images/hero.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.subtitle {
  font-size: 36px;
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.process-card span {
  font-size: 30px;
  font-weight: bold;
  color: #38bdf8;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-weight: bold;
  color: #38bdf8;
  font-size: 2rem;
}

.logo span {
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #38bdf8;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 5px;
}
.hero-content {
  z-index: 0;
}
.material-symbols-outlined {
  font-size: 42px !important;
}
/* form styles */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
}

.contact-card {
  width: 420px;
  padding: 45px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 28px;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-size: 15px;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  transition: 0.25s;
}

.input-group textarea + label {
  top: 18px;
  transform: none;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #38bdf8;
  background: transparent;
  padding: 0 6px;
}

.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -18px;
  font-size: 12px;
  color: #38bdf8;
  background: transparent;
  padding: 0 6px;
}

.send-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;

  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: white;
  font-weight: 600;
  font-size: 15px;

  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

.about-text {
  max-width: 60%;
  margin: 20px auto 0 auto;
  line-height: 1.8;
  font-size: 17px;
  color: #94a3b8;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  /* border: 1px solid white; */
}
#about h2 {
  font-size: 36px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .logo {
    font-size: 1.5em;
  }
  .hamburger {
    display: flex;
  }
  nav {
    z-index: 3;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;

    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(50px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    padding: 20px 0;

    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: 0.25s;
  }
  .nav-links a:hover {
    background: #38bdf8;
    color: #020617;
  }
  .hero-content {
    z-index: 0;
  }
  .nav-links.active {
    transform: translateX(0);
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  .hamburger {
    z-index: 10;
  }
  .hamburger span {
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .hero-content {
    padding: 0 3rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .about-text {
    max-width: 80%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
