﻿ 
/* Base styles */ @import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Onest', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* Typography */
h1, h2, h3, p {
    letter-spacing: -0.5px;
}

/* Layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    background-color: #ffffff;
}

/* Content container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header styling - made responsive */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px; /* Space between wrapped elements */
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: #1a1a2e;
}

    .logo img {
        height: 32px;
    }

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

    nav ul {
        display: flex;
        list-style: none;
        flex-wrap: wrap; /* Allow menu items to wrap */
        justify-content: center;
    }

        nav ul li {
            margin: 0 15px;
        }

            nav ul li a {
                text-decoration: none;
                color: #4a4a6a;
                font-size: 16px;
                font-weight: 500;
            }

.cta-button {
    background-color: #fff;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 2px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
}

/* Hero section - responsive */
.hero {
    text-align: center;
    line-height: 1.2;
    padding-top: 15px;
    /*padding-bottom: 30px;*/
}

    .hero h1 {
        font-size: clamp(28px, 5vw, 45px); /* Responsive font size */
        font-weight: 700;
        margin-bottom: 16px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        color: #1a1a2e;
    }

    .hero p {
        font-size: clamp(15px, 2vw, 11px); /* Responsive font size */
        color: #5c5c7b;
        max-width: 530px;
        margin: 0 auto 25px;
        line-height: 1.5;
    }

/* Features section - made responsive */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow cards to wrap */
    /* gap: 20px;*/
    margin: 30px auto;
    max-width: 1100px;
}

.feature-card {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 350px;
    min-height: 70px;
    border-radius: 0; /* Ensure no radius is applied by default */
}


.feature-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
}

/* App download section */
.app-download {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap */
    gap: 15px;
    margin: 30px 0;
}

.download-button img {
    height: 50px;
    max-width: 100%;
}

/* Phone mockup section - responsive */
.phone-mockup {
    position: relative;
    margin: 50px auto;
    max-width: 400px;
    width: 100%;
}

.phone-container {
    position: relative;
    width: 100%;
    /*padding-bottom: 30px;*/
}

