body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

/* navbar */
/* Navbar Base */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.logo {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    font-size: 1rem;
}

nav a:hover {
    color: #007bff;
}

.auth-buttons .login {
    background: none;
    border: 1px solid #0099a3;
    border-radius: 5px;
    color: #007bff;
    padding: 10px 30px;
    margin-right: 15px;
    cursor: pointer;
    font-size: 0.9rem;
}

.auth-buttons .get-started {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-buttons .get-started:hover {
    background: #0099a3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding: 15px 20px;
    }

    nav a {
        margin: 0 10px;
        font-size: 0.95rem;
    }

    .auth-buttons .login,
    .auth-buttons .get-started {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
.menu-toggle {
    display: none;
}
@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav {
        display: none; /* Hide default nav on mobile */
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        border-radius: 8px;
    }

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

    nav a {
        margin: 10px 0;
        font-size: 1rem;
    }

    .auth-buttons {
        display: none; /* Hide buttons in header */
    }

    /* Hamburger Menu */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: #007bff;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    header {
        padding: 10px 15px;
    }
}

/* end navbar */


/* hero section */
.hero {
    padding: 50px 20px;
    background: linear-gradient(135deg, #007bff, #00c4cc);
    color: #fff;
}

.hero-wrapper {
    max-width: 1200px;
    margin: auto;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.left-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.left-hero p {
    font-size: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.left-hero .get-started {
    background: #fff;
    color: #007bff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.left-hero .get-started:hover {
    transform: scale(1.1);
}

.hero-features {
    margin-top: 20px;
}

.hero-features span {
    margin: 0 10px;
    animation: bounceIn 1s ease-out 1s backwards;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Tablet (768px and below) */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .left-hero h1 {
        font-size: 36px;
    }

    .left-hero p {
        font-size: 18px;
    }

    .left-hero .get-started {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 576px) {
    .hero {
        padding: 30px 15px;
    }

    .left-hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .left-hero p {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero-features span {
        display: block;
        margin: 0;
    }

    .left-hero .get-started {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
}
/* end hero section */


/* payment methods */
.payment-methods {
    padding: 20px;
    text-align: center;
}

.payment-methods h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.payment-methods p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

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

.method {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background: #fff;
}

.method img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.method:hover {
    transform: scale(1.1);
}

.more-method {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-method span {
    font-size: 30px;
    margin-right: 5px;
    font-weight: bolder;
}

/* Tablet (768px and below) */
@media (max-width: 992px) {
    .payment-methods h2 {
        font-size: 28px;
    }

    .payment-methods p {
        font-size: 16px;
    }

    .methods {
        gap: 15px;
    }

    .method {
        width: 50px;
        height: 50px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 576px) {
    .payment-methods {
        padding: 15px;
    }

    .payment-methods h2 {
        font-size: 24px;
    }

    .payment-methods p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .methods {
        justify-content: center;
        gap: 12px;
    }

    .method {
        width: 45px;
        height: 45px;
        padding: 5px;
    }

    .more-method {
        font-size: 0.9rem;
    }

    .more-method span {
        font-size: 24px;
    }
}
/* end payment methods */

/* testimonials */
.testimonials{
    padding: 50px 20px;
    text-align: center;
}
.testimonials h2{
    font-size: 36px;
    margin-bottom: 10px;
}
.testimonials p{
    color: #666;
    margin-bottom: 30px;
}
.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s ease-out;
}

.stars {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 25px;
}

.author {
    font-style: italic;
    color: #666;
}
/* end testimonials */


 /* <!-- choose us section --> */
.why-choose {
    padding: 50px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.why-choose p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
}

.choose-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.choose-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 200px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
}

.choose-card .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .why-choose h2 {
        font-size: 30px;
    }

    .why-choose p {
        font-size: 16px;
    }

    .choose-card {
        width: 45%; /* 2 cards per row */
        text-align: center;
    }

    .choose-card .icon {
        font-size: 28px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .why-choose {
        padding: 30px 15px;
    }

    .why-choose h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .why-choose p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .choose-card {
        width: 100%; /* Single card per row */
        text-align: center;
        padding: 15px;
    }

    .choose-card .icon {
        font-size: 32px;
    }
}

 /* end choose-us section */


 /* cta section */
.cta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #007bff, #00c4cc);
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    min-height: 200px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    min-height: 200px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cta-content {
    z-index: 1;
    max-width: 50%;
    margin-left: 20px;
}

.cta-content h2 {
    font-size: 2.5em;
    margin: 0;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1em;
    margin: 10px 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-btn,
.cta-docs {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover,
.cta-docs:hover {
    background-color: #333;
}

.cta-btn::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-left: 10px;
}

.cta-bg {
    padding: 0 40px;
    margin-right: 50px;
}

.cta-bg img {
    height: 300px;
    width: auto;
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cta-content {
        max-width: 100%;
        margin: 0;
    }

    .cta-content h2 {
        font-size: 2em;
    }

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

    .cta-buttons {
        justify-content: center;
    }

    .cta-bg img {
        height: 220px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .cta-section {
        padding: 30px 15px;
        border-radius: 10px;
    }

    .cta-content h2 {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.95em;
        margin: 15px 0;
    }

    .cta-buttons a {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    /* Hide the background image */
    .cta-bg {
        display: none;
    }
}

 /* end cta section */

 /* footer  */
footer {
    background: #333;
    color: #fff;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer-section a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s ease;
}

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

.footer-desc {
    text-align: left;
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.4;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

footer p {
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
    margin: 0;
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .footer-content {
        justify-content: flex-start;
        gap: 40px;
    }

    .footer-section h3 {
        font-size: 1.1em;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    footer {
        padding: 20px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section h3 {
        font-size: 1em;
        margin-bottom: 5px;
    }

    .footer-section a {
        font-size: 0.9em;
    }

    footer p {
        font-size: 0.8em;
        margin-top: 20px;
    }
}

 /* end footer */