* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

/* Header progress bar animation */
.progress {
  background-color: red;
  height: 0.4vh;
  animation: load 2s ease-in-out 2;
}

@keyframes load {
  0% { width: 0vw; }
  20% { width: 20vw; }
  50% { width: 50vw; }
  70% { width: 70vw; }
  100% { width: 100vw; }
}

/* Header + Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#home {
  padding-top: 100px; /* adjust based on header height */
}


nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
  background-color: aliceblue;
  padding: 8px 16px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

nav ul li:hover {
  background-color: #add8e6;
  transform: translateY(-5px);
}

nav ul li a {
  text-decoration: none;
  color: darkblue;
  font-size: 18px;
  transition: 0.3s;
}

#login, #signup {
  background-color: red;
}

#login a:hover, #signup a:hover {
  color: white;
}

#logo {
  height: 60px;
  margin-right: 30px;
  object-fit: contain;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 5px #00f); }
  100% { filter: drop-shadow(0 0 15px #00f); }
}

/* Home background */
#home {
  background: url('https://media.istockphoto.com/id/1395523535/vector/projection-of-a-credit-card-on-background-of-a-billboard-money-and-payment-target-page-for.jpg?s=612x612&w=0&k=20&c=6KOmtlXkg8De-FAUgavU6dcm-6KQ78jQG_DzIfxSOSg=');
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  min-height: 100vh;
}

/* Text Section */
.text {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px;
  margin: 60px auto;
  width: 80%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  color: darkblue;
  font-size: 42px;
  margin-bottom: 20px;
}

h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
}

/* CTA Buttons */
.c {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 100px;
}

.c a {
  display: inline-block;
  margin: 12px;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 20px;
  color: darkblue;
  background-color: aliceblue;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.c a:hover {
  background-color: skyblue;
  border: 2px solid black;
  transform: scale(1.1);
  font-weight: bold;
}

/* Footer */
footer {
  background: white;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

footer ul li {
  margin: 0 20px;
}

footer ul li a {
  color: darkblue;
  text-decoration: none;
  font-size: 16px;
}

footer ul li a:hover {
  color: gray;
}

footer p {
  color: darkblue;
  font-size: 14px;
}
.partner-section {
  background-color: #f1f9ff;
  padding: 2em;
  text-align: center;
  border-top: 2px solid #00b7ff;
}

.partner-container h3 {
  font-size: 1.8em;
  color: #007acc;
  margin-bottom: 0.5em;
}

.partner-container p {
  font-size: 1em;
  color: #333;
  margin-bottom: 1em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partner-link {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.8em 1.5em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.partner-link:hover {
  background-color: #005fa3;
}
