* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: white;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.logo img {
  height: 32px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
/* Wallet icon next to balance */
.wallet-icon {
  height: 16px;         /* Small and neat */
  width: 16px;
  margin-right: 6px;    /* Space between icon and text */
  vertical-align: middle;
}


.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #0d1b2a;
  font-weight: 500;
}
/* Hover effect for all links */
.nav-links a:hover {
  color: #250047; /* Blue on hover - you can change this */
  transition: color 0.3s ease;
}

/* Active link styling */
.nav-links a.active {
  color: #250047; /* Orange for active link - customize */
  font-weight: bold;
}

.balance span {
  font-weight: bold;
  color: #333;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 24px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 8px 0;
  }
}

  .hero {
    background-image: url('../images/10761.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    align-items: flex-start;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: left;
    overflow-x: hidden;
    z-index: 0;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
  
  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    opacity: 0;
  transform: translateY(-20px);
  animation: fadeInSlideDown 1.5s ease-out forwards;
  font-weight: 700;
  line-height: 1.2;
  color: #003366; /* rich dark blue for depth */
  }
  @keyframes fadeInSlideDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    text-align: left;
    max-width: 600px;
    color: #ffffff;
  line-height: 1.6;
    word-break: break-word;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* dark shadow */
  }  

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
      max-width: 100%;
    }
  }
  
  .hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  
  }
  .btn {
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  
  .primary {
    background-color: #0056d2;
    color: white;
    
  }

  .secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  .btn:focus,
a:focus {
  outline: 2px solid #0056d2;
  outline-offset: 2px;
}

  html {
    scroll-behavior: smooth;
  }
  
  
  /* Main layout */
.info-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* align top edges */
  justify-content: center;
  padding: 60px 20px;
  background-color: #f7f9fc;
  gap: 40px;
}

/* LEFT IMAGE: Taller & fixed width */
.info-image img {
  width: 300px;
  height: 100%; /* take full height of content */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  align-items: center;
}

/* RIGHT CONTENT BOX */
.info-content {
  font-family: 'Open Sans', sans-serif; /* base font */
  max-width: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: fadeInRight 1s ease-in-out both;
}

.info-content h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
  text-align: left;
}

.info-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
  text-align:  left;
}
/* Learn More button inside content */
.learn-more-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #222;
}

/* Animated list */
.info-list {
  list-style: none; /* removes default bullet points */
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start; /* this is the fix */
  margin-bottom: 10px; /* equal spacing between items */
  font-size: 0.98rem;
  color: #333;
  font-style: italic;
  text-align: left;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px; /* consistent space between icon and text */
}


/* Delay animation for each list item */
.info-list li:nth-child(1) { animation-delay: 0.3s; }
.info-list li:nth-child(2) { animation-delay: 0.6s; }
.info-list li:nth-child(3) { animation-delay: 0.9s; }

/* Animations */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-image img {
    width: 100%;
    max-width: 300px;
  }

  .info-content {
    max-width: 100%;
  }
}

/* cards*/

.buycards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px; /* Reduced space between cards */
  padding: 40px 10px;
  background-color: #f9f9f9;
}

.card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
  width: 180px; /* Reduced width for 3 cards in a row */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-body {
  padding: 16px;
  text-align: center;
}

.card-body h3 {
  font-size: 1.2rem;
  color: #001f4d;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
}

.card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #004aad;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card .btn:hover {
  background-color: #00367a;
}
/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: #007bff; /* Blue background */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for separation */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}

.back-to-top img {
  width: 24px;
  height: 24px;
}

.back-to-top:hover {
  transform: translateY(-5px); /* Move upward slightly on hover */
  background-color: #0056b3;   /* Darker blue on hover */
}

.footer {
  background-color: #0a0a23;
  color: #f0f0f0;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3, .footer-section h2 {
  color: #4aa3df;
  margin-bottom: 10px;
}

.footer-section p{
  color: #dcdcdc;
  font-size: 0.95rem;
}
.footer-section a {
  color: #dcdcdc;
  font-size: 0.95rem;
  text-decoration: none; /* removes underline */
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #4aa3df;
  text-decoration: none; /* make sure it's not underlined on hover too */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

