@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #050814, #071c2f);
  color: white;
}

/* Navbar same theme */
header {
  background: #050814;
  padding: 15px 8%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
}

.logo img {
  width: 40px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
}

nav a:hover,
nav a.active {
  color: #ffd23f;
}

.login-btn {
  background: #ffd23f;
  padding: 6px 16px;
  border-radius: 20px;
  color: #000 !important;
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: 60px 10%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #0b1730;
  padding: 40px;
  border-radius: 20px;
}

.contact-info h1 {
  color: #ffd23f;
  margin-bottom: 10px;
}

.info-box {
  margin-top: 20px;
}

.info-box h4 {
  color: #4fc3ff;
  margin-bottom: 5px;
}

.contact-form h2 {
  color: #4fc3ff;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #050814;
  color: white;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: #ffd23f;
  color: black;
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

#successMsg {
  margin-top: 10px;
  color: #4fc3ff;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  background: #02050d;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
