﻿﻿body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f8fafe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    
}

@media (max-width: 992px) {

    h1, h2, h3, h4, h5, h6 {
        margin: 0;
        text-align: center;
    } 
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* HERO SECTION */
.hero {
    background: #fff;
    padding: 48px 0 20px 0;
}

.hero-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.hero-text {
    flex: 1 1 420px;
}

    .hero-text h1 {
        color: #1365d3;
        font-size: 2.3rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-text p {
        color: #444;
        margin-bottom: 24px;
        font-size: 1rem;
    }

.hero-buttons {
    margin-bottom: 18px;
}

    .hero-buttons .btn {
        margin-right: 14px;
    }

.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

    .hero-image img {
        max-width: 340px;
    }

/* PAIN POINT */
.pain-points {
    background: #e9f5ff;
    padding: 36px 0;
}

.pain-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.pain-image {
    flex: 1 1 300px;
    text-align: center;
}

    .pain-image img {
        max-width: 340px;
    }

.pain-text {
    flex: 1 1 420px;
}

.pain-points-list {
    margin: 28px 0 0 0;
    padding: 0;
    text-align:center;
}

.pain-point {
    font-size: 1.19rem;
    color: #222;
    font-weight: 500;
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 6px;
}

.pain-pointz {
    font-size: 1.09rem;
    color: #222;
    font-weight: 500;
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 6px;
}

.pain-point:not(:last-child) {
    margin-bottom: 18px;
}

/*.pain-point::after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    min-width: 170px;
    max-width: 540px;
    background: #1674e8;
    margin: 8px 0 0 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
}*/
.pain-point::after {
    content: "";
    display: block;
    height: 3px;
    width: 85%; /* fixed length */
    background: #1674e8;
    margin: 8px auto 0 auto; /* keeps it centered */
    border-radius: 2px;
}

.pain-text h2 {
    color: #1365d3;
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.pain-text ul {
    color: #444;
    font-size: 1rem;
    margin: 0 0 0 16px;
}

/*FEATURES */
.features {
    background: #fff;
    padding: 42px 0 30px 0;
    text-align: center;
}

    .features h2 {
        color: #1365d3;
        margin-bottom: 18px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #e9f5ff;
    color: #1365d3;
    border-radius: 8px;
    box-shadow: 0 2px 8px #d0e7f8;
    padding: 22px 14px;
    font-weight: 600;
    font-size: 1.07rem;
}

    .feature-card span {
        font-weight: 400;
        font-size: 0.95rem;
        color: #444;
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis;
    }
/* HOW IT WORKS */
.how-it-works {
    background: #e9f5ff;
    padding: 50px 0 30px 0;
    text-align: center;
}

    .how-it-works h2 {
        color: #1365d3;
        font-size: 2rem;
        margin-bottom: 20px;
    }


.steps-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
    position: relative;
}

.step-caption {
    color: #4c6277;
    font-size: 0.97rem;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.5;
}

.step-box {
    border-radius: 12px;
    width: 230px;
    padding: 20px 15px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


    .step-box:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 25%;
        transform: translateX(50%);
        right: -20%;
        width: calc(210px + 3px);
        height: 1px;
        background: #1674e8;
        z-index: 0;
    }

.step-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    background-color: #1365d3;
    border: 3px solid #1365d3;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-text {
    font-weight: 700;
    font-size: 1.12rem;
    color: #1365d3;
    margin-bottom: 4px;
}

.steps-desc {
    color: #555;
    margin-top: 24px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .steps-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-box::after {
        display: none;
    }
}

/* PRICING TABLE */
.pricing {
    background: #fff;
    padding: 60px 0 60px 0;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

    .pricing h2 {
        color: #1365d3;
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 2rem;
    }

    .pricing p {
        margin-bottom: 40px;
        color: #555;
        font-size: 1rem;
    }

.pricing-table {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    border-collapse: collapse;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

    .pricing-table thead th {
        background: #1365d3;
        color: #fff;
        font-weight: 600;
        padding: 16px;
        text-align: center;
        font-size: 1.05rem;
    }

    .pricing-table tbody td:first-child {
        text-align: left;
        font-weight: 500;
        color: #333;
        background: #f9fbff;
    }

    .pricing-table td {
        padding: 14px;
        text-align: center;
        border: 1px solid #e5e8f0;
    }

    .pricing-table tbody tr:nth-child(even):not(.price-row):not(.button-row) td {
        background: #fcfdff !important;
    }

    .pricing-table tbody tr:nth-child(odd):not(.price-row):not(.button-row) td {
        background: #e9f5ff !important;
    }

 Price row 
.price-row td {
    font-weight: 700;
    font-size: 1.15rem;
    background-color: #f0f6ff;
    color: #1365d3;
    border-top: 2px solid #1365d3;
}

.button-row td {
    background: #fff;
    padding: 20px 15px;
}

.button-row .btn {
    margin-bottom: 8px;
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-row .btn-primary {
    background: #1365d3;
    border: none;
}

    .button-row .btn-primary:hover {
        background: #0f4fa8;
    }

.gst-note {
    font-size: 0.8rem;
    opacity: 0.7;
    color: #555;
    margin: 0;
}

@media (max-width: 900px) {
    .pricing-table {
        font-size: 0.85rem;
    }

        .pricing-table thead th {
            font-size: 0.9rem;
            padding: 12px;
        }

        .pricing-table td {
            padding: 10px;
        }

    .price-row td {
        font-size: 1rem;
    }

    .button-row .btn {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}

@media (max-width: 700px) {
    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
        width: 100%;
    }

        .pricing-table thead {
            display: none;
        }

        .pricing-table tr {
            margin-bottom: 18px;
            border: 1px solid #e5e8f0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .pricing-table td {
            text-align: left;
            padding: 12px 16px;
            border: none;
            position: relative;
        }

            .pricing-table td::before {
                content: attr(data-label);
                font-weight: 600;
                color: #1365d3;
                display: block;
                margin-bottom: 4px;
                font-size: 0.9rem;
            }

    .price-row td {
        text-align: center;
        font-size: 1.05rem;
    }

    .button-row td {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .pricing-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        box-shadow: none;
        border-radius: 0;
    }

        .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
            display: block;
            min-width: 180px;
        }

        .pricing-table thead {
            display: table-header-group;
        }

        .pricing-table tbody {
            display: table-row-group;
        }

        .pricing-table tr {
            display: table-row;
        }

        .pricing-table th, .pricing-table td {
            display: table-cell;
            min-width: 120px;
            padding: 10px;
            font-size: 0.95rem;
        }

        .pricing-table thead th, .pricing-table td {
            white-space: nowrap;
        }
}

@media (max-width: 600px) {
    .pricing-table {
        overflow-x: auto;
    }

        .pricing-table th, .pricing-table td {
            min-width: 120px;
            padding: 8px;
            font-size: 0.91rem;
        }

            .pricing-table th:nth-child(n+4)
            .pricing-table td:nth-child(n+4) {
                display: none;
            }
}

/* CTA */
.cta {
    background: #e9f5ff;
    text-align: center;
    padding: 32px 0;
}

    .cta blockquote {
        font-size: 2rem;
        color: black;
        font-weight700;
        margin-bottom: 18px;
    }
/* ====== BUTTONS ====== */
.btnss {
    padding: 12px 28px;
    margin: 6px 0;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #1365d3;
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #1365d3;
    border: 2px solid #1365d3;
}



.icon-lightblue {
    
    filter: invert(32%) sepia(74%) saturate(4949%) hue-rotate(193deg) brightness(95%) contrast(97%);
}

.icon-blue {
    filter: invert(32%) sepia(74%) saturate(4949%) hue-rotate(193deg) brightness(95%) contrast(97%);
}

.icon-green {
    filter: invert(62%) sepia(81%) saturate(457%) hue-rotate(72deg) brightness(92%) contrast(89%);
}

.icon-white {
    filter: brightness(0) invert(1); 
}

.icon-red {
    filter: invert(21%) sepia(95%) saturate(7486%) hue-rotate(356deg) brightness(95%) contrast(104%);
}
/*Extra*/
.pricing-container h2 {
    color: #1365d3;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 2rem;
    
  
}
}

.pricing-container p {
    margin-bottom: 40px;
    color: #555;
    font-size: 1rem;
}
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}
/* Responsive behavior */
@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column; /* stack vertically */
        align-items: center; /* center cards */
    }

    .plan {
        width: 90%; /* make each card take most of screen width */
        max-width: 400px;
    }
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    width: 280px;
}

    .pricing-card h2{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .pricing-card .price {
        font-size: 22px;
        font-weight: bold;
        margin: 10px 0;
        white-space: nowrap; /* same line */
    }

    .pricing-card .price {
        font-size: 22px;
        font-weight: bold;
        margin: 10px 0;
        white-space: nowrap; /* same line */
    }

        .pricing-card .price span {
            font-size: 14px;
            font-weight: normal;
            margin-left: 4px;
        }

    .pricing-card .btn {
        background: #007bff;
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 6px;
        cursor: pointer;
        display: block;
        margin: 10px auto;
    }

    .pricing-card .gst {
        font-size: 12px;
        color: #555;
        margin-top: 6px;
    }

/* Plan card */
.plan {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex: 1 1 30%;
    max-width: 300px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header strip */
.plan-header {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px 8px 0 0;
}

    .plan-header h3 {
        margin: 0;
        font-size: 20px;
    }

    .plan-header .subtitle {
        margin: 4px 0 0;
        font-size: 0.9rem;
    }

/* Price */
.plan .price {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin: 16px 0;
    color: #333;
}

/* Feature table inside plan card */
.plan .feature-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
}

    /* Table cells */
    .plan .feature-table td,
    .plan .feature-table th {
        padding: 10px 14px;
        text-align: left;
    }

    /* Header */
    .plan .feature-table th {
        background: #1365d3;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }

    /* Alternate row colors (like your ul li) */
    .plan .feature-table tr:nth-child(odd) td {
        background: #e9f5ff !important;
    }

    .plan .feature-table tr:nth-child(even) td {
        background: #fcfdff !important;
    }

    /* “Yes” column styling */
    .plan .feature-table td:last-child {
        text-align: center;
        
        font-weight: 600;
    }
.feature-table th:first-child {
    border-right: 2px solid black; 
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.meta-section {
    text-align: center;
    margin-bottom: 40px;
}

.meta-section p {
   margin: 5px 0;
   font-weight: 600;
   font-size: 1.2rem;
}
.desktop-pricing {
    display: block;
}

.mobile-pricing {
    display:none;
}

@media (max-width: 992px) {
    .desktop-pricing {
        display: none;
    }

    .mobile-pricing {
        display: block;
    }
}
.desktop-image {
    display: block;
}

.mobile-image {
    display:block;
}

@media (max-width: 992px) {
    .desktop-image {
        display: none;
    }
    .pain-point::after {
        
        display: none;
        
    }
    .mobile-image {
        display: block;
    }
}