body {
  background: linear-gradient(145deg, #0a192f, #112240 60%, #1b2a4e);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 170, 255, 0.08);
  top: -100px;
  left: -150px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

body::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 170, 255, 0.06);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.partnership-section {
  position: relative;
  z-index: 1;
  padding: 130px 100px 100px; 
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.header-section {
  margin-bottom: 60px;
  text-align: center;
}

.header-section img.illustration {
  max-width: 220px;
  margin-bottom: 25px;
  animation: float 4s ease-in-out infinite;
}

.header-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #00aaff;
}

.header-section p {
  font-size: 15px;
  color: #cdd9f5;
  margin-top: 10px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.glass-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.glass-form:hover {
  box-shadow: 0 8px 30px rgba(0, 170, 255, 0.25);
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-form label {
  font-size: 13px;
  color: #aad4ff;
  margin-bottom: 5px;
}

.partner-form input,
.partner-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}

.partner-form input:focus,
.partner-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #00aaff;
}

.form-btn {
  margin-top: 30px;
  text-align: center;
}

.form-btn button {
  background: #00aaff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-btn button:hover {
  background: #0088cc;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .partnership-section {
    padding: 110px 50px 80px;
  }

  .glass-form {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .partnership-section {
    padding: 100px 25px 70px; 
  }

  .form-row {
    flex-direction: column;
  }

  .glass-form {
    padding: 30px 20px;
  }

  .header-section img.illustration {
    max-width: 180px;
    margin-bottom: 20px;
  }

  .header-section h2 {
    font-size: 24px;
  }

  .header-section p {
    font-size: 14px;
  }
}

footer, .footer, #footer {
  display: none !important;
}
