body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FA;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffd900;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  position: fixed;
}

.logo img {
  height: 50px;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    background: none;
    border: none;
    outline: none;
}



.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  min-height: 90vh;
  gap: 40px;
  background:#0056b3;
  flex-wrap: wrap;
}


.hero-content {
  flex: 1 1 400px;
  color: #ffffff;
  
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff; 
}


.hero-content i {
  font-size: 1.1rem;
  font-style: italic;
  color: #000000; 
  line-height: 1.6;
}


.hero img {
  max-width: 450px;
  width: 100%;
  flex: 1 1 300px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

.btn-join {
  display: inline-block;
  margin-top: 30px;
  padding: 8px 24px;
  background-color: #f00404; 
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-join:hover {
  background-color: #fffb00;
  transform: scale(1.05);
  color:black;
}

.container {
   /* flex-wrap: wrap; /* Ensures items wrap properly */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    justify-content: center;
    align-items: center;
    max-width: 1200px; /* Adjust width as needed */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Ensures text inside is centered */
}


.call2Action {
  text-align: center;
  margin: 40px auto;
}

.call2Action img {
  max-width: 70px;
  margin-bottom: 15px;
}

.call2Action h2,
.call2Action h4,
.call2Action p {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #1f2937;
  text-align: left;
}

.call2Action i {
  display: block;
  font-style: italic;
  color: #4b5563;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

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


.btn-deposit {
  background-color: #10b981; 
}

.btn-withdraw {
  background-color: #ef4444; 
}

.btn-account {
  background-color: #3b82f6; 
}

.btn-statement {
  background-color: #f59e0b;
}



.tips {
    min-height: 80vh;
    background: url('images/modern.jpeg') no-repeat center center;
    background-size: cover;
    color: black;
    padding: 60px 20px;
    text-align: center;
}

.tips .row {
    max-width: 1100px;
    margin: auto;
}

.tips h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    color: #2c3e50; /* Consistent dark text */
}

/* Grid layout for proper alignment */
.tips .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Individual Tips */
.tip-1 {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.tip-1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tip-1 h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    font-weight: bold;
}

.tip-1 i {
    font-size: 1rem;
    font-style: normal;
    color: #555;
    position: relative;
}



.footer {
    background: #1E3A8A;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.contact-info, .quick-links, .social-media {
    flex: 1;
    min-width: 250px;
}
.quick-links ul {
    list-style: none;
    padding: 0;
}
.quick-links ul li a {
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}
.quick-links ul li a:hover {
    text-decoration: underline;
}
.social-media a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}
.social-media a:hover {
    color: #FFD700;
}
.copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

 .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #222;
        color: white;
        padding: 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 500px;
        z-index: 1000;
    }
    .cookie-banner button {
        margin-left: 10px;
        padding: 5px 10px;
        border: none;
        cursor: pointer;
        background: #0d6efd;
        color: white;
        border-radius: 3px;
    }
    .cookie-banner button:hover {
        background: #0056b3;
    }


    /*Wallet*/

.button-group {
  text-align: center;
  margin-bottom: 20px;
}

.toggle-btn {
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover,
.toggle-btn.active {
  background-color: #000000;
}

.table-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.table-wrapper {
  display: block;
}

.hidden {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.responsive-table {
  overflow-x: auto;
  width: 100%;
}
table {
  width: 100%;
  min-width: 600px; /* ensure it's scrollable on small screens */
}


th, td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

thead {
  background-color: #f4f4f4;
}

  /*End of Wallet*/

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


@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}




@media screen and (max-width: 768px) {
    .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffd900;
    position: absolute;
    top: 70px;
    left:0;
    width: 100%;
    padding:15px 20px;
    border-radius:0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

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

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .steps-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 20px;
        scroll-behavior: smooth;
    }


    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 90%;
    }

     .offers {
        max-width: 90%;
        padding: 15px;
    }

    .services h2 {
        font-size: 1.5rem;
    }

    .offers h2 {
        font-size: 1.5rem;
    }

    .tips h1 {
        font-size: 2rem;
    }

    .tips .row {
        display: block;
    }

    .tip-1 {
        margin-bottom: 20px;
    }

     .property-card {
        width: 100%; /* Stack items for smaller screens */
    }


    .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero img {
    margin-bottom: 20px;
  }
}



