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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #0052cc, #007fff);
  color: #fff;
  height: 100vh;
  padding: 100px 10% 0; /* Top padding for fixed navbar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 10%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffce00;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.btn-primary {
  background: #fff;
  color: #0052cc;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 2rem;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
  transform: scale(1.05);
}




.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.light {
  background: #f9f9f9;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact button {
  background: #0052cc;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
}

.testimonial {
  background: #f9f9f9;
  border: 2px dashed #0052cc;
  padding: 1.5rem;
  border-radius: 10px;
  width: 250px;
  font-style: italic;
  margin: 0 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  text-align: center;
}

.testimonial:hover {
  transform: scale(1.03);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-controls button {
  background: #0052cc;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #0052cc;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
  }

  .nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li {
  white-space: nowrap;
}

.nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
}

.hero-content {
  text-align: center;
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 0.5rem;
    z-index: 1100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 70px; /* below navbar */
    right: 0;
    width: 100%;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }
}


.store-banner {
  background-color: #f1f1f1;
  padding: 80px 0 40px;
  margin-top: 80px; /* pushes below fixed navbar */
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.store-title {
  font-size: 2rem;
  font-weight: 600;
  color: #5b2f91; /* purple-ish like your screenshot */
}

.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 1rem 2rem;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #333;
}

.shop-controls select {
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: white;
}

.pre-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2.5rem 10%;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 2rem;
}

.pre-footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pre-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pre-footer-column ul li {
  margin-bottom: 0.5rem;
}

.pre-footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.pre-footer-column ul li a:hover {
  color: #0052cc;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

