/* =========================================================
   GLOBAL DEFAULT
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0e14;
  color: #e6e6e6;
  overflow-x: hidden;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* =========================================================
   HEADER
========================================================= */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 60px;
  background: rgba(20, 23, 32, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #4ecbff;
  text-shadow: 0 0 12px #008cff;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  color: #d1d1d1;
  font-weight: 500;
  transition: 0.2s;
}

nav a:hover {
  color: #4ecbff;
  text-shadow: 0 0 10px #009dff;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: #dcdcdc;
}

.hero-content button {
  padding: 13px 35px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #4ecbff, #0f85ff);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,123,255,0.4);
  transition: 0.25s ease;
}

.hero-content button:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}

/* =========================================================
   PRODUCT SECTION
========================================================= */

section.products {
  padding: 120px 80px;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #4ecbff;
  margin-bottom: 60px;
  text-shadow: 0 0 12px #0066ff;
}

/* CARDS */
.cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.card {
  display: flex;
  align-items: center;
  background: rgba(21, 25, 34, 0.7);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 160, 255, 0.25);
}

.card:nth-child(even) {
  flex-direction: row-reverse;
}

.card img {
  width: 50%;
  height: 330px;
  object-fit: cover;
  filter: brightness(0.88);
}

.card-content {
  width: 50%;
  padding: 45px;
}

.card-content h3 {
  font-size: 1.6rem;
  color: #4ecbff;
  margin-bottom: 14px;
}

.card-content p {
  font-size: 1rem;
  color: #c2c2c2;
  line-height: 1.7;
}

.card-content button {
  margin-top: 22px;
  padding: 11px 26px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #4ecbff, #0f85ff);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.card-content button:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  padding: 70px 80px;
  background: #0a0c11;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-left {
  max-width: 420px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4ecbff;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  text-shadow: 0 0 12px #008cff;
}

.footer-left p {
  color: #989898;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  gap: 70px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  margin: 6px 0;
  font-size: 0.9rem;
  color: #b3b3b3;
  transition: 0.25s;
}

.footer-col a:hover {
  color: #4ecbff;
  text-shadow: 0 0 8px #009dff;
}

.footer-bottom {
  width: 100%;
  margin-top: 45px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem;
  color: #858585;
}



/* =========================================================
   LOGIN PAGE — FIXED VERSION
========================================================= */

body.login-page {
  background: #0c0f16 !important;
  color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* WRAPPER */
.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

/* LOGIN CARD */
.login-card {
  background: #131720;
  width: 480px;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  text-align: left;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-card h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.login-card .lead {
  font-size: 0.95rem;
  color: #b8b8b8;
  margin-bottom: 25px;
}

/* FORM */
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.small-link {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #bfcfff;
}

.input {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #252a35;
  background: #1a1f2b;
  color: #fff;
  outline: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.input:focus {
  border-color: #4ecbff;
  box-shadow: 0 0 10px rgba(78,203,255,0.35);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.form-actions a {
  color: #9fc6ff;
  font-size: 0.85rem;
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #4ecbff, #0f85ff);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  margin-top: 18px;
  transition: 0.3s;
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* SOCIAL BUTTON */
.social-row {
  margin-top: 22px;
}

.social {
  width: 100%;
  padding: 11px;
  background: #1a1f2a;
  border: 1px solid #292f3a;
  border-radius: 10px;
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.25s;
}

.social:hover {
  border-color: #4ecbff;
  color: #4ecbff;
  box-shadow: 0 0 10px rgba(78,203,255,0.3);
}
