/* ====== Global Layout ====== */
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #0B0F19 0%, #030712 100%);
  color: #E5E7EB;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding-top: 70px; /* space for welcome bar */
}

/* ====== Container (login/product area) ====== */
.container {
  background-color: rgba(17, 24, 39, 0.85); /* translucent dark slate */
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 224, 255, 0.1);
  text-align: center;
  width: 320px;
  backdrop-filter: blur(12px);
}

h1 {
  margin-bottom: 20px;
  font-size: 28px;
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* ====== Inputs ====== */
input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 224, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: #E5E7EB;
  font-size: 16px;
}

input:focus {
  outline: none;
  border-color: #00E0FF;
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.4);
}

/* ====== Buttons ====== */
button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00E0FF;
}

/* ====== Message ====== */
#message {
  margin-top: 10px;
  font-weight: bold;
  color: #FFD43B;
}

/* ====== Welcome Bar ====== */
#welcome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #111827, #1E293B);
  color: #00E0FF;
  padding: 15px 0;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 224, 255, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.top-buttons {
  display: flex;
  gap: 12px;
}

.top-button {
  text-decoration: none;
  padding: 8px 18px;
  background: linear-gradient(90deg, rgba(0,224,255,0.2), rgba(123,97,255,0.2));
  color: #E5E7EB;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.top-button:hover {
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
}

/* ====== Cart Badge ====== */
#cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #FF3B3B;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
}

/* ====== Products ====== */
.product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 100px;
}

.product {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 224, 255, 0.05);
  padding: 20px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 224, 255, 0.15);
}

.product img {
  width: 100%;
  border-radius: 12px;
}

.add-to-cart {
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.add-to-cart:hover {
  box-shadow: 0 0 15px #00E0FF;
  transform: translateY(-2px);
}

.products p {
  color: #E5E7EB;
}
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #0B0F19 0%, #030712 100%);
  color: #E5E7EB;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.cart-container {
  width: 400px;
  background-color: rgba(17, 24, 39, 0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 224, 255, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
}

h1 {
  margin-bottom: 25px;
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.2);
}

.item-name {
  flex: 1;
  text-align: left;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  border: none;
  color: white;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: 0.2s;
}

.qty-btn:hover {
  box-shadow: 0 0 10px #00E0FF;
}

.item-price {
  font-weight: bold;
  color: #00E0FF;
  width: 50px;
  text-align: right;
}

.confirm-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #00E0FF, #7B61FF);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00E0FF;
}
/* Cart Page Styles */
.cart-total {
  text-align: center;
  margin: 20px 0;
}

.cart-total button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.product-grid .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.content {
  width: 100%;
  padding: 50px;
  background: none; /* removes blue or black background */
  display: flex;
  justify-content: center;
}

.item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  width: 100%;
}

/* Left box styles */
.left-box {
  flex: 1;
  background-color: #0a1630; /* dark blue box */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform; /* smooth scaling */
}

.left-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right box styles */
.right-box {
  flex: 1;
  background-color: #0b1b38; /* darker blue box */
  border-radius: 20px;
  padding: 30px;
  color: #eaeaea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover */
  will-change: transform;
}

.right-box:hover {
  transform: scale(1.05); /* box grows on hover */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* stronger shadow */
}

/* Right box text */
.right-box h3 {
  font-size: 2rem;
  color: #4fa3ff;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.right-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cfd8e3;
  display: inline-block;
  transition: transform 0.3s ease;
}

h3 {
  color: black;
}

p {
  color: black;
}

p {
  color: royal blue;
}

.faq {
  width: 100%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.faq h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #8ec9ff;
}

.question {
  background-color: #1b2e4a;
  color: #fff;
  cursor: pointer;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.question:hover {
  background-color: #223b5a;
}

.answer {
  background-color: #101d33;
  border-radius: 10px;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  margin-bottom: 10px;
}

.answer.open {
  max-height: 200px;
  padding: 15px 20px;
}

.arrow {
  font-weight: bold;
  transition: transform 0.3s;
}

.active .arrow {
  transform: rotate(180deg);
}
.main-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 80px 20px;
}

.info-box {
  background-color: #13203d;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  padding: 40px;
  width: 350px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

h5 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #8cb4ff;
}

p3 {
  font-size: 16px;
  color: #d3d8e6;
}

#welcome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #0a1630, #091024); /* deep dark blue theme */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center; /* centers Welcome and buttons group */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  padding: 0 60px;
}

/* logo stays on far left */
.logo {
  position: absolute;
  left: 30px;
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* center buttons beside "Welcome" */
.top-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.top-button {
  background: linear-gradient(90deg, #00c6ff, #7a5cf4);
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.top-button:hover {
  background: linear-gradient(90deg, #7a5cf4, #00c6ff);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}














