* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f7fa;
}

/* Header */
.header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 45px;
}

/* Nav */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* Hover effect */
.nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #007bff;
  transition: 0.3s;
}

.nav ul li a:hover::after {
  width: 100%;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    transition: 0.3s;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .nav ul li {
    margin: 15px 0;
  }

  .nav.active {
    left: 0;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
}

/* Animated background glow */
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.4), transparent);
  filter: blur(100px);
  animation: float 8s infinite alternate ease-in-out;
}

.hero-bg::after {
  right: 0;
  bottom: 0;
  animation-delay: 2s;
}

/* Container */
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Content animation */
.hero-content {
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Primary button */
.primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 10px 25px rgba(59,130,246,0.4);
}

.primary:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Secondary */
.secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Rating */
.hero-rating {
  font-size: 14px;
  opacity: 0.85;
}

/* Image animation */
.hero-image {
  animation: fadeRight 1.2s ease forwards;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  from {
    transform: translateY(-50px);
  }
  to {
    transform: translateY(50px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.about {
  padding: 100px 20px;
  background: #f8fafc;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Content */
.about-content {
  animation: fadeUp 1s ease forwards;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.stat {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat h3 {
  font-size: 24px;
  color: #2563eb;
}

.stat span {
  font-size: 14px;
  color: #666;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
  }
}

.reviews {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* Grid */
.reviews-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.review-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

/* Stagger animation */
.review-card:nth-child(2) {
  animation-delay: 0.2s;
}
.review-card:nth-child(3) {
  animation-delay: 0.4s;
}

.review-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.review-header h4 {
  margin-bottom: 5px;
  color: #111;
}

/* Stars */
.stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Text */
.review-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* Left */
.contact-info {
  animation: fadeUp 1s ease forwards;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.contact-info p {
  opacity: 0.85;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}

.info-box span {
  font-size: 20px;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  animation: fadeRight 1s ease forwards;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 14px;
  color: #ccc;
  pointer-events: none;
  transition: 0.3s;
}

/* Floating label */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #60a5fa;
}

/* Button */
.contact-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer {
  background: #081601;
  color: #cbd5f5;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }
}

.bank-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.bank-card {
  overflow: hidden;
}

.bank-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}
.banks {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* Grid */
.banks-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.bank-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.bank-card:hover {
  transform: translateY(-8px);
}

/* Title */
.bank-card h3 {
  margin-bottom: 10px;
  color: #111;
}

/* Rating */
.rating {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 10px;
}

.rating span {
  color: #555;
  margin-left: 5px;
}

/* Text */
.bank-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Button */
.bank-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.bank-btn:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 992px) {
  .banks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .banks-grid {
    grid-template-columns: 1fr;
  }
}

.disclaimer {
  padding: 20px;
  background: black;
  border-top: 1px solid black;
  color: white;
}

.disclaimer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.disclaimer p {
  font-size: 13px;
  color: white;
  line-height: 1.6;
}

.disclaimer strong {
  color: green;
}


.msguru-terms-section {
    padding: 60px 8%;
    background: #f5f7fb;
}

.msguru-terms-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.msguru-terms-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.msguru-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.msguru-terms-container h2 {
    margin-top: 25px;
    font-size: 20px;
}

.msguru-terms-container p {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 600px) {
    .msguru-terms-container {
        padding: 25px;
    }

    .msguru-terms-container h1 {
        font-size: 24px;
    }
}

/* Section */
.bnk-contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #000000, #283d29);
  font-family: 'Poppins', sans-serif;
}

/* Wrapper */
.bnk-contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.bnk-contact-info {
  color: #fff;
  animation: bnkFadeUp 1s ease;
}

.bnk-contact-info h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.bnk-contact-info p {
  opacity: 0.85;
  margin-bottom: 25px;
}

/* Info Cards */
.bnk-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.bnk-info-card span {
  font-size: 18px;
}

/* Form Box */
.bnk-contact-form-box {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  animation: bnkFadeRight 1s ease;
}

/* Inputs */
.bnk-input-group {
  position: relative;
  margin-bottom: 25px;
}

.bnk-input-group input,
.bnk-input-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
}

/* Floating Labels */
.bnk-input-group label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 13px;
  color: #ccc;
  transition: 0.3s;
  pointer-events: none;
}

.bnk-input-group input:focus + label,
.bnk-input-group input:valid + label,
.bnk-input-group textarea:focus + label,
.bnk-input-group textarea:valid + label {
  top: -8px;
  font-size: 11px;
  color: #60a5fa;
}

/* Button */
.bnk-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: green;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.bnk-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59,130,246,0.4);
}

/* Animations */
@keyframes bnkFadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes bnkFadeRight {
  from {opacity: 0; transform: translateX(40px);}
  to {opacity: 1; transform: translateX(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .bnk-contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* Section Base */
.finhero-section {
  position: relative;
  padding: 110px 20px;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Glow overlay */
.finhero-overlay::before,
.finhero-overlay::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  filter: blur(120px);
  opacity: 0.5;
}

.finhero-overlay::before {
  background: #22d3ee;
  top: -100px;
  left: -100px;
  animation: finFloat 8s infinite alternate;
}

.finhero-overlay::after {
  background: #a855f7;
  bottom: -100px;
  right: -100px;
  animation: finFloat 10s infinite alternate;
}

/* Layout */
.finhero-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Content */
.finhero-content {
  color: #fff;
  animation: finFadeUp 1s ease;
}

.finhero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finhero-content p {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.finhero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.finhero-btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Primary */
.finhero-btn.primary {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #000;
  box-shadow: 0 10px 30px rgba(34,211,238,0.4);
}

.finhero-btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Ghost */
.finhero-btn.ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.finhero-btn.ghost:hover {
  background: rgba(255,255,255,0.1);
}

/* Trust */
.finhero-trust {
  font-size: 14px;
  color: #94a3b8;
}

/* Image */
.finhero-visual {
  animation: finFadeRight 1.2s ease;
}

.finhero-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: 0.4s;
}

.finhero-visual img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Animations */
@keyframes finFadeUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes finFadeRight {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes finFloat {
  from {transform: translateY(-40px);}
  to {transform: translateY(40px);}
}

/* Responsive */
@media (max-width: 992px) {
  .finhero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .finhero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .finhero-actions {
    justify-content: center;
  }
}

.finabout-section {
  padding: 110px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Layout */
.finabout-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.finabout-visual {
  position: relative;
  animation: finFadeLeft 1s ease;
}

.finabout-imgbox img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: 0.4s;
}

.finabout-imgbox img:hover {
  transform: scale(1.05);
}

/* Floating badge */
.finabout-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(34,211,238,0.4);
}

/* Content */
.finabout-content {
  color: #fff;
  animation: finFadeRight 1s ease;
}

.finabout-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finabout-content p {
  color: #cbd5f5;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Stats */
.finabout-stats {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.finabout-stat {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: 0.3s;
}

.finabout-stat:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.finabout-stat h3 {
  color: #22d3ee;
  font-size: 24px;
}

.finabout-stat span {
  font-size: 13px;
  color: #94a3b8;
}

/* Button */
.finabout-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.finabout-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(34,211,238,0.4);
}

/* Animations */
@keyframes finFadeLeft {
  from {opacity: 0; transform: translateX(-50px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes finFadeRight {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .finabout-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .finabout-stats {
    flex-direction: column;
  }

  .finabout-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Section */
.finchooseL-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  font-family: 'Poppins', sans-serif;
}

/* Header */
.finchooseL-header {
  text-align: center;
  margin-bottom: 60px;
}

.finchooseL-header h2 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 10px;
}

.finchooseL-header p {
  color: #64748b;
}

/* Grid */
.finchooseL-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.finchooseL-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.finchooseL-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: #c7d2fe;
}

/* Icon */
.finchooseL-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #e0f2fe, #e0e7ff);
}

/* Title */
.finchooseL-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Text */
.finchooseL-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .finchooseL-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .finchooseL-grid {
    grid-template-columns: 1fr;
  }
}

.finbankL-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  font-family: 'Poppins', sans-serif;
}

/* Header */
.finbankL-header {
  text-align: center;
  margin-bottom: 60px;
}

.finbankL-header h2 {
  font-size: 40px;
  color: #0f172a;
}

.finbankL-header p {
  color: #64748b;
}

/* Grid */
.finbankL-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.finbankL-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.finbankL-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Featured */
.finbankL-card.featured {
  border: 2px solid #3b82f6;
}

.finbankL-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Image */
.finbankL-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: 0.4s;
}

.finbankL-card:hover img {
  transform: scale(1.05);
}

/* Title */
.finbankL-card h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 5px;
}

/* Rating */
.finbankL-rating {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 10px;
}

.finbankL-rating span {
  color: #64748b;
  margin-left: 5px;
}

/* Text */
.finbankL-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Button */
.finbankL-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.finbankL-btn:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 992px) {
  .finbankL-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .finbankL-grid {
    grid-template-columns: 1fr;
  }
}

.finrevL-section {
  padding: 100px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.finrevL-header {
  text-align: center;
  margin-bottom: 60px;
}

.finrevL-header h2 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 10px;
}

.finrevL-header p {
  color: #64748b;
  margin-bottom: 15px;
}

/* Trust bar */
.finrevL-trust {
  display: inline-block;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.finrevL-trust span {
  color: #64748b;
  margin-left: 6px;
}

/* Grid */
.finrevL-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.finrevL-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.finrevL-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Top */
.finrevL-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.finrevL-top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Name */
.finrevL-top h4 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

/* Stars */
.finrevL-stars {
  color: #fbbf24;
  font-size: 13px;
}

/* Text */
.finrevL-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .finrevL-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .finrevL-grid {
    grid-template-columns: 1fr;
  }
}
