* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #07131f;
  overflow-x: hidden;
}

.header-logos {
  position: absolute;
  top: 40px;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  z-index: 10;
  width: auto;
}

.header-logos .wall-iq-logo {
  width: 200px;
  height: auto;
}



.footer-logos {
  position: absolute;
  bottom: 10px;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  z-index: 10;
  width: auto;
}
.footer-logos a{
  text-align: center;
  color: white;
  text-decoration: none;
}
.footer-logos a p{
      font-size: 12px;
    margin-bottom: -14px;
    margin-left: 54px;
}
.footer-logos .logo {
  width: 180px;
  height: auto;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #00c2ff30, transparent 45%),
    radial-gradient(circle at bottom right, #4cffc130, transparent 45%),
    linear-gradient(135deg, #081320, #101d2e);
  padding: 12px 0 13px 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  background: #00c2ff20;
  border-radius: 50%;
  filter: blur(120px);
  left: -180px;
  top: -150px;
  animation: blob1 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #4cffc130;
  border-radius: 50%;
  filter: blur(120px);
  right: -120px;
  bottom: -150px;
  animation: blob2 8s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Layout Grid Container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.content h5 {
  color: #49d8ff;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 0.7s ease forwards;
}

.content h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
  animation: fadeUp 0.8s ease forwards;
}

.content h1 span {
  color: #4cffc1;
}

.content p {
  color: #b8c8d6;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeUp 1s ease forwards;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  animation: fadeUp 1.2s ease forwards;
}

.btn {
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  text-align: center;
}
.btn-doc {
  padding: 16px 135px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  text-align: center;
}

.primary {
  background: #00c2ff;
  color: #fff;
}
.primary-doc {
  background: #37CC96;
  color: #fff;
}

.primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 194, 255, 0.35);
}

.primary-doc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 255, 191, 0.35);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(12px);
}

.secondary:hover {
  background: #ffffff10;
  box-shadow: 0 20px 35px rgba(0, 194, 255, 0.35);
  transform: translateY(-6px);


}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  animation: fadeUp 1.4s ease forwards;
}

.stat h2 {
  color: #4cffc1;
  font-size: clamp(24px, 4vw, 34px);
}

.stat p {
  margin: 0;
  font-size: 14px;
  color: #d5dfe9;
}

.image-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}

.image::before {
  content: "";
  position: absolute;
  width: 80%;
  padding-bottom: 80%;
  border-radius: 50%;
  background: linear-gradient(45deg, #00c2ff, #4cffc1);
  filter: blur(100px);
  opacity: 0.25;
  animation: pulse 5s infinite;
  pointer-events: none;
}

.device {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: auto;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

.card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: clamp(10px, 2vw, 18px) clamp(15px, 2.5vw, 25px);
  border-radius: 18px;
  color: #fff;
  white-space: nowrap;
  z-index: 5;
}

.card1 {
  left: -5%;
  top: 10%;
  animation: float2 4s ease infinite;
}

.card2 {
  right: -5%;
  bottom: 15%;
  animation: float2 5s ease infinite;
}

.card h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  color: #4cffc1;
  margin-bottom: 5px;
}

.card span {
  font-size: clamp(11px, 1.5vw, 14px);
  color: #d8d8d8;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blob1 { to { transform: translate(40px, 20px); } }
@keyframes blob2 { to { transform: translate(-30px, -20px); } }

@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 0 60px 0;
  }

  .header-logos {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
  }

  .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content p {
    margin: 0 auto 40px;
  }

  .buttons,
  .stats {
    justify-content: center;
  }

  .card1 {
    left: 2%;
  }
  .card2 {
    right: 2%;
  }
}

@media (max-width: 576px) {
  .buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    display: none;
  }
}

