/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #14151a;
    margin: 0;
  background: linear-gradient(135deg, #f8faff, #eef2ff);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 12px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 40px;
  max-width: 1200px;
  margin: 20px auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 18px;
}
.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #17c684;
}
.nav-links .dropdown {
  position: relative;
}

/* Hide submenu by default */
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  min-width: 180px;
  z-index: 1000;
}

/* Dropdown links */
.nav-links .dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.nav-links .dropdown-content a:hover {
  background: #f5f5f5;
  color: #0dbf66; /* red hover color */
}

/* Show dropdown on hover */
.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

.btn {
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: auto;
}

.btn.primary {
  background: #17c684;
  color: #fff;
}
.btn.primary:hover {
  background: #13a86f;
}
.btn.contact {
  background: transparent;
  color: #14151a;
  border: 1px solid #e0e0e0;
}
.btn.contact:hover {
  border-color: #17c684;
  color: #17c684;
}

/* Mobile Drawer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #14151a;
  border-radius: 2px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-drawer.active { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.close-btn {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
.drawer-actions {
  display: flex;
  gap: 10px;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.drawer-links a {
  text-decoration: none;
  color: #14151a;
  font-size: 16px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 8px;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 999;
}
.overlay.active { display: block; }

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 10%;
  background: linear-gradient(135deg, #f8faff, #eef2ff);
}

.hero-content {
  max-width: 50%;
}

.tag {
  background: #e6e0ff;
  color: #13a86f;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
  font-weight: 700;
  color: #111;
}

.hero h1 span {
  color: #13a86f;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

#cta-btn {
  padding: 14px 30px;
  background: #17c684;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

#cta-btn:hover {
  background: #13a86f;
}

/* Right Side Image */
.hero-image img {
  width: 420px;
  animation: float 3s ease-in-out infinite;
}



.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 1400px;
  flex-wrap: wrap; /* allow wrapping on small screens */
  background-color: white;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 200px; /* helps responsive layout */
  padding: 10px 20px;
  position: relative;
}

/* Vertical line for desktop */
.stat:not(:last-child) {
  border-right: 2px solid #ccc;
}

.popular-products{
  padding:20px 20px;
  max-width:1200px;
  margin:0 auto;
}
.section-title{
  font-size:1.5rem;
  font-weight:800;
  margin-bottom:28px;
  color:#1a1a1a;
  letter-spacing:.3px;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.product-card{
  display:block;
  position:relative;
  background:#fff;
  border:1px solid #e6e8ef;
  border-radius:14px;
  padding:22px 20px 18px;
  text-decoration:none;
  color:inherit;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  border-color:#d6daf0;
}

.product-card .icon{
  font-size:28px;              /* replace with SVG later if needed */
  line-height:1;
  width:46px;height:46px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:#f2f6ff;          /* soft finance tint */
  margin-bottom:14px;
}

.product-card h3{
  font-size:1.05rem;
  font-weight:800;
  color:#0f172a;
  letter-spacing:.4px;
  margin:0 0 8px;
}

.product-card p{
  font-size:.95rem;
  color:#586077;
  line-height:1.45;
  margin:0 0 18px;
}

.product-card .cta{
  font-size:.92rem;
  font-weight:700;
  color:#13a86f
}
.product-card .cta:hover{ text-decoration:underline; }
.how-it-works {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.how-it-works .section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  text-align: center;
  letter-spacing: .3px;

}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.step-card {
  position: relative;
  padding: 15px 10px;
  border-radius: 12px;
  transition: 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.step-card .step-number {
  position: absolute;
  top: -15px;
  background: #0dbf66;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  width: 55px;
  height: 35px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.step-card .icon {
  width: 40px;
  height: 40px;
  margin: 30px auto 15px;
}

.step-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-card h3 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 600;
  color: #222;
}

.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.tools-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8faff, #eef2ff);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tools-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: start;
  letter-spacing: .3px;
}

.tools-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; 
}
.carousel-track {
  display: flex;
  scroll-snap-type: x mandatory;
  gap: 20px;
}

.tool-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  width: 360px;
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tool-left {
  padding: 20px 10px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-left img {
  width: 60px;
  height: 60px;
}

.tool-right {
  text-align: left;
  padding: 20px;
  position: relative;
  flex: 1;
}

.tool-right h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.tool-right p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.tool-right a {
  font-size: 14px;
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.tool-right a:hover {
  text-decoration: underline;
}

/* Accent colors for left side */
.sip { background: #0dbf66; }
.emi { background: #0dbf66; }
.invest { background: #0dbf66; }

/* Dotted accents */
.dots {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 8px 8px;
}

.dots-blue { color: #2196F3; bottom: 10px; right: 10px; }
.dots-purple { color: #9C27B0; bottom: 10px; right: 10px; }
.dots-red { color: #FF5722; bottom: 10px; right: 10px; }


.help-community {
  padding: 60px 0;
}

.help-community .container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

.help-community .card {
  flex: 1 1 45%;
  background: linear-gradient(135deg, #f8faff, #eef2ff);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  align-items: center;
}

.help-community .card:hover {
  transform: translateY(-5px);
}

.help-community h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111;
}

.help-community p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.help-community .com-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #16a34a; /* green theme */
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.help-community .com-btn:hover {
  background: #0f7834;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: invert(26%) sepia(80%) saturate(600%) hue-rotate(100deg) brightness(95%) contrast(90%);
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: start;
  margin-bottom: 30px;
  color: #0f172a;
}
.faq-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
  color: #0dbf66;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for answer */
  padding: 15px 20px;
  border-radius: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.partners-section {
  padding: 40px 0;
  text-align: start;
  max-width: 1100px;
  margin: 0 auto;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0f172a;
  font-weight: 600;
}

.filter-buttons {
  margin-bottom: 40px;
}

.filter-btn {
  background: #fff;
  border: 2px solid #16a34a;
  color: #16a34a;
  padding: 10px 22px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
}

.partner-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 130px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 10px;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.footer {
  background: #111827;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  padding: 40px 0px 20px;
}

.footer h4, .footer h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}

/* Investors */
.investors {
  text-align: center;
  margin-bottom: 40px;
  display:flex ;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 5px;
  border: 1px solid #333;
}
.investor-logos img {
  height: 40px;
  margin: 10px;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}

/* Main Footer Links */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-logo {
  max-height: 40px;
}
.app-links img {
  height: 40px;
  margin: 5px 0;
  border-radius: 5px
}

/* Footer Links */
.footer-links {
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 15px 0;
}
.footer-links a {
  margin: 0 15px;
  font-size: 14px;
}

/* Payment + Security */
.payment-security {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
  flex-wrap: wrap;
  max-width: 1200px;
}
.payment-security img {
  height: 30px;
  margin: 0 10px;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #333;
  padding-top: 15px;
}
.market-section { 
  padding:20px 20px; 
  max-width: 1100px; 
  margin: 0 auto; 
  font-family: Arial, sans-serif;
}
.market-header { 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  margin-bottom:25px; 
}
.market-header h2 { font-size:26px; margin:0; }
.market-header a { font-size:14px; color:green; text-decoration:none; }

.top-boxes { display:flex; gap:20px; margin-bottom:30px; flex-wrap:wrap; justify-content:center ;}
.top-card { 
  flex:1; min-width:300px; 
  background:#fff; 
  border-radius:16px; 
  padding:10px 20px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08); 
  display:flex; 
  flex-direction:column; 
  align-items:flex-start; 
  transition: all 0.3s ease;
}
.top-card:hover { transform: translateY(-5px); box-shadow:0 4px 12px rgba(0,0,0,0.15); }
.card-header { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.metal-icon { width:40px; height:40px; }
.card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.card-left {
  flex: 1;
}
.card-right {
  flex: 0 0 100px;
  display: flex;
  justify-content: flex-end;
}
.metal-illustration {
  width: 80px;
  height: auto;
}

.subscribe-btn { 
  margin-top:10px; 
  padding:6px 14px; 
  border-radius:20px; 
  border:none; 
  background:black; 
  color:white; 
  cursor:pointer; 
  font-size:14px; 
  transition: background 0.2s ease;
}
.subscribe-btn:hover { background:#444; }
.price { font-size:24px; font-weight:bold; margin:15px 0 5px; }
.change { font-size:14px; margin-bottom:5px; }
.green { color:green; font-weight:bold; } 
.red { color:red; font-weight:bold; }
.countdown { font-size:13px; color:#555; }
.trend-line img { margin-top:10px; width:120px; opacity:0.7; }

.lists { display:flex; gap:20px; flex-wrap:wrap; }
.list { 
  flex:1; min-width:260px; 
  background:#fff; 
  border-radius:16px; 
  padding:20px; 
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.list:hover { transform: translateY(-5px); box-shadow:0 4px 12px rgba(0,0,0,0.15); }
.list h4 { font-size:18px; margin-bottom:15px; }
.item { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; font-size:14px; }
.item img.logo { width:22px; height:22px; border-radius:50%; margin-right:8px; }
.item span:first-child { flex:1; display:flex; align-items:center; gap:6px; }


   .modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;  /* default hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Box */
.modal {
  background: #fff;
  border-radius: 12px;
  display: flex;
  max-width: 900px;
  width: 95%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* Left Side */
.modal-left {
  flex: 1;
  background: #17c684; /* blue (same as site) */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.modal-left img {
  max-width: 230px;
  margin-bottom: 20px;
}

.qr-text {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* Right Side */
.modal-right {
  flex: 1;
  padding: 40px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
}

.modal-right h2 {
  margin-bottom: 25px;
  color: #0f172a;
  font-weight: 600;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.2s;
}

.google-btn:hover {
  background: #f1f1f1;
}

.divider {
  text-align: center;
  margin: 20px 0;
  font-size: 13px;
  color: #777;
  position: relative;
}

.divider::before, .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ccc;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}

.input-group input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  margin-left: 8px;
}

/* Primary button same as homepage */
.otp-btn {
  width: 100%;
  padding: 14px;
  background: #0dbf66;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.otp-btn:hover {
  background: #0dbf66;
}

.terms {
  font-size: 12px;
  margin-top: 15px;
  color: #555;
}

.terms a {
  color: #0a58ca;
  text-decoration: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}


