﻿* {
    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 {
    display: flex;
    width: 100%;
    height: 500px;
    position: relative;
    background-color: white;
    overflow: hidden;
    gap:10%;
}
.right-viuslas {
    position: relative;
    width: 55%;
    height: 100%;
}
.bg-blob {
    position: absolute;
    top: -7px;
    right: 100px;
    width: 35%;
    height: 78%;
    margin-top:90px;
    z-index: 1;
}
.fg-blob {
    position: absolute;
    bottom: 20px;
    left: 660px;
    width: 35%;
    height:87%;
    z-index: 3;
}
.hero-text {
    flex: 1;
    max-width: 550px;
    margin-top: 143px;
    margin-left: 102px;
}

    .hero-text h1 {
        color: #0027c2;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 30px;
    }

   /*Key features*/
.features {
    padding: 60px 0;
    border-radius: 16px; /* This gives you ALL corners rounded */
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    background-color: #006d6a;
}
.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;
    justify-content:left;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .feature-card img {
        width: 40px;
        height: 40px;
        background-color: #e6f4ff;
        border-radius: 50%;
        padding: 8px;
        margin-bottom: 16px;
        display: flex;
        justify-content:left;
    }

    .feature-card h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1e1e1e;
        display: flex;
        justify-content: left;
    }

    .feature-card p {
        font-size: 16px;
        color: #555;
        line-height: 1.5;
        display: flex;
        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;
    }
}*/

/* why choose obs*/
.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 */
    opacity:1;
}

.bg2 {
    background-image: url('/Content/v3/Images/AccountingImages/why-choose-blur-bg.png'); /* optional blur layer */
    z-index: 1;
    opacity: 1.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 340px;
    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: 15px;
        margin-bottom: 15px;
        display: flex;
        text-align:left;
    }

.icon {
    font-size: 18px;
    margin-right: 10px;
}

    .icon.red {
        color: #e53935;
    }

    .icon.green {
        color: #43a047;
    }
/*Pricing*/
.pricing-section {
    padding: 100px 20px;
    background: #fff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .pricing-container h2 {
        font-size: 32px;
        font-weight: 800;
        color: #0b35c8;
        margin-bottom: 10px;
    }

.subheading {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ✅ this is key */
    flex-wrap: wrap;
}

.pricing-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}


.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px 30px 40px;
    max-width: 400px;
    flex: 1;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


    .pricing-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111;
        justify-content:center;
        display:flex;
    }
    .pricing-card p{
        align-content:center;
    }

.price {
    font-size: 16px;
    color: #444;
    margin-bottom: 5px;
}

    .price .highlight {
        font-size: 24px;
        color: #0b35c8;
        font-weight: 800;
    }

.tagline {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .features li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 15px;
        color: #333;
    }

.icon.green {
    color: #34a853;
    font-size: 18px;
    margin-right: 10px;
}

.btns {
    display: inline-block;
    background: #007b80;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    width: 100%;
    transition: background 0.3s ease;
}

    .btns:hover {
        background: #005f47;
    }

@media (max-width: 1200px) {
    .pricing-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .pricing-card {
        text-align: center;
        padding: 2rem;
    }
}

.pricing-card-wrapper {
    display: flex;
    align-items: center; /* ✅ vertically centers the card */
    height: 100%;
}
.pricing-features .features {
    background: none !important;
    color: #333;
    padding: 0;
    border-radius: 0;
}
/*Ready to stramline*/
.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;
}

    .watch-demo-btn:hover {
        background-color: #ddd;
    }
/*Contact us*/
.contact-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.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: #007e87;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.whatsapp-btn {
    background-color: #075e54;
    color: #fff;
}

.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%;
    }
/*Question Section*/
.faq-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.faq-text {
    flex: 1;
    min-width: 320px;
}

    .faq-text h2 {
        font-size: 28px;
        font-weight: bold;
        color: #004aad;
        margin-bottom: 10px;
    }

    .faq-text .subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        color: #666;
    }

.faq-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item {
    margin-bottom: 20px;
}

    .faq-item strong {
        display: block;
        margin-bottom: 5px;
        color: #222;
    }

    .faq-item p {
        margin: 0;
        color: #555;
        font-size: 15px;
    }

/* Image Layering */
.faq-images {
    flex: 1;
    min-width: 300px;
    position: relative;
    width: 100%;
    max-width: 500px;
}

    .faq-images .bg-image {
        position: absolute;
        top: 30px;
        right: 0;
        width: 100%;
        z-index: 0;
    }

    .faq-images .main-image {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
    }
.floating-box {
    position: absolute;
    top: -25px;
    left: 69%;
    transform: translateX(-60%);
    width: 80%;
    max-width: 420px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 10;
}