/* Basic Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8faff; /* Light background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below images */
}

/* Reusable Components */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
}

.btn-secondary {
    background-color: #f0f4f8;
    color: #4a6ee5;
    border: 1px solid #cdd5e0;
    padding: 10px 25px;
    font-size: 0.9em;
}

.btn-secondary:hover {
    background-color: #e0e6eb;
    transform: translateY(-2px);
}

.btn-download {
    background: #4285F4; /* Google Play blue */
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1em;
}

.btn-download i {
    font-size: 1.2em;
}

.btn-download-alt {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    font-size: 1em;
}

.icon {
    font-size: 2.5em;
    color: #6a11cb;
    margin-bottom: 15px;
    background: #f0e6ff;
    padding: 15px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.1);
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5em;
    color: #2575fc;
}

.logo img {
    margin-right: 10px;
    border-radius: 8px;
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #555;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none; /* Hidden on desktop */
    font-size: 1.8em;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #c5cae9 100%); /* Soft gradient background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 50px;
}

.hero-section::before { /* Subtle background pattern */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239FBCE8' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    margin-right: 40px;
}

.hero-content h1 {
    font-size: 3.4em;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.hero-content .btn {
    margin-top: 20px;
}

.hero-content .small-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
    transform: rotate(5deg) translateY(-10px); /* Artistic tilt */
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) translateY(0);
}


/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-section h2 br {
    display: none; /* Hide line break on larger screens */
}

.features-section p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    background: #fff;
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item span {
    font-weight: 700;
    color: #6a11cb;
    font-size: 1.2em;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 0; /* Override default p margin */
}

.feature-card.large-card {
    grid-column: span 2; /* Spans two columns on larger screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0e6ff 0%, #e0f7fa 100%);
    position: relative;
    overflow: hidden;
}

.feature-card.large-card .btn {
    margin-top: 20px;
}

/* Highlight Section (Withdrawal options) */
.highlight-section {
    background: linear-gradient(135deg, #a77cff 0%, #83a0f7 100%);
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 80px auto;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.highlight-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.highlight-content {
    flex: 1;
}

.highlight-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.highlight-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.highlight-content ul {
    list-style: none;
}

.highlight-content ul li {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.highlight-content ul li i {
    font-size: 1.5em;
    color: #ffd700; /* Gold accent */
}

.highlight-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-illustration img {
    border-radius: 15px;
    width: 80%;
    /* box-shadow: 0 10px 30px rgba(255, 244, 244, 0.2); */
}


/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex; /* Adjust for actual slider implementation */
    justify-content: center;
    gap: 30px;
    overflow-x: auto; /* For basic scroll on small screens */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 0 0 450px; /* Adjust width of cards */
    scroll-snap-align: start;
    text-align: left;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid #6a11cb;
}

.user-info h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700; /* Gold stars */
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 1em;
}

/* How It Works Section */
.how-it-works-section {
    background: #e9efff; /* Lighter blue/purple background */
    padding: 80px 0;
    text-align: center;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    margin-top: 80px;
}

.how-it-works-section h2 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.how-it-works-section .sub-headline {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.download-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 250px; /* Fixed width for steps */
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-icon {
    font-size: 3em;
    color: #2575fc;
    margin-bottom: 15px;
    background: #e0f2fe;
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.2);
}

.step-card h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9em;
    color: #777;
}

.step-arrow {
    font-size: 2em;
    color: #6a11cb;
    animation: bounceArrow 1.5s infinite ease-in-out;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .logo span {
    color: #ecf0f1;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.4em;
    color: #bdc3c7;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
    font-size: 0.9em;
    color: #bdc3c7;
}


/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-image img {
        transform: rotate(0deg) translateY(0);
        width: 80%; /* Adjust size for tablet */
    }

    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-card.large-card {
        grid-column: span 1; /* Stack on smaller screens */
    }

    .highlight-section {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .highlight-section .container {
        flex-direction: column;
        text-align: center;
    }

    .highlight-content {
        margin-bottom: 40px;
    }

    .highlight-content h2 {
        font-size: 2.2em;
    }

    .highlight-content ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .highlight-illustration img {
        max-width: 80%;
        width: 80%;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        flex: 0 0 90%; /* Make testimonial cards take up more width */
    }

    .how-it-works-section {
        padding: 60px 0;
        margin-top: 60px;
    }

    .how-it-works-section h2 {
        font-size: 2.2em;
    }

    .download-cta {
        flex-direction: column;
        align-items: center;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    @keyframes bounceArrow {
        0%, 100% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(10px); }
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header .nav-menu {
        /* Hide nav menu by default on mobile */
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .nav-menu.active {
        display: flex; /* Show when active */
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 1.1em;
        padding: 10px 0;
        display: block;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .features-section h2 {
        font-size: 2em;
    }
    
    .features-section h2 br {
        display: block; /* Show line break on smaller screens */
    }

    .features-section p {
        font-size: 1em;
    }

    .stat-item {
        font-size: 1em;
        padding: 10px 20px;
    }

    .highlight-content h2 {
        font-size: 1.8em;
    }

    .highlight-content p,
    .highlight-content ul li {
        font-size: 1em;
    }

    .testimonial-card {
        flex: 0 0 100%; /* Full width on smaller mobile */
    }

    .how-it-works-section h2 {
        font-size: 1.8em;
    }

    .how-it-works-section .sub-headline {
        font-size: 1em;
    }

    .download-cta .btn {
        width: 90%;
        max-width: 300px;
    }

    .step-card {
        width: 90%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .hero-image img {
        width: 95%;
    }

    .features-section h2 {
        font-size: 1.8em;
    }

    .stats-bar {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .feature-card.large-card {
        padding: 25px;
    }

    .highlight-section {
        padding: 40px 15px;
        margin: 40px auto;
    }

    .highlight-content h2 {
        font-size: 1.6em;
    }

    .highlight-content ul li {
        font-size: 0.9em;
    }

    .testimonial-card {
        padding: 20px;
    }

    .user-info img {
        width: 50px;
        height: 50px;
    }

    .user-info h4 {
        font-size: 1.1em;
    }

    .testimonial-card p {
        font-size: 0.9em;
    }

    .how-it-works-section h2 {
        font-size: 1.6em;
    }

    .how-it-works-section .sub-headline {
        font-size: 0.9em;
    }

    .step-card {
        padding: 25px;
    }

    .footer-links {
        font-size: 0.9em;
    }
    /* --- Header Specific Styles (Update/Add these to style1.css) --- */

/* Ensure the header container properly aligns items */
.header .container {
    display: flex;
    justify-content: space-between; /* Pushes logo to left, button to right */
    align-items: center; /* Vertically aligns logo and button */
}

/* Styling for the new download button in the header */
.header-download-btn {
    padding: 10px 22px; /* Adjust padding for header context */
    font-size: 0.95em; /* Slightly smaller font size for header */
    display: flex; /* For icon-text alignment */
    align-items: center;
    gap: 8px; /* Space between icon and text */
    white-space: nowrap; /* Prevent text wrapping on smaller buttons */
    /* Inherits other styles from .btn and .btn-primary */
}

.header-download-btn i {
    font-size: 1.1em; /* Adjust icon size if needed */
}

/* Since there's no nav-menu, hide the hamburger if it was present */
/* If you removed the hamburger from HTML, this rule isn't strictly needed but good for cleanup */
.hamburger {
    display: none !important;
}

/* --- Media Queries for Header Responsiveness --- */

@media (max-width: 768px) {
    .header-download-btn {
        padding: 8px 18px; /* Smaller padding on tablets */
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3em; /* Make logo slightly smaller on small phones */
    }

    .logo img {
        width: 35px; /* Adjust logo icon size */
        height: 35px;
    }

    .header-download-btn {
        padding: 7px 14px; /* Even smaller padding on mobile */
        font-size: 0.8em; /* Smaller font on mobile */
        gap: 5px;
    }
}

}

