@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');




/* style.css */
body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}
/* ----------------------------navbar--------------------------------------- */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}



header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    float: left;
    margin-right: 30px;
	margin-top:10px;
	
}

.logo img {
    height: 50px;
	
}

nav ul {
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    color: orange;
    text-decoration: none;
    font-weight: bold;
	
}
/* ------------------------------hero container2--------------------------------- */
.hero {
	display:felx;
    background-color: #f5722d;
    padding: 100px 0;
    column-count:2;
    color: #fff;
	margin-top:100px;
	flex-direction:row;
	flex-wrap:wrap;
}


.class
{
	width:500px;
	justify-content:rigth;
	
	
}


.container2
{
	 justify-content: left;
	 margin:40px
	
	
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.buttons {
    margin-top: 30px;
}

.btn {
    background-color: #fff;
    color: #f5722d;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #f5722d;
    color: #fff;
	 border: dashed;
    border-radius: 5px;
	
}
/* ---------------------------------------features----------------------------- */
.features {
    padding: 100px 0;
    background-color: #fff;
	font-family: "Rubik", sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 3rem;
    color: #f5722d;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
/* ----------------------------------app screenshot------------------------------------ */
.app-screenshot {
    padding: 100px 0;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot {
    max-width: 800px;
    margin-right: 50px;
	border:none;
	border-radius:20px;
}

.screenshot img {
    width: 100%;
    height: auto;
}

.app-description {
    text-align: left;
	font-family: "Rubik", sans-serif;
}

.app-description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
	font-family: "Rubik", sans-serif;
}

.app-description p {
    margin-bottom: 30px;
	font-family: "Rubik", sans-serif;
}

.app-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
	font-family: "Rubik", sans-serif;
}

.app-description li {
    margin-bottom: 10px;
	font-family: "Rubik", sans-serif;
}

.app-store {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-store img {
    height: 40px;
    margin: 0 10px;
}
/* -------------------------------new wallet system------------------------- */
.new-wallet-system {
    padding: 100px 0;
    background-color: #fff;
	font-family: "Rubik", sans-serif;
	
}

.wallet-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.wallet-system-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.wallet-system-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wallet-system-card img {
    width: 100%;
    height: auto;
}
/* -------------------------------satisfied clients------------------------------ */
.satisfied-clients {
    padding: 100px 0;
    background-color: #212529;
    color: #fff;
}

.client-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
	font-family: "Rubik", sans-serif;
}

.testimonial {
    padding: 30px;
    border-radius: 10px;
    background-color: #343a40;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
	font-family: "Rubik", sans-serif;
}

.testimonial:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonial p {
    margin-bottom: 20px;
}

.client {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.client h3 {
    margin: 0;
    font-size: 1.2rem;
}

.client p {
    margin: 0;
    font-size: 0.9rem;
}
/* ----------------------------------trail plan----------------------------------- */
.trial-plan {
    padding: 100px 0;
    background-color: #fff;
}

.trial-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.trial-plan-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.trial-plan-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.trial-plan-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trial-plan-card h2 {
    margin-bottom: 10px;
    font-size: 3rem;
    color: #f5722d;
}

.trial-plan-card p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.trial-plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.trial-plan-card li {
    margin-bottom: 10px;
}

.trial-plan-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.trial-plan-toggle label {
    margin: 0 10px;
    font-weight: bold;
}

.trial-plan-toggle input[type="checkbox"] {
    display: none;
}

.trial-plan-toggle input[type="checkbox"] + label {
    font-weight: bold;
}

.trial-plan-toggle input[type="checkbox"]:checked + label {
    font-weight: normal;
}
/* --------------------------faq----------------------------- */
.faq {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.faq li {
    margin-bottom: 15px;
    font-weight: bold;
	font-family: "Rubik", sans-serif;
	
}

.faq a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq a i {
    font-size: 2.9rem;
    transition: transform 0.3s ease;
}

.faq a:hover i {
    transform: translateX(5px);
}
/* ------------------------parterns-------------------------- */
.partners {
    padding: 100px 0;
    background-color: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.partner {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.partner:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner img {
    width: 100%;
    height: auto;
	text-align:center;
}
/* ----------------------------cta------------------------------- */
.cta {
    padding: 100px 0;
    background-color: #f5722d;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
	 font-family: "Rubik", sans-serif;
}

.cta p {
    margin-top: 20px;
    font-size: 0.9rem;
	 font-family: "Rubik", sans-serif;
}
/*-------------------------------- footer -----------------------------------*/
footer {
    background-color: #212529;
    padding: 50px 0;
    color: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 1200px; /* Adjust maximum width as needed */
    margin: 0 auto;
  }
  
  .footer-grid {
    display: flex; /* Change to flex for horizontal layout */
    justify-content: space-between; /* Space elements evenly */
    align-items: center; /* Center elements vertically */
    gap: 30px;
  }
  
  .footer-column {
    text-align: center; /* Center content */
  }
  
  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: "Rubik", sans-serif;
  }
  
  .footer-column input[type="text"],
  .footer-column input[type="email"],
  .footer-column input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #343a40;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer-column input[type="text"]:focus,
  .footer-column input[type="email"]:focus,
  .footer-column input[type="tel"]:focus {
    outline: none;
    box-shadow: 0 0 5px #f5722d;
  }
  
  .btn2 {
    background-color: #f5722d;
    color: #fff;
    padding: 20px 35px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 45px; /* Adjust margin for spacing */
    margin-left: 30px;
  }
  .btn2:hover {
    background-color: #f5722d;
    color: #fff;
	 border: dashed;
    border-radius: 5px;
	
}

@media only screen and (min-width: 360px) and (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .wallet-system-grid {
        grid-template-columns: 1fr;
    }

    .client-testimonials {
        grid-template-columns: 1fr;
    }

    .trial-plan-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.container3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}