/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #001d3d, #000814);
  color: #f0f8ff;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === Base styles === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #001d3d, #000814);
  color: #f0f8ff;
}

/* === Header container === */
.header-2025 {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(0, 191, 255, 0.06);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  padding: 12px 24px;
  box-shadow: 0 2px 12px rgba(0, 191, 255, 0.1);
}

.header-2025 .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Logo === */
.logo img {
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* === Navigation === */
.nav-menu {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 1rem;
  align-items: center;
}

.nav-menu a {
  color: #99ccff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #00cfff;
  background: rgba(0, 207, 255, 0.1);
}

/* === Post an Ad Button === */
.post-ad-btn {
  background: linear-gradient(135deg, #00d4ff, #0086ff);
  color: #001f3f;
  padding: 10px 24px;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 0 15px #00d4ffaa;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.post-ad-btn:hover {
  background: linear-gradient(135deg, #0086ff, #00d4ff);
  box-shadow: 0 0 25px #00d4ffee;
}

/* === Search === */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 0;
  opacity: 0;
  padding: 8px 12px;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: width 0.4s ease, opacity 0.4s ease;
  margin-right: 8px;
}

.search-input:focus {
  outline: none;
}

/* Show input when container has class 'active' */
.search-wrapper.active .search-input {
  width: 180px;
  opacity: 1;
}

/* Search button */
.search-btn {
  background: transparent;
  border: none;
  color: #00cfff;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.search-btn:hover {
  color: #0086ff;
}

/* === Hamburger Menu (mobile) === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11000;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00cfff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === Responsive === */
@media (max-width: 900px) {
  .nav-menu {
    display: none; /* hide menu */
  }

  .hamburger {
    display: flex;
  }
}



/* === Section Base === */
section {
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #99ccff;
  margin-bottom: 40px;
}

/* === Why Choose Us === */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.value-card {
  background: rgba(0, 191, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  color: #cce7ff;
  width: 250px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.1);
}

/* === Top Categories === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.category-card {
  background: rgba(0, 191, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  font-size: 1.1rem;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.1);
}

/* === Featured Listings === */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.listing-card {
  background: rgba(0, 191, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.1);
  padding-bottom: 20px;
}

.listing-card img {
  width: 100%;
  height: auto;
  display: block;
}

.listing-card h3 {
  margin: 15px 0 5px;
}

.price {
  color: #00cfff;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-glass {
  display: inline-block;
  padding: 10px 20px;
  background: #00cfff;
  color: #001f3f;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-glass:hover {
  background: #0099cc;
}

/* === How It Works === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: rgba(0, 191, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00cfff;
}

/* === Testimonials === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 16px;
}

.testimonial-text {
  font-style: italic;
  color: #ccf2ff;
}

.testimonial-author {
  margin-top: 10px;
  font-weight: bold;
  color: #ffffff;
}

.testimonial-stars {
  color: gold;
  font-size: 1.2rem;
}

/* === App Download === */
.app-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 191, 255, 0.06);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(12px);
  max-width: 1100px;
  margin: 0 auto;
}

.app-text {
  flex: 1 1 300px;
  text-align: left;
}

.store-buttons img {
  height: 50px;
  margin-right: 15px;
}

.app-image img {
  max-width: 300px;
  border-radius: 16px;
}

/* === Newsletter === */
.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 191, 255, 0.06);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 60%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: #00cfff;
  color: #001f3f;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #00aacc;
}

/* === Footer === */
.blue-footer {
  background: rgba(0, 191, 255, 0.05);
  padding: 60px 20px 30px;
  backdrop-filter: blur(12px);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  color: #00cfff;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  color: #99ccff;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-socials a {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #99ccff;
}

.footer-socials a:hover {
  color: #00cfff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #88bfe7;
  font-size: 0.9rem;
}

/* === Live Chat FAB === */
.chat-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chat-btn {
  width: 60px;
  height: 60px;
  background: rgba(0, 191, 255, 0.1);
  border: 2px solid #00cfff;
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #00cfff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  display: none;
  flex-direction: column;
}

#chat-toggle:checked ~ .chat-box {
  display: flex;
}

.chat-header {
  background: rgba(0, 191, 255, 0.2);
  padding: 15px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-weight: bold;
  color: white;
}

.chat-body {
  flex: 1;
  padding: 15px;
  color: #cce7ff;
  overflow-y: auto;
}

.chat-input {
  display: flex;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.chat-input input {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.chat-input button {
  background: #00cfff;
  color: #001f3f;
  border: none;
  padding: 10px 14px;
  margin-left: 10px;
  border-radius: 8px;
  font-weight: bold;
}

 /* === brows === */
.section {
  padding: 60px 30px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00cfff;
  text-align: center;
}

/* Listings Grid */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.listing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 191, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.05);
  transition: transform 0.3s ease;
}

.listing-card:hover {
  transform: scale(1.02);
}

.listing-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.listing-info {
  padding: 15px;
}

.listing-info h3 {
  margin: 0 0 10px;
}

.ad-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ad-form label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #99ccff;
}

.ad-form input,
.ad-form textarea,
.ad-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 1rem;
  margin-top: 6px;
}

.ad-form button {
  align-self: flex-end;
}
.transparent-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 191, 255, 0.05);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.05);
}

.header-bar {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav a {
  color: #99ccff;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #00cfff;
}

.post-ad-btn {
  background: linear-gradient(135deg, #00d4ff, #0086ff);
  padding: 10px 18px;
  border-radius: 16px;
  color: #001f3f;
  font-weight: 700;
  margin-left: 24px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.post-ad-btn:hover {
  background: linear-gradient(135deg, #0086ff, #00d4ff);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.auth-body {
  background: linear-gradient(135deg, #0f1e3a, #000a14);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-top: 40px;
}

.auth-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.08);
}

.auth-card h2 {
  margin-bottom: 20px;
  color: #00cfff;
}

.auth-card input {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 12px;
  color: #fff;
}

.auth-card input::placeholder {
  color: #99ccff;
}

.switch-text {
  margin-top: 15px;
  font-size: 0.9rem;
}

.switch-text a {
  color: #00cfff;
  text-decoration: underline;
}
button, .post-ad-btn {
  cursor: pointer;
}
body {
  cursor: url('yellow-pointer.cur'), auto;
}
.logo-slider-section {
  background: rgba(0, 191, 255, 0.05);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  padding: 20px 0;
  overflow: hidden;
}

.logo-slider {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(250px * 14); /* Adjust based on number of logos */
  animation: scroll 30s linear infinite;
}

.logo-track img {
  width: 120px;
  height: auto;
  margin: 0 25px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.container {
  max-width: 1200px;
  width: 100%;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox div {
  flex: 1 1 300px;
  margin: 10px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
  .nav {
    flex-direction: column;
    align-items: center;
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .container {
    padding: 1rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.button {
  width: 300px;
}

.button {
  padding: 0.75rem 1.5rem;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    font-size: 1.2rem;
  }
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00bfff;
  text-shadow: 0 0 5px #00bfff00;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(12px);
  width: 300px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.3);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-top: 15px;
  color: #ffffff;
  text-shadow: 0 0 3px #00bfff;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffff;
  margin: 10px 0;
}

.desc {
  font-size: 0.95rem;
  color: #d0faff;
}

.view-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, #00bfff, #009acd);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #00bfff;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: linear-gradient(145deg, #009acd, #0077b6);
  box-shadow: 0 0 20px #00bfff;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: rgba(0, 191, 255, 0.1);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #00bfff;
  width: 80%;
  max-width: 400px;
  color: #fff;
  border-radius: 16px;
}

.close {
  color: #fff;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* Global styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #02121f, #032a45);
  color: #fff;
}

/* Container for the product page */
.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

/* Image Slider */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.slides {
  display: flex;
  width: 500%;
  animation: slide 25s infinite;
}

.slides img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 16px;
}

/* Auto slide animation */
@keyframes slide {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }
  25%  { transform: translateX(-100%); }
  40%  { transform: translateX(-100%); }
  45%  { transform: translateX(-200%); }
  60%  { transform: translateX(-200%); }
  65%  { transform: translateX(-300%); }
  80%  { transform: translateX(-300%); }
  85%  { transform: translateX(-400%); }
  100% { transform: translateX(-400%); }
}

/* Product Info Section */
.product-info {
  margin-top: 30px;
}

.product-info h1 {
  font-size: 2rem;
  color: #00bfff;
  text-shadow: 0 0 4px #00bfff;
}

.product-info .price {
  font-size: 1.5rem;
  color: #00ffff;
  margin: 10px 0;
}

.product-info p {
  color: #d0faff;
  line-height: 1.6;
}

.secondary-btn {
  display: inline-block;
  margin-top: 20px;
  margin-left: 12px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #00bfff;
  color: #00bfff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #00bfff;
  color: #fff;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #02121f, #032a45);
  color: #fff;
}

/* Contact Container */
.contact-container {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

/* Title */
.contact-container h2 {
  font-size: 1.8rem;
  color: #00bfff;
  margin-bottom: 20px;
  text-align: center;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  resize: none;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #99d9ff;
}

/* Submit button */
button[type="submit"] {
  background: #00bfff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
}

button[type="submit"]:hover {
  background: #0080b3;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #00bfff;
  text-decoration: none;
  font-size: 0.95rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    margin: 30px 20px;
    padding: 20px;
  }

  input,
  textarea {
    font-size: 0.95rem;
  }
}

.contact-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #00bfff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #0080b3;
}

.loader {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #00bfff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
