
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: DM Sans, sans-serif;
    background-color: #0e0f1a;
    color: white;
}

/* Header Section */
header {
    background-color: #15151a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 52px;
}

.logo span {
    font-weight: 600;
    font-size: 18px;
}

.download-btn {
    background-color: #2de09d;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 12px;
}

/* Top Content Section */
.top-content {
    padding: 20px;
    text-align: center;
    background-color: #1c1f30;
    background-image: url('../images/bg1.png'); /* Optional background wave */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.top-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.top-content p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #fff;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.actions a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 12px;
}

.start-btn {
    background-color: #2de09d;
    color: white;
}

.demo-btn {
    background-color: transparent;
    color: white
}

.what-is-section {
    background: url(../images/bg2.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 30px;
    text-align: center;
    color: white;
}

.what-is-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.what-is-section p {
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.what-is-section .underline {
    margin: 20px auto;
    display: block;
    width: 177px;
    height: auto;
}

.benefits-section {
    background: url(../images/bg6.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 20px;
    text-align: center;
    color: white;
}

.benefits-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefits-center-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.benefits-button {
    display: inline-block;
    background-color: #2de09d;
    color: white;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 9999px;
    font-size: 14px;
    text-decoration: none;
}

.why-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: url(../images/bg3.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 60px 30px;
    color: white;
    text-align: center;
}

.why-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* key change: horizontal layout */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #2f3250;
    border-radius: 20px;
    padding: 0;
    flex-wrap: nowrap; /* prevent wrapping */
}

.why-card-left {
    flex: 0.6;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #ccc;
    padding: 10px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #202237;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 24px;
    height: 24px;
}

.why-card-left p {
    font-size: 12px;
    color: white;
}

.arrow-icon {
    width: 35px;
    height: auto;
    transition: transform 0.2s ease;
}

.arrow-icon:hover {
    transform: translateX(5px);
}

.why-card-right {
    flex: 1;
}

.why-card-right img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.security-section {
    background: url(../images/bg4.png);
    background-size: cover;
    background-color: #1c1f30;
    padding: 20px;
    padding-top: 0;
    text-align: center;
    color: white;
}

.security-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.security-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap; /* Ensures cards stay in a row unless viewport is too narrow */
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}


.security-card {
    background-color: #2F3250;
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.security-card img {
    width: 100%;
    height: auto;
    display: block;
}

.security-text {
    color: #79EFBC;
    font-size: 12px;
    font-weight: 400;
    padding: 20px;
    text-align: center;
    line-height: 1.5;
}

.faq-section {
    background: url(../images/bg5.png) bottom right no-repeat;
    background-color: #1c1f30;
    color: white;
    padding: 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-underline {
    margin-bottom: 10px;
    width: 197px;
    height: auto;
}

.faq-box {
    background-color: #232643;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    border-bottom: 2px solid #2de09d;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    line-height: 12px;
}

.testimonials-section {
    background-color: #1c1f30;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    width: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.testimonial-card {
    background-color: #2b3057;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    box-sizing: border-box;
}


.testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card strong {
    color: #2de09d;
    display: block;
    margin-bottom: 6px;
}

.testimonial-card p {
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

.signup-section {
    background-color: #1c1f30;
    color: white;
    text-align: center;
    padding: 20px;
}

.signup-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.signup-box {
    background-color: #232643;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.signup-subtitle {
    color: #79EFBC;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.5;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-wrapper input {
    padding: 12px 16px;
    border: 2px solid #2de09d;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #aaa;
}

.signup-form button {
    background-color: #75fdd0;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background-color: #5ae1bb;
}

.footer-section {
    background-color: #1c1f30;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 15px;
    font-weight: 700;
}

.footer-note {
    font-size: 10px;
    font-weight: 700;
    color: #2de09d;
    margin-top: 10px;
}

.footer-note .highlight {
    font-weight: 600;
}
