/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
header {
  background: #104700;
  padding: 1rem;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

nav a {
  margin: 0 1rem;
  color: #fff;
  font-weight: bold;
}

/* Buttons */
.btn {
  padding: 0.6rem 5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.primary,
.secondary {
  background: #2a0033;
  color: #000;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* or any spacing you prefer */
  justify-content: center; /* optional: center the buttons */
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Layout: Two-Column Section */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.left-column {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.right-column {
  flex: 2;
  min-width: 300px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.login-btn {
  margin-top: 1rem;
}

/* Reviews Section */
.reviews {
  background: #f8f8f8;
  padding: 2rem;
  overflow: hidden;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.review-marquee {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollReviews 20s linear infinite;
}

.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  max-width: 250px;
  flex-shrink: 0;
  text-align: center;
}

.profile-icon {
  font-size: 3rem;
  color: #2a0033;
  margin-bottom: 0.5rem;
}

.stars {
  color: #2a0033;
  font-size: 1.2rem;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer Section */
.footer {
  background: #111;
  color: #eee;
  padding: 2rem 1rem;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.footer-left p {
  font-size: 0.95rem;
}

.footer-middle h4,
.footer-right h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin: 0.4rem 0;
}

.footer-links a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  margin-right: 10px;
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* QR Section */
.qr-section {
  margin-top: 1rem;
}

.qr-section p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.qr-image {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo  {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px; /* or any fixed height */
  }

  .two-column {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    width: 100%;
  }

  .footer-links,
  .social-icons {
    justify-content: center;
  }

  nav  {
    display: none;
  }

 .button-group {
    gap: 0.75rem;
  }
}

@media (max-width: 430px){
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px; 
  }

  nav  {
    display: none;
  }
   .button-group {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    padding: 1rem;
  }

  .footer-left p,
  .qr-section p {
    font-size: 0.9rem;
  }

  .qr-image {
    width: 80px;
  }
  
}