.phone {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.floating-icon {
    position: absolute;
    width: 80px;
    max-width: 20%;
}

.chart-icon-float {
    top: 10%;
    left: 5%;
}


/* Client logos section - responsive */
.logos-container {
    overflow: hidden;
    width: 100%;
    margin: 40px 0;
}

.logos-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.client-logo {
    height: 40px;
    margin: 0 20px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav {
        margin: 15px 0;
    }

        nav ul {
            gap: 10px;
        }

            nav ul li {
                margin: 5px 10px;
            }

    .cta-button {
        width: 100%;
        margin-top: 10px;
    }

    .feature-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .header-background {
        height: 70vh; /* Higher percentage on mobile */
        min-height: 400px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-text {
        font-size: 14px;
    }

    .floating-icon {
        width: 60px;
    }

    .client-logo {
        height: 30px;
        margin: 0 10px;
    }
}



 
/* Features section styling */
.features {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: transparent;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    max-width: 300px;
    height: 60px;
    border: 1px solid #ccc;
    border-left: none;
}

    .feature-card:first-child {
        border-left: 1px solid #ccc;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .feature-card:last-child {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.document-icon, .scan-icon, .chart-icon {
    background-color: #e9f0ff;
    color: #4285f4;
}

.feature-text {
    font-size: 14px;
    font-weight: 400;
    color: #4a4a6a;
}

/* App download section */
.app-download {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.download-button img {
    height: 46px;
    width: auto;
}

/* Phone mockup section */
.phone-mockup {
    display: flex;
    justify-content: center;
    position: relative;
    /*   margin-bottom: 50px;*/
    margin-top: 20px;
    z-index: 2;
}

.phone-container {
    position: relative;
    z-index: 2;
}

.phone {
    width: 280px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.floating-icon {
    position: absolute;
    z-index: 1;
    width: 55px;
    height: 55px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
}


.chart-icon-float {
    left: 55px;
    top: 340px;
}

.dollar-icon {
    right: 55px;
    bottom: 370px;
}

.tag-icon {
    left: 50px;
    bottom: 470px;
}


/* Testimonial section */
.testimonial {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -100px; /* Adjust overlap */
}

/* Client logos with animation */
.logos-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}

.logos-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

/* Duplicate the logos set to create continuous scrolling effect */
.logos-scroll-duplicate {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
    animation-delay: -15s;
}

.client-logo {
    height: 20px;
    margin: 0 40px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Why Us Section Styling */

.why-us-section {
    text-align: center;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 0;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-tag {
    display: inline-block;
    background-color: rgba(173, 216, 230, 0.9);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-us-heading-image {
    text-align: center;
    margin-bottom: 20px;
}

    .why-us-heading-image img {
        max-width: 200px;
        height: auto;
    }

.why-us-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 20px;
}

.why-us-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
}

.why-us-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: nowrap; /* Changed from wrap to nowrap */
}

.why-us-card {
    flex: 0 1 45%; /* Changed to take 45% width each */
    min-width: 280px;
    max-width: 450px;
    border-radius: 20px;
    overflow: visible; /* Changed from hidden to visible for phone overlap */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .why-us-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }

.before-card {
    background-color: #ffffff;
    padding: 40px 30px;
}

.after-card {
    background-color: #1a1a2e;
    padding: 40px 30px;
    position: relative;
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive styles for Why Us Section */
@media (max-width: 992px) {
    .why-us-section {
        padding: 60px 20px;
    }

    .why-us-cards {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .why-us-card {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 15px;
        margin: 40px 0;
    }

    .why-us-header {
        margin-bottom: 40px;
    }

    .why-us-title {
        font-size: 28px;
    }

    .why-us-description {
        font-size: 15px;
    }

    .why-us-cards {
        gap: 20px;
        margin-top: 40px;
    }

    .why-us-card {
        min-width: 100%;
    }

    .before-card,
    .after-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .why-us-tag {
        font-size: 12px;
        padding: 6px 15px;
    }

    .why-us-heading-image img {
        max-width: 150px;
    }

    .why-us-title {
        font-size: 24px;
    }

    .why-us-description {
        font-size: 14px;
    }
}

/* New Features Details Styling */
.features-details {
    /* padding: 80px 0;*/
    /* background-color: #f9fafc;*/
    margin-top: 30px;
    position: relative;
}

/* Decorative line image container at the top of features section */
.decorative-line-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.decorative-line {
    max-width: 80%;
    height: 30%;
}

.features-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 40px;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

    /* Decorative dots/stars around the features section */


    .features-header span {
        color: #4285f4;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .features-header h2 {
        font-size: 32px;
        font-weight: 700;
        margin-top: 8px;
        /*margin-bottom: 16px;*/
        color: #1a1a2e;
    }

    .features-header p {
        font-size: 15px;
        color: #5c5c7b;
        max-width: 330px;
        margin: 0 auto;
        line-height: 1.5;
    }

.feature-content {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.feature-content-reverse {
    flex-direction: row-reverse;
}

.feature-text-col {
    flex: 1;
    padding: 0 20px;
}

.feature-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.feature-description {
    font-size: 15px;
    color: #5c5c7b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-list-icon {
    width: 20px;
    height: 20px;
    background-color: #e9f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

    .feature-list-icon img {
        width: 12px;
        height: 12px;
    }

.feature-image {
    max-width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
}

.feature-image {
    max-width: 350px; /* Increased from original size */
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

    .feature-image:hover {
        transform: translateY(-5px); /* Slight lift effect on hover */
    }

.invoice-image {
    max-width: 550px; /* Increased from 400px */
}

.data-entry-image {
    max-width: 350px; /* Increased from 500px */
}


 
/* How It Works section styling============================================================================================================================================ */
.how-it-works-container {
    /*  background-color: #fff5f6;*/
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: repeating-linear-gradient(90deg, #ffffff33 0px, #ffffff33 15px, transparent 15px, transparent 30px);*/
    z-index: 0;
}

.how-it-works-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-label {
    display: inline-block;
    background-color: #e8ebff;
    color: #5271ff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.how-it-works-title {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    color: #2e2e2e;
    line-height: 1.2;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .steps-container img {
        width: 30%;
        max-width: 350px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .steps-container img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

/* Responsive styling */
@media (max-width: 992px) {
    .steps-container img {
        width: 45%;
        max-width: none;
    }

    .steps-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .how-it-works-title {
        font-size: 32px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

        .steps-container img {
            width: 80%;
            max-width: 400px;
            margin-bottom: 20px;
        }
}

@media (max-width: 480px) {
    .steps-container img {
        width: 100%;
    }

    .how-it-works-container {
        padding: 50px 0;
    }

    .how-it-works-title {
        font-size: 28px;
    }
}







 

/*--INTEGRATION--================================================================================================================*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

    .integrations-section .container {
        padding-top: 80px;
    }


.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    /*  margin-bottom: 16px;*/
    text-align: center;
}

.section-description {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.integration-circle {
    max-width: 650px;
    margin: 0 auto 80px;
}

    .integration-circle img {
        width: 100%;
        height: auto;
        display: block;
    }

.horizontal-line-container {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
}

.horizontal-line-image {
    max-width: 800px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Testimonials Slider - Enhanced Version */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    width: 100%;
    /*  padding: 20px 0;*/
    perspective: 1000px;
    max-width: 1400px; /* Control the width of the slider area */
}

.testimonials-container {
    display: flex;
    position: relative;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    height: 450px; /* Increased height for larger cards */
    padding: 0 100px; /* Add padding to account for larger cards */
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    width: 450px; /* Increased width further */
    height: 280px; /* Explicit height */
    margin: 0 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: center;
    transform: translateX(-50%) scale(0.7);
    opacity: 0;
    visibility: hidden; /* Hide all cards by default */
}

    /* Show only 3 cards at a time */
    .testimonial-card.visible {
        visibility: visible;
        opacity: 0.5;
    }

    /* Left card (previous) */
    .testimonial-card.prev {
        transform: translateX(calc(-50% - 540px)) scale(0.85);
        z-index: 1;
    }

    /* Active card (current) */
    .testimonial-card.active {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        z-index: 3;
        box-shadow: 0 15px 30px rgba(0,102,204,0.2);
        /* border: 2px solid #0066cc;*/
    }

    /* Right card (next) */
    .testimonial-card.next {
        transform: translateX(calc(-50% + 540px)) scale(0.85);
        z-index: 1;
    }

.testimonial-text {
    font-size: 16px; /* Increased font size */
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.author-avatar {
    width: 50px; /* Larger avatar */
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #e6f0ff;
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-name {
    font-size: 16px; /* Increased font size */
    font-weight: 600;
    color: #333;
}









 
/* Minimalist FAQ Section Styling - Matched to the provided image =====================================================================================================*/
.faq-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.faq-list {
    background: transparent;
}

.faq-item {
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

    .faq-item:last-child {
        margin-bottom: 0;
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .faq-question h3 {
        font-size: 16px;
        font-weight: 500;
        color: #111827;
        margin: 0;
    }

.faq-icon {
    font-size: 22px;
    color: #9ca3af;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}

.faq-answer p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
}

/* Active state styling - subtle */
.faq-item.active {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
    position: relative;
    z-index: 2;
}

    .faq-item.active .faq-question h3 {
        color: #111827;
        font-weight: 600;
    }

    .faq-item.active .faq-icon {
        color: #6366f1;
    }

@media (max-width: 640px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 16px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 16px 20px;
    }

        .faq-question h3 {
            font-size: 15px;
        }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 16px;
    }

    .faq-item.active {
        transform: translateY(-1px);
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
    }
}







/* footer========================================================================================================================= */


.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Updated CSS for proper phone and footer overlap */
.herofooter-section {
    position: relative;
    padding: 40px 0 0; /* Remove the bottom padding completely */
    background: linear-gradient(to bottom, #e8f0ff 0%, #f9fafb 50%);
    overflow: visible;
    min-height: 400px; /* Reduced height to bring footer up */
}

.herofooter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    /*  padding-top: 80px;*/
    padding-bottom: 120px; /* Add padding at the bottom of content */
}


.herofooter-text {
    flex: 1;
    max-width: 450px;
    position: relative;
    z-index: 5; /* Ensure text appears above any decorations */
    padding-bottom: 100px;
}

.herofooter-image {
    flex: 1;
    position: relative;
    height: 550px;
    overflow: visible;
    margin-top: -60px;
}

.herofooter-heading {
    font-size: 42px;
    font-weight: 700;
    color: #121212;
    line-height: 1.2;
    margin-bottom: 20px;
}

.herofooter-subtext {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.herofooter-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn1 {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: #121212;
    color: white;
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: #121212;
    border: 1px solid #121212;
}

.herofooter-caption {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

.phone1-mockup {
    position: absolute;
    right: -30px;
    top: 0;
    /*z-index: 20;*/ /* Increased z-index to ensure it appears above all other elements */
}

    .phone1-mockup img {
        width: auto;
        height: 650px;
        object-fit: contain;
    }




/* Cloud decoration */
.cloud-decoration {
    position: absolute;
    top: 80px;
    right: 200px;
    width: 130px;
    height: 80px;
    background-color: #e0eeff;
    border-radius: 50px;
    z-index: 1;
}

    .cloud-decoration:before {
        content: "";
        position: absolute;
        top: -30px;
        left: 30px;
        width: 60px;
        height: 60px;
        background-color: #e0eeff;
        border-radius: 50%;
    }

    .cloud-decoration:after {
        content: "";
        position: absolute;
        top: -20px;
        left: 70px;
        width: 40px;
        height: 40px;
        background-color: #e0eeff;
        border-radius: 50%;
    }

/* Purple note decoration */
.notes-decoration {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, #e6c2ff 0%, #d29dff 100%);
    border-radius: 15px;
    transform: rotate(15deg);
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

    .notes-decoration:before {
        content: "";
        position: absolute;
        top: 30px;
        left: 20px;
        width: 80px;
        height: 10px;
        background-color: rgba(255,255,255,0.6);
        border-radius: 5px;
    }

    .notes-decoration:after {
        content: "";
        position: absolute;
        top: 50px;
        left: 20px;
        width: 60px;
        height: 10px;
        background-color: rgba(255,255,255,0.6);
        border-radius: 5px;
    }

/* Footer adjustments */
.footer1 {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 1; /* Lower z-index than the phone */
    margin-top: -250px; /* Significant negative margin to pull footer up and under phone */
    padding-bottom: 50px; /* Additional padding at bottom of footer */
}


.footer1-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer1-brand {
    flex: 1;
    min-width: 200px;
}

.footer1-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.logo1-icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.footer1-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 20px;
}

.footer1-copyright {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
}

.footer1-nav {
    flex: 1;
    min-width: 150px;
}

    .footer1-nav h4 {
        font-size: 16px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 10px;
    }

    .footer1-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer1-nav li {
        margin-bottom: 5px;
    }

    .footer1-nav a {
        font-size: 14px;
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer1-nav a:hover {
            color: #2980b9;
        }

.social-icon {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
}

    .social-icon svg {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

/* Media query adjustments */
@media (max-width: 992px) {
    .phone1-mockup {
        right: -80px;
        top: 40px;
    }

    .footer1 {
        margin-top: -200px; /* Adjust for smaller screens */
    }
}

@media (max-width: 768px) {
    .herofooter-section {
        padding: 50px 0 0;
    }

    .herofooter-content {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .herofooter-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .herofooter-image {
        height: 350px;
        margin-top: 0;
    }

    .phone1-mockup {
        position: relative;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        z-index: 1; /* Reset z-index for mobile */
    }

        .phone1-mockup img {
            height: 400px;
        }

    .footer1 {
        margin-top: 0; /* Remove negative margin on mobile */
        padding-bottom: 60px;
    }
}



.why-us-section {
    text-align: center;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0; /* Completely removed top padding */
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-tag {
    display: inline-block;
    background-color: rgba(173, 216, 230, 0.9);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-us-heading-image {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
}

    .why-us-heading-image img {
        max-width: 200px;
        height: auto;
    }

.why-us-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 20px;
}

.why-us-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
}

.why-us-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.why-us-card {
    flex: 0 1 45%;
    min-width: 280px;
    max-width: 450px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background: transparent;
}

    .why-us-card:hover {
        transform: translateY(-5px);
        box-shadow: none;
    }

.before-card {
    background-color: transparent;
    padding: 0;
    flex: 0 1 29%; /* Decreased width for before card */
    max-width: 310px; /* Decreased max-width */
}

.after-card {
    background-color: transparent;
    padding: 0;
    position: relative;
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 15px; /* Added rounded corners */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Added shadow */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Added subtle border */
}
/* Responsive styles for Why Us Section */
@media (max-width: 992px) {
    .why-us-section {
        padding: 60px 20px;
    }

    .why-us-cards {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .why-us-card {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 15px;
        margin: 40px 0;
    }

    .why-us-header {
        margin-bottom: 40px;
    }

    .why-us-title {
        font-size: 28px;
    }

    .why-us-description {
        font-size: 15px;
    }

    .why-us-cards {
        gap: 20px;
        margin-top: 40px;
    }

    .why-us-card {
        min-width: 100%;
    }

    .before-card,
    .after-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .why-us-tag {
        font-size: 12px;
        padding: 6px 15px;
    }

    .why-us-heading-image img {
        max-width: 150px;
    }

    .why-us-title {
        font-size: 24px;
    }

    .why-us-description {
        font-size: 14px;
    }
}
     