html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* adjust based on your header height */
}



:root {
    --purple: #6600d3;
    --navy: #000080;
    --red: #ef4a44;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

.bg {
    background: #edf4fe;
}

.bg1 {
    background: #fff;
}

.bg2 {
    background: #eaeff3;
}

/* Common Container Settings */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--purple), var(--red));
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}

/* Align content in the middle */
.align-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left content */
.hero-content {
    flex: 1 1 50%;
    z-index: 2;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f8f8f8;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-outline {
    text-decoration: none;
    padding: 6px 28px;
    border-radius: 30px;
    height: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: var(--purple);
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--purple);
}

/* Right image */
.hero-image {
    flex: 1 1 50%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




/* Features Section */
.features-section {
    background: #f8f9ff;
    padding: 50px 0;
    text-align: center;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.section-heading1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtext {
    font-size: 1.1rem;
    color: #000;
    max-width: 650px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.section-subtext1 {
    font-size: 1.1rem;
    color: #fff;
    max-width: 650px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(102, 0, 211, 0.25);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* .customers-section {
    background: #f0f8ff;
} */

/* Lead Sources Section */
.lead-sources-section {
    background: #f7f9ff;
    padding: 50px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(102, 0, 211, 0.12);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.5;
}



/* Customers Section */
.customers-section {
    /* background: #cfd3f5ff; */
    padding: 50px 0;
}

.customers-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.customers-image img:hover {
    transform: scale(1.03);
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 8px 25px rgba(102, 0, 211, 0.15); */
}

.customers-content .section-heading {
    color: var(--purple);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.customers-content .section-subtext {
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

.feature-list i {
    color: var(--purple);
    background: rgba(102, 0, 211, 0.1);
    border-radius: 50%;
    padding: 8px;
    font-size: 1rem;
    margin-right: 12px;
}

.btn-primary {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 50px;
    height: 40px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--red));
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(102, 0, 211, 0.3);
}

/* Full-Width Leads Section */
.leads-section.full-width {
    padding: 50px 0;
}

feature-block {
    /* background: rgba(255, 255, 255, 0.75); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    /* box-shadow: 0 8px 25px rgba(102, 0, 211, 0.15); */
}

.feature-block h3 {

    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;

}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
    gap: 10px;
}

.feature-list li i {
    color: #555;
    background: rgba(102, 0, 211, 0.1);
    border-radius: 50%;
    padding: 6px;
    font-size: 14px;
    height: 25px;
    width: 25px;
    margin-right: 1px;
    transition: all 0.3s ease;

}


/* Invoices Section */
.invoices-section {
    /* background: #eaeff3; */
    padding: 80px 0;
}

.invoice-slider .slider-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.invoice-slider .slider-img:hover {
    transform: scale(1.03);
}



.feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
}


.feature-list li i:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 6px 20px rgba(102, 0, 211, 0.3);
}

/* Contracts & Tickets Section Styling */
.contracts-tickets-section {
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    color: #fff;
    padding: 80px 0;
}

.contracts-tickets-section .feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contracts-tickets-section .feature-icon {
    background: #6600d3;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.contracts-tickets-section .ticket-card .feature-icon {
    color: #fff;
    /* Differentiates tickets icon from contracts */
}

.contracts-tickets-section .feature-list li {
    margin-bottom: 10px;
}

.contracts-tickets-section .section-illustration {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.staff-section {

    /* Dark blue for contrast */
    color: #fff;
    padding: 50px 0;
}

.staff-section .feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.staff-section .feature-card:hover {
    transform: translateY(-5px);
}

.staff-section .feature-icon {
    background: #ef4a44;
    /* Red accent */
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.staff-section .feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.staff-section .section-illustration {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reports-section {
    background: #f9f9f9;
    /* Light background for differentiation */
    color: #000080;
    /* Dark blue text for contrast */
    padding: 80px 0;
}

.reports-section .feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reports-section .feature-icon {
    background: #6600d3;
    /* Brand color for icon circles */
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.reports-section .feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reports-section .section-illustration {
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

/* Events & Reminders Section */
.events-section {
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    color: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.events-section .section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.events-section .section-subtext {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    opacity: 0.9;
}

.events-section .glass-card {
    background: #fff;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.events-section .glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.events-section .feature-icon {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
}

.events-section .feature-icon i {
    font-size: 2rem;
    transition: color 0.3s ease;
}


.events-section .feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.events-section .feature-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}



@media (max-width: 991px) {
    .events-section .glass-card {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .events-section .section-heading {
        font-size: 2.2rem;
    }

    .events-section .section-subtext {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    color: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-section .section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
}

.testimonials-section .section-subtext {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: 0.9;
}

.testimonials-section .glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.testimonials-section .glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.testimonials-section .testimonial-quote {
    font-size: 4rem;
    color: #ddd;
    font-weight: 700;
}

.testimonials-section .client-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #fff;
}

.testimonials-section .review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 80px;
}

.testimonials-section .client-name {
    font-weight: 600;
}

.testimonials-section .rating i {
    color: #ffdd57;
    margin-right: 3px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-section .glass-card {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .testimonials-section .section-heading {
        font-size: 2.2rem;
    }

    .testimonials-section .section-subtext {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Pricing Section */
.pricing-section {
    background: #000080;
    /* dark blue base for contrast */
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.pricing-section .section-heading {
    font-size: 2.8rem;
    font-weight: 700;
}

.pricing-section .section-subtext {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: 0.9;
}

.pricing-card {
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #6600d3, #ef4a44);
    color: #fff;
    transform: scale(1.05);
    z-index: 1;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
}

.plan-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.plan-features li {
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-features li i {
    color: #ffdd57;
    margin-right: 10px;
}

.btn-primary {
    display: inline-block;
    background: #ef4a44;
    color: #fff;
    padding: 6px 25px;
    height: 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6600d3;
    color: #fff;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #6600d3, #ef4a44);
}

.contact-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-section .section-subtext {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

.contact-illustration {
    max-width: 80%;
    height: auto;
}

.contact-form {
    background: rgba(102, 0, 211, 0.2);
    /* light purple gradient effect */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6600d3;
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 6px 15px 6px 45px;
    border-radius: 15px;
    border: 1px solid rgba(102, 0, 211, 0.3);
    color: #000080;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ef4a44;
    box-shadow: 0 0 10px rgba(239, 74, 68, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

h1 span {
    color: #ef4a44;
}

.btn-primary {
    background: #ef4a44;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 6px 25px;
    transition: all 0.3s ease;
    height: 40px;
}

.btn-primary:hover {
    background: #6600d3;
    color: #fff;
}

.crm-logo img {
    height: 30px;
    margin-bottom: 10px;
    border-radius: 4px;
}


.crm-structure {
    background: linear-gradient(270deg, #0b0b2f00 0%, #151533e0 0%);
    font-family: "Poppins", sans-serif;
    color: #fff;
}

/* .text-gradient {
    background: linear-gradient(45deg, #6600d3, #ef4a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.workflow-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    padding: 28px 25px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.workflow-card1 {
    position: relative;

}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: #ef4a44;
    box-shadow: 0 8px 20px rgba(239, 74, 68, 0.4);
}

.workflow-card h5 {
    color: #ef4a44;
    font-weight: 600;
    margin-bottom: 10px;
}

.workflow-card p {
    color: #dcdcdc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.step-number1 {
    position: absolute;
    top: 10px;
    left: 18px;
    font-size: 8rem;
    font-weight: 800;
    color: #ddd;
    pointer-events: none;
}

.arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: #6600d3;
    font-size: 1.8rem;
    z-index: 10;
    animation: glowArrow 1.6s infinite alternate;
}

.arrow.le {
    position: absolute;
    top: 50%;
    left: -413px;
    transform: translateY(-50%);
    color: #6600d3;
    font-size: 1.8rem;
    z-index: 10;
    animation: glowArrow 1.6s infinite alternate;
}

@keyframes glowArrow {
    0% {
        color: #6600d3;
        text-shadow: 0 0 5px #6600d3;
    }

    100% {
        color: #ef4a44;
        text-shadow: 0 0 15px #ef4a44;
    }
}

@media (max-width: 991px) {
    .arrow {
        display: none;
    }

    .step-number {
        font-size: 2.2rem;
    }
}


.glass-box {
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 
img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
} */

/* Sub-headings inside box */
.cust h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Feature list */
.feature-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    font-size: 16px;
    color: var(--purple);
}

/* Dashboard image */
.dashboard-img img {
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-img img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


.client-approval-section {
    background-color: #ffffff;
    color: #222;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #143d8b;
}

.section-subtext {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.approval-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.feature-list i {
    color: #143d8b;
    font-size: 1rem;
    width: 22px;
}

.client-approval-image img {
    transition: transform 0.4s ease;
}

.client-approval-image img:hover {
    transform: scale(1.05);
}



/* tag section */

.main-heading {
    font-size: 34px;

}

.sub-heading {
    opacity: 0.9;
    font-size: 18px;
}

/* Tag wrapper */
.tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Tag style */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover */
.tag:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Colors */
.green {
    background: #2ecc71;
}

.orange {
    background: #ff7a45;
}

.blue {
    background: #3498db;
}

.pink {
    background: #ff5fa2;
}

.purple {
    background: #9b59b6;
}

.red {
    background: #e74c3c;
}

.teal {
    background: #1abc9c;
}

.brown {
    background: #8e5b3c;
}

.sky {
    background: #00bcd4;
}

.gold {
    background: #dea250;
}

.indigo {
    background: #3f51b5;
}

.coral {
    background: #ff6f61;
}

.lime {
    background: #7cb342;
}

.dark {
    background: #2c3e50;
}

.cyan {
    background: #00acc1;
}

.violet {
    background: #7e57c2;
}

/* Responsive */
@media (max-width:768px) {
    .tag {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 80px 0;
    }

    .hero-content,
    .hero-image {
        flex: 1 1 100%;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        animation: float 6s ease-in-out infinite;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .hero-content {
        margin: 10px;

    }

    .hero-section {
        text-align: center;
        padding: 80px 0;
        padding-bottom: 0px;
    }

    .step-number1 {
        position: absolute;
        top: -29px;
        left: -11px;
        font-size: 3rem;
        font-weight: 800;
        color: #ddd;
        pointer-events: none;
    }

    .section-heading {
        font-size: 1.5rem;

    }

    .glass-card {

        padding: 20px;
        /* box-shadow: 0 8px 25px rgba(102, 0, 211, 0.15); */
    }

    .section-subtext {

        margin: 0 auto 10px auto;

    }

    .invoices-section {
        /* background: #eaeff3; */
        padding: 40px 0;
    }
}