﻿/*This css file is for main landing page.*/

/* Landing Page Scoped Styles - All prefixed with .landing-page- */
.landing-page-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

    .landing-page-wrapper * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* Landing Page Animated Background */
.landing-page-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.landing-page-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.landing-page-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    animation: landing-page-float 20s infinite linear;
}

    .landing-page-shape:nth-child(1) {
        width: 100px;
        height: 100px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .landing-page-shape:nth-child(2) {
        width: 60px;
        height: 60px;
        top: 60%;
        left: 80%;
        animation-delay: -5s;
    }

    .landing-page-shape:nth-child(3) {
        width: 80px;
        height: 80px;
        top: 80%;
        left: 20%;
        animation-delay: -10s;
    }

    .landing-page-shape:nth-child(4) {
        width: 120px;
        height: 120px;
        top: 10%;
        left: 70%;
        animation-delay: -15s;
    }

@keyframes landing-page-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(30px) rotate(240deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Landing Page Navigation */
.landing-page-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.landing-page-nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-page-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .landing-page-nav-links a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

        .landing-page-nav-links a:hover {
            color: #00f5ff;
        }

        .landing-page-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00f5ff, #ff006e);
            transition: width 0.3s ease;
        }

        .landing-page-nav-links a:hover::after {
            width: 100%;
        }

.landing-page-cta-nav {
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

    .landing-page-cta-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
    }

/* Landing Page Hero Section */
.landing-page-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.landing-page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.landing-page-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page-hero-content p {
    font-size: 1.3rem;
    color: #b8b8d1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.landing-page-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-page-btn-primary {
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

    .landing-page-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
    }

.landing-page-btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .landing-page-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #00f5ff;
        color: #00f5ff;
    }

.landing-page-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-page-invoice-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: landing-page-float-invoice 6s ease-in-out infinite;
}

    .landing-page-invoice-preview:hover {
        animation: landing-page-float-invoice-hover 3s ease-in-out infinite;
    }

@keyframes landing-page-float-invoice-hover {
    0%, 100% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-125deg) rotateX(5deg) translateY(-15px);
    }
}

@keyframes landing-page-float-invoice {
    0%, 100% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-15px);
    }
}

.landing-page-invoice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.landing-page-invoice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f5ff;
}

.landing-page-invoice-number {
    color: #b8b8d1;
}

.landing-page-invoice-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    margin: 1rem 0;
}

.landing-page-invoice-item {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    color: #b8b8d1;
}

/* Landing Page Features Section */
.landing-page-features {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.landing-page-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-page-section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 4rem;
}

.landing-page-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.landing-page-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .landing-page-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .landing-page-feature-card:hover::before {
        left: 100%;
    }

    .landing-page-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
        border-color: rgba(0, 245, 255, 0.3);
    }

.landing-page-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.landing-page-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.landing-page-feature-card p {
    color: #b8b8d1;
    line-height: 1.6;
}

/* Landing Page Themes Section */
.landing-page-themes {
    padding: 6rem 2rem;
}

.landing-page-themes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-page-themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page-theme-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .landing-page-theme-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.landing-page-theme-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a3e, #2d1b69);
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.landing-page-theme-modern {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.landing-page-theme-minimal {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.landing-page-theme-classic {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.landing-page-theme-dark {
    background: linear-gradient(135deg, #4c4c4c, #595959);
}

.landing-page-theme-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.landing-page-theme-card p {
    color: #b8b8d1;
    font-size: 0.9rem;
}

/* Landing Page Why Choose Us Section */
.landing-page-why-choose {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.landing-page-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

    .landing-page-why-choose-container .section-title,
    .landing-page-faq-container .section-title {
        text-align: center;
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff, #00f5ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .landing-page-why-choose-container .section-subtitle,
    .landing-page-faq-container .section-subtitle {
        text-align: center;
        font-size: 1.3rem;
        color: #b8b8d1;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }


.landing-page-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.landing-page-stat-card {
    text-align: center;
    padding: 2rem;
}

.landing-page-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.landing-page-stat-label {
    color: #b8b8d1;
    font-weight: 600;
    margin-top: 0.5rem;
}

.landing-page-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.landing-page-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.landing-page-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-page-benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.landing-page-benefit-content p {
    color: #b8b8d1;
    line-height: 1.5;
}

/* Landing Page CTA Section */
.landing-page-cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.landing-page-cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .landing-page-cta-container h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff, #00f5ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .landing-page-cta-container p {
        font-size: 1.2rem;
        color: #b8b8d1;
        margin-bottom: 2rem;
    }

/* Landing Page Footer */
.landing-page-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.landing-page-footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00f5ff;
}

.landing-page-footer-section p,
.landing-page-footer-section a {
    color: #b8b8d1;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

    .landing-page-footer-section a:hover {
        color: #00f5ff;
    }

.landing-page-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8b8d1;
}

/*Arrow up design*/

.arrow-up-container {
    display: none;
    position: fixed;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    bottom: 20px;
    right: 10px;
    padding: .5rem;
    border-radius: 100%;
    width: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
}
/*Hamburger design*/
.hamburger {
    position: absolute;
    display: none;
    height: 40px;
    width: 40px;
    right: 33px;
    top: 25px;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.bar {
    border-radius: 10px;
    height: 4px;
    width: 100%;
    width: 100%;
    background: linear-gradient(135deg, #ff006e, #00f5ff);
}

.hamburger span:nth-child(3) {
    width: 70%;
}

.hide-nav {
    display: inherit;
    animation: fade-in ease-in-out 3s;
}


@keyframes fade-in {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}



/* About Us Section Styles - Matching Landing Page Design */
.about-us-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

    .about-us-wrapper * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* Animated Background */
.about-us-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.about-us-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-us-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    animation: about-us-float 20s infinite linear;
}

    .about-us-shape:nth-child(1) {
        width: 100px;
        height: 100px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .about-us-shape:nth-child(2) {
        width: 60px;
        height: 60px;
        top: 60%;
        left: 80%;
        animation-delay: -5s;
    }

    .about-us-shape:nth-child(3) {
        width: 80px;
        height: 80px;
        top: 80%;
        left: 20%;
        animation-delay: -10s;
    }

@keyframes about-us-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(30px) rotate(240deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* About Us Section */
.about-us-section {
    padding: 6rem 2rem;
    position: relative;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-us-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us-subtitle {
    font-size: 1.3rem;
    color: #b8b8d1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Grid */
.about-us-content {
    margin-bottom: 5rem;
}

.about-us-text-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

    .about-us-text-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .about-us-text-content:hover::before {
        left: 100%;
    }

    .about-us-text-content h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #00f5ff;
    }

    .about-us-text-content p {
        color: #b8b8d1;
        line-height: 1.7;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

/* Visual Content */
.about-us-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-us-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

    .about-us-stats-card:hover {
        transform: perspective(1000px) rotateY(0deg) translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 245, 255, 0.2);
    }

.about-us-stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.about-us-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.about-us-stat-label {
    color: #b8b8d1;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Mission & Vision Grid */
.about-us-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.about-us-mission-card,
.about-us-vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .about-us-mission-card:hover,
    .about-us-vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 245, 255, 0.2);
        border-color: rgba(0, 245, 255, 0.3);
    }

.about-us-mission-icon,
.about-us-vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-us-mission-card h3,
.about-us-vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-us-mission-card p,
.about-us-vision-card p {
    color: #b8b8d1;
    line-height: 1.7;
    font-size: 1.1rem;
}


/* How to Use Section Styles - Matching Landing Page Design */
.how-to-use-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

    .how-to-use-wrapper * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* Animated Background */
.how-to-use-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
}

.how-to-use-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.how-to-use-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f5ff, #ff006e);
    animation: how-to-use-float 25s infinite linear;
}

    .how-to-use-shape:nth-child(1) {
        width: 120px;
        height: 120px;
        top: 15%;
        left: 5%;
        animation-delay: 0s;
    }

    .how-to-use-shape:nth-child(2) {
        width: 80px;
        height: 80px;
        top: 70%;
        left: 85%;
        animation-delay: -8s;
    }

    .how-to-use-shape:nth-child(3) {
        width: 100px;
        height: 100px;
        top: 85%;
        left: 15%;
        animation-delay: -16s;
    }

@keyframes how-to-use-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-40px) rotate(120deg);
    }

    66% {
        transform: translateY(40px) rotate(240deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* How to Use Section */
.how-to-use-section {
    padding: 6rem 2rem;
    position: relative;
}

.how-to-use-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.how-to-use-header {
    text-align: center;
    margin-bottom: 5rem;
}

.how-to-use-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-to-use-subtitle {
    font-size: 1.3rem;
    color: #b8b8d1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Container */
.how-to-use-steps-container {
    position: relative;
    margin-bottom: 4rem;
}

/* Progress Line */
.how-to-use-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00f5ff, #ff006e);
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.3;
}

.how-to-use-progress-active {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: linear-gradient(180deg, #00f5ff, #ff006e);
    transform: translateX(-50%);
    border-radius: 2px;
    height: 0%;
    animation: how-to-use-progress-fill 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

@keyframes how-to-use-progress-fill {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/* Individual Steps */
.how-to-use-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: how-to-use-fade-in-up 0.8s ease-out forwards;
}

    .how-to-use-step:nth-child(1) {
        animation-delay: 0.2s;
    }

    .how-to-use-step:nth-child(2) {
        animation-delay: 0.4s;
    }

    .how-to-use-step:nth-child(3) {
        animation-delay: 0.6s;
    }

    .how-to-use-step:nth-child(4) {
        animation-delay: 0.8s;
    }

    .how-to-use-step:nth-child(5) {
        animation-delay: 1.0s;
    }

    .how-to-use-step:nth-child(6) {
        animation-delay: 1.2s;
    }

    .how-to-use-step:nth-child(7) {
        animation-delay: 1.4s;
    }

    .how-to-use-step:nth-child(8) {
        animation-delay: 1.6s;
    }

@keyframes how-to-use-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternating Layout */
.how-to-use-step:nth-child(odd) {
    flex-direction: row;
}

.how-to-use-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* Step Number Circle */
.how-to-use-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
    transition: all 0.3s ease;
}

.how-to-use-step:hover .how-to-use-step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 245, 255, 0.6);
}

/* Step Content */
.how-to-use-step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 2rem;
}

    .how-to-use-step-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

.how-to-use-step:hover .how-to-use-step-content::before {
    left: 100%;
}

.how-to-use-step:hover .how-to-use-step-content {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.3);
}

.how-to-use-step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00f5ff;
}

.how-to-use-step-description {
    color: #b8b8d1;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Step Icon */
.how-to-use-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.how-to-use-step:hover .how-to-use-step-icon {
    background: rgba(0, 245, 255, 0.2);
    transform: scale(1.1);
}

/* Visual Separator */
.how-to-use-step-visual {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.how-to-use-step-mockup {
    width: 250px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.how-to-use-step:hover .how-to-use-step-mockup {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}


/* New FAQ Section Styles */
.landing-page-faq {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.landing-page-faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.landing-page-faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

.landing-page-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .landing-page-faq-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00f5ff, #ff006e);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .landing-page-faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 245, 255, 0.1);
        border-color: rgba(0, 245, 255, 0.4);
    }

        .landing-page-faq-item:hover::before {
            transform: scaleX(1);
        }

.landing-page-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .landing-page-faq-question h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        background: linear-gradient(135deg, #ffffff, #00f5ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        flex: 1;
    }

.landing-page-faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.landing-page-faq-item.active .landing-page-faq-icon {
    transform: rotate(45deg);
}

.landing-page-faq-answer {
    color: #b8b8d1;
    line-height: 1.7;
    font-size: 1.1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.landing-page-faq-item.active .landing-page-faq-answer {
    max-height: 200px;
    opacity: 1;
}




/*MEDIA QUERIES*/

/* Landing Page Mobile Responsiveness */
@media (max-width: 768px) {
    .hide-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .landing-page-wrapper {
        margin-top: 6rem !important;
    }

    .landing-page-nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-page-nav-links {
        flex-direction: column;
        align-items: center;
    }

    .landing-page-nav-container .landing-page-logo {
        align-self: flex-start;
    }

    .landing-page-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .landing-page-hero-content p {
        margin-bottom: 3.5rem;
    }

    .landing-page-hero-content h1 {
        font-size: 2.5rem;
    }

    .landing-page-hero-buttons {
        justify-content: center;
    }

    .landing-page-invoice-preview {
        transform: none;
    }

    .landing-page-section-title {
        font-size: 2rem;
    }

    .landing-page-features-grid,
    .landing-page-themes-grid {
        grid-template-columns: 1fr;
    }

    .landing-page-benefits-grid {
        grid-template-columns: 1fr;
    }

    .landing-page-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-mission-vision {
        grid-template-columns: 1fr !important;
    }

    .how-to-use-step {
        display: grid;
        place-items: center;
        gap: 1.5rem;
    }


    .landing-page-why-choose-container .section-title,
    .landing-page-faq-container .section-title {
        font-size: 2.5rem;
    }

    .landing-page-benefits-grid {
        grid-template-columns: 1fr;
    }

    .landing-page-faq-question h3 {
        font-size: 1.2rem;
    }

    .landing-page-faq-item {
        padding: 1.5rem;
    }
}
