* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  background-color: #010c2a;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: absolute;
  width: 100%;
  z-index: 10;
  font-size: 0.9rem;
}
.nav-left, .nav-right {
  color: white;
}
.nav-logo img {
  height: 32px;
}
.search-icon {
  margin-left: 5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px; /* adds spacing between children */
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('d86e5bbf86e8c0d5481d67916273b0247fafa865.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 14, 43, 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-subtitle {
  font-family: poppins, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
}

.hero-subtitle .line {
  width: 40px; /* or any desired width */
  height: 1px;
  background-color: #ffffff;
  margin: 0 10px;
}


.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hero-content h1 span {
  display: block;
}

.hero-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.95rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.primary {
  background-color: #5665ef;
  color: white;
  border: none;
}
.secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.primary:hover {
  background-color: #4f46e5;
}
.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.feature-section {
  background-color: white;
  padding: 4rem 2rem 0 2rem;
  display: flex;
  justify-content: center;
}

.feature-content {
  display: flex;
  margin-bottom: -0.3rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content .label {
  color: #5665EF;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.text-content h2 {
  font-size: 2rem;
  font-weight: 900;
  size: 45;
  margin-bottom: 1rem;
  color: #111827;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #374151;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #5665EF;
  font-size: 1.2rem;
  line-height: 1;
}

.image-content {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 240px;
  }
}
/* Products Section */
.products {
  background: #0a0e2b;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.products-label {
  color: #6366f1;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.products-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 1.1rem;
  width: 250px;
  text-align: center;
  color: #111827;
}
.card img {
  width: 100%;
  margin-bottom: 1rem;
}
.card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.95rem;
  color: #374151;
}

.card.blue { background: #e1f1ff; }
.card.peach { background: #ffe8dd; }
.card.pink { background: #fceafd; }
.card.green { background: #eaf8e7; }

.newsletter-box {
  background-color: #4f46e5;
  border-radius: 16px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  max-width: 1100px;
  color: white;
}

.newsletter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.newsletter-left {
  flex: 1 1 300px;
}
.newsletter-left .small-label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.newsletter-left h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
}

.newsletter-right {
  flex: 2 1 400px;
}
.newsletter-right p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  color: #333;
}

.subscribe-form button {
  background-color: #0a0e2b;
  color: white;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.subscribe-form button:hover {
  background-color: #111;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .newsletter-box {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
  }

  .newsletter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .newsletter-left h3 {
    font-size: 1.3rem;
  }

  .newsletter-right p {
    font-size: 0.9rem;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}

.footer {
  background: url('65a284be6e97c49950b9f40965c09996b1694021.png') no-repeat center;
  background-size: cover;
  background-position: center 08%;
  padding: 60px 20px 30px;
  text-align: center;
  color: #fff;
}


.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer h2 {
  font-size: 20px;
  margin: 10px 0;
}

.footer p {
  color: #ffffff;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgb(255, 255, 255);
  width: 90%;
  margin: 40px auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
  text-align: center;
  margin-bottom: 10px;
}

.footer-left a,
.footer-center a,
.footer-right {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
}

.footer-left a {
  margin: 0 10px;
}

.footer-left a:hover,
.footer-center a:hover {
  text-decoration: underline;
}

.footer-center a {
  font-size: 18px;
  margin: 0 8px;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer p {
    font-size: 14px;
    line-height: 1.5;
  }
.footer {
    background: url(65a284b….png) no-repeat center;
    background-size: cover;
    background-position: center 21%;
    padding: 60px 20px 30px;
    text-align: center;
    color: #fff;
}
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-left a,
  .footer-center a {
    font-size: 14px;
    margin: 0 5px;
  }

  .footer-right {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 120px;
  }
.footer {
    background: url(65a284b….png) no-repeat center;
    background-size: cover;
    background-position: center 21%;
    padding: 60px 20px 30px;
    text-align: center;
    color: #fff;
}
  .footer h2 {
    font-size: 18px;
  }

  .footer p {
    font-size: 13px;
  }

  .footer-center a {
    font-size: 16px;
    margin: 0 6px;
  }

  .footer-right {
    font-size: 11px;
  }
}

