﻿* {
    box-sizing: border-box;
}

html {
    font-size: 100%; /* 16px default */
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif !important;
}

/*Hero section*/
.hero-section {
    display: flex;
    width: 100%;
    height: 500px;
    position: relative;
    background-color: white;
    overflow: hidden;
}

.left-visuals {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-bg-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-fg-image {
    position: absolute;
    top: 126px;
    left: 30px;
    width: 65%;
    z-index: 3;
    height: 70%;
}

.right-content {
    width: 45%;
    padding: 80px 60px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .right-content h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #0038D1;
        margin-bottom: 20px;
    }

    .right-content p {
        font-size: 1rem;
        color: #222;
        margin-bottom: 30px;
        font-weight: bold;
    }
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .left-visuals,
    .right-content {
        width: 100%;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-bg-image {
        max-width: 90%;
    }
}

/*Key features*/
.features {
    padding: 60px 0;
    border-radius: 16px; /* This gives you ALL corners rounded */
}

.features-container {
    display: grid;
    background-color: #006d6a;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px; /* Ensures side space, but NOT centered too tightly */
    border-radius: 16px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); /* Softer shadow */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .feature-card img {
        width: 60px;
        height: 60px;
        padding: 8px;
        margin-bottom: 16px;
        position: relative;
        justify-content: left;
        display: flex;
    }

    .feature-card h3 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1e1e1e;
        text-align: left;
    }

    .feature-card p {
        font-size: 20px;
        color: #555;
        line-height: 1.5;
        text-align: left;
    }
/* Responsive - 2 cards on medium screens, 1 on mobile */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}
/*Suitable for*/
.suitable-for-card {
    padding: 60px 0;
    border-radius: 16px; /* This gives you ALL corners rounded */
}

.suitable-for-card-container {
    display: grid;
    background-color: #006d6a;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px; /* Ensures side space, but NOT centered too tightly */
    border-radius: 16px;
}

.suitable-for-card-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); /* Softer shadow */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */
    transition: transform 0.3s, box-shadow 0.3s;
}

    .suitable-for-card-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .suitable-for-card-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        position: relative;
    }

    .suitable-for-card-card h3 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1e1e1e;
        text-align: center;
    }

    .suitable-for-card-card p {
        font-size: 20px;
        color: #555;
        line-height: 1.5;
        text-align: center;
    }
/*Before vs After*/
.comparison-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background: #fff;
}

.background-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.bg1 {
    background-image: url('/Content/v3/Images/AccountingImages/why-choose-bg.png'); /* main transparent image */
}

.bg2 {
    background-image: url('/Content/v3/Images/AccountingImages/why-choose-blur-bg.png'); /* optional blur layer */
    z-index: 1;
    opacity: 0.15;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .content-wrapper h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0b35c8;
        margin-bottom: 10px;
    }

.subheading {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.comparison-card {
    flex: 0 0 500px;
    background: #f9fafb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

    .comparison-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .comparison-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .comparison-card li {
        font-size: 16px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

.icon {
    font-size: 18px;
    margin-right: 10px;
}

    .icon.red {
        color: #e53935;
    }

    .icon.green {
        color: #43a047;
    }

/*Ready to transform */
.watch-demo-section {
    background-color: #007e87; /* Dark teal background */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .watch-demo-section .container {
        max-width: 800px;
        margin: 0 auto;
    }

    .watch-demo-section h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .watch-demo-section p {
        font-size: 16px;
        color: #d4d4d4;
        margin-bottom: 30px;
    }

.watch-demo-btn {
    background-color: #f1f1f1;
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

    .watch-demo-btn:hover {
        background-color: #ddd;
    }
/*Contact US*/
.contact-section {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-form {
    flex: 1;
    min-width: 320px;
}

    .contact-form h2 span {
        color: #004aad;
        font-size: 32px;
        font-weight: bold;
    }

    .contact-form p {
        font-size: 15px;
        color: #333;
        margin: 10px 0 25px;
    }

    .contact-form form input,
    .contact-form form textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #ccc;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .contact-form form textarea {
        resize: vertical;
        height: 100px;
    }

.buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.trial-btn,
.whatsapp-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.trial-btn {
    background-color: #007b80;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    justify-content:center;
}

.whatsapp-btn {
    background-color: #007b80;
    color: #fff;
    justify-content: center;
}

.subnote {
    font-size: 12px;
    display: flex;
    gap: 10px;
    color: #555;
}

    .subnote .secure {
        color: green;
    }

    .subnote .nocard {
        color: purple;
    }

.contact-image {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

    .contact-image img {
        max-width: 100%;
    }
/*Faqs*/
.faq-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    color: #0d2de9;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
}

.faq-item {
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

    .faq-item h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #000;
    }

    .faq-item p {
        font-size: 15px;
        color: #555;
        margin: 0;
    }
/*Pricing feature*/

/* Section Styling */
.pricing-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.pricing-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d2de9;
    margin-bottom: 8px;
}

.pricing-header p {
    color: #555;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Pricing Layout */
.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .pricing-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Pricing Card */
.pricing-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 32px;
    text-align: left;
    max-width: 480px;
}

    .pricing-card h3 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .pricing-card .price {
        font-size: 20px;
        font-weight: 400;
        margin: 10px 0;
    }

        .pricing-card .price span {
            color: #0d2de9;
            font-weight: 700;
            font-size: 24px;
        }

    .pricing-card .subtext {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

/* Feature List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .pricing-features li {
        font-size: 15px;
        color: #222;
        margin-bottom: 10px;
    }


/* Button */
.cta-button {
    display: flex;
    background-color: #007d75;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    justify-content:center;
}

/* Right Image */
.pricing-image img {
    max-width: 100%;
}
.floating-box {
    position: absolute;
    top: -25px;
    left: 70%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 420px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: white;
    z-index: 10;
}