@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
    /* Reset */
    *{box-sizing:border-box;margin:0;padding:0; font-family: "Montserrat", sans-serif;}
    body { font-family: "Montserrat", sans-serif; font-size: 16px; background: #0d1117; color: #fff; line-height: 1.6; }
	
    a { text-decoration: none; color: inherit; }

    /* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
    /* Navbar */
    .navbar { background: #0d1117; padding: 15px 15px; border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 1000; }
    .nav-content { display: flex; align-items: center; justify-content: space-between; }
    .logo { font-size: 22px; font-weight: bold; color: #2381f9; }
    .nav-links { display: flex; gap: 30px; }
    .nav-links a { color: #fff; font-weight: 500; }
   .nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}
  .signin {
    color: #3c83f6;
    border: 1px solid #3c83f6;
    padding: 10px 20px;
    border-radius: 5px;
}
    .btn-primary, .btn-secondary { padding: 10px 20px; border-radius: 5px; font-weight: bold; display: inline-block; font-size:; }
    .btn-primary { background: #3c83f6; color: #000; }
    .btn-secondary { background: transparent; border: 1px solid #2381f9; color: #2381f9; }
.btn-primary:hover, .btn-secondary:hover, .cta-button:hover {
	opacity: 0.8;
}.pymnt {
    text-align: center;
    margin-top: 10px;
    margin-bottom: -25px;
}
.pymnt img {
    width: 28% !important;
}
    /* Hamburger */
    .hamburger { display: none; font-size: 26px; cursor: pointer; }

    /* Drawer */
    .mobile-drawer { position: fixed; top: 0; right: -100%; width: 70%; height: 100%; background: #111; transition: 0.3s; padding: 20px; z-index: 2000; }
    .mobile-drawer.open { right: 0; }
    .drawer-header { text-align: right; }
    .close-drawer { font-size: 24px; cursor: pointer; }
    .drawer-links { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
    .drawer-links a { color: #fff; font-size: 18px; }

    /* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
       position: relative;
    overflow: hidden;
}
.heroimg img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: 100%;
}

.hero h1 {
    margin-bottom: 20px;
    line-height: normal;
}
.hero h1 span {
    display: block;
    font-size: 72px;
}
.payment-icons {
    text-align: center;
    margin-top: 10px;
}
.payment-icons i {
  margin-right: 15px;
}

/* Brand colors */
.visa {
  color: #1a1f71; /* Visa Blue */
}

.mastercard {
  color: #eb001b; /* Mastercard Red */
  background: linear-gradient(45deg, #ff5f00, #eb001b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.applepay {
  color: #fff; /* Apple Pay is usually black */
}

.googlepay {
  color: #4285f4; /* Google Blue */
}
span.h1kl {
    color: #2381f9;
}
.hero p.h1k3 {
    margin: 10px auto 20px;
    font-size: 40px;
    /* color: #a3a8b2; */
}
.hero p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 20px;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 20px; }
.hero-buttons a {
    font-size: 16px;
    max-width: 200px;
    width: 100%;
    padding: 12px;
}
.hero-buttons a:hover {
   opacity: 0.8;
}
.hero-stats {
    display: flex;
    gap: 90px;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    margin: 60px 0 0;
}
.hero-stats div b {
    color: #2381f9;
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.heroimg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}
.container.hero-content {
    position: relative;
    z-index: 1;
}



    /* Features */
    .features { padding: 60px 0; text-align: center; }

.features h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: normal;
}

 .features h1 span {
color: #3b82f6;
}

.features p.subtitle {
    color: #fff;
    margin-bottom: 40px;
    font-size: 20px;
}


 .features .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}


 .features .card {
background-color: #1e293b;
padding: 20px;
border-radius: 10px;
text-align: left;
transition: transform 0.3s ease, background-color 0.3s ease;
}


 .features .card:hover {
transform: translateY(-5px);
background-color: #334155;
}


 .features .card-icon {
font-size: 2rem;
margin-bottom: 15px;
}


 .features .card h3 {
font-size: 1.25rem;
margin-bottom: 10px;
}


 .features .card p {
color: #94a3b8;
font-size: ;
line-height: 1.5;
}

    /* About */
  .hero-section {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
gap: 30px;
}

.hero-image-wrapper {
position: relative;
flex: 1 1 500px;
}

.hero-image {
width: 100%;	
max-width: 100%;
border-radius: 10px;
display: block;
}


.stat-label {
    position: absolute;
    background-color: rgba(15, 23, 42, 0.85);
    padding: 15px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: left;
    border: 1px solid #cccccc21;
	color: #fff;
}

.stat-users {
top: -20px;
right: -20px;
}


.stat-volume {
bottom: -20px;
left: -20px;
}


.stat-label strong {
    display: block;
    font-size: 24px;
    color: #3b82f6;
    font-weight: 600;
    text-transform: uppercase;
}


.hero-content {
flex: 1 1 500px;
padding: 20px;
}

.section-subtitle {
    font-size: 15px;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}
.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-title span {
color: #3b82f6;
}
.section-text {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.feature-item {
    /*background-color: #1e293b;
    padding: 15px 20px;
    border-radius: 8px;*/
    flex: 1 1 220px;
}
.feature-title {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-title span {
    font-size: 1.3rem;
}
.feature-description {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}
.cta-button {
    display: inline-block;
    background-color: ;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
	

    /* Steps */
	
/* Container for the entire section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.about-header p {
    font-size: 1.2rem;
    margin-bottom: 50px;
	text-align: center;
}

.about-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.about-step {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
    width: 22%;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.about-step:hover {
    transform: scale(1.05);
}
.about-header h1 span {
    color: #3b82f6;
}
.about-step h3 {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 0;
    right: 20px;
    opacity: 0.3;
}
.about-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    color: #fff;
}
.about-header p {
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.4;
    color: #fff;
}
.about-step .small-text {
    color: #3c83f6;
    line-height: 1.2;
    margin: 20px 0 0;
}

.about-icon {
    width: 55px;
    height: 52px;
    margin: 0 auto 20px;
    background-color: #3c83f6;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-icon svg {
    color: #fff;
    width: 28px;
    height: 28px;
}
.text-tracking-wi {
    text-transform: uppercase;
    color: #3b82f6;
}

/************************/
.header-hero {
    /*border: 1px solid #2a2a2a;*/
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px auto;
}
.header-headline {
    font-size: ;
    font-weight: bold;
    margin-bottom: 20px;
}
.header-subtext {
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff;
    line-height: normal;
}
.header-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.header-feature {
    display: flex;
    align-items: center;
    color: #fff;
}
.header-check {
    color: #3c83f6;
    margin-right: 8px;
    font-weight: bold;
}

.abtHdr {
    text-align: center;
}
.abtHdr svg {
    background: #3c83f6;
    width: 65px;
    height: 65px;
    padding: 15px;
    border-radius: 50px;
}


    /* FAQ */
.faq { padding: 60px 0; }
.fAq-r {
    max-width: 800px;
    margin: 0 auto;
}
.faq details {
    background: #161b22;
    margin-bottom: 15px;
    padding: 0 18px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #6c6c6c;
}
.faq summary {
	    padding: 18px 0;
    font-weight: bold;
    position: relative;
    list-style: none;
}
.faq details[open] {
	    padding: 18px;
}
.faq details[open] summary {
	    padding: 0 0;
}
.faq details p {
    color: #fff;
    margin: 20px 0 0;
}
.cstBtnhju {
    margin: 0 0 40px;
}
.faq summary:after {
    content: "+";
    display: inline-block;
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 0;
    line-height: normal;
}
details[open] summary:after {
    content: "-";
}

/* CTA */
.cta { background: #101820; text-align: center; padding: 60px 20px; }
.cta h2 { margin-bottom: 20px; }

    /* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #111;
}
.iner-rd{
    background: #1e293b;
    padding: 40px;
    border-radius: 10px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-logo {
    width: 25%;
}
.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2381f9;
}
.footer-logo p {
    color: #fff;
    line-height: 1.3;
}

.footer-links h3 {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}
.footer-copy {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    color: #fff;
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
}



/* Responsive */
@media (max-width: 992px) {


}

    /* Responsive */
@media (max-width: 768px) {.heroimg img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: 520px;
}
.hero-stats {
    gap: 40px;
}
.features p.subtitle {
    font-size: 16px;
}
.hero-content {
    padding: 40px 0;
}
.navbar {
    padding: 0;
}
.hero {
    padding: 40px 0;
}
.hero-buttons a {
    font-size: 14px;
    padding: 10px;
}
.hero-stats div b {
    font-size: 20px;
}
.footer-logo {
    width: 100%;
}	
.hero h1 span {
    font-size: 44px;
}
.hero p.h1k3 {
    font-size: 22px;
}
.hero p {
    font-size: 16px;
}
.nav-links, .nav-actions { display: none; }
.hamburger { display: block; }
.hero h1 { font-size: 28px; }
h1 {
font-size: 2rem;
}

.container {
padding: 20px 15px;
}
.about-steps {
	flex-direction: column;
	align-items: center;
}

.about-step {
	width: 80%;
	margin-bottom: 30px;
}
.header-features {
	flex-direction: column;
	gap: 20px;
}

.footer-content {
	flex-direction: column;
	align-items: center;
}

.footer-links {
    margin-top: 20px;
    width: 100%;
}

}


@media (max-width: 480px) {
.about-header h1, .section-title, .hero h1 span {
    font-size: 36px;
    line-height: normal;
}
.features h1 {
    font-size: 30px;
}
.section-text {
  font-size: 16px;
}

h1 {
font-size: 1.75rem;
}


p.subtitle {
font-size: 0.9rem;
}


.card h3 {
font-size: 1.1rem;
}


.card p {
font-size: 0.85rem;
}


}