/* =====================================================================
   service-page.css  (Web Application Development in Trichy)
   Scoped stylesheet — all classes prefixed with `wa-`.
   No body{}, *{}, or font-family rules used — inherits theme typography.
===================================================================== */

/* ---------- Layout Primitives ---------- */
.wa-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.wa-section {
    padding: 64px 0;
}

.wa-section--white {
    background-color: #ffffff;
}



.wa-mt-24 {
    margin-top: 24px;
}

/* ---------- Breadcrumb ---------- */
.wa-breadcrumb {
    padding: 16px 0;
    background-color: #c5ffbc;
    border-bottom: 1px solid #e5e7ec;
}
/* FAQ Cursor */
.wa-faq-item__question {
    cursor: pointer;
}

.wa-faq-item__answer {
    cursor: pointer;
}

.wa-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.wa-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b6f7b;
}

.wa-breadcrumb__item:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #a7abb5;
}

.wa-breadcrumb__link {
    color: #6b6f7b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.wa-breadcrumb__link:hover {
    color: #91d904;
}

.wa-breadcrumb__item--active {
    color: #1a1a1a;
    font-weight: 600;
}

/* ---------- Typography ---------- */
.wa-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 700;
    color: #91d904;
    margin-bottom: 12px;
}

.wa-h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 800;
    color: #14161b;
    margin: 0 0 16px;
}

.wa-h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 700;
    color: #ffff;
    margin: 0 0 18px;
}

.wa-h3 {
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.3;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 12px;
}

.wa-h4 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 8px;
}

.wa-paragraph {
    font-size: 16px;
    line-height: 1.75;
    color: #4b4f5a;
    text-align: justify;
    margin: 0 0 14px;
}

.wa-hero-block__tagline {
    font-size: 18px;
    font-weight: 600;
    color: #3b3f47;
    text-align: justify;
    margin-bottom: 20px;
}

.wa-flow-text {
    font-size: 15px;
    font-weight: 600;
    color: #26282f;
    background-color: #c5ffbc;
    border-left: 4px solid #91d904;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 16px;
    text-align: left;
    line-height: 1.7;
}

.wa-formula-text {
    font-size: 15.5px;
    font-weight: 700;
    color: #14161b;
    background: linear-gradient(135deg, #f4faec 0%, #eef7e2 100%);
    border: 1px solid #d7ecb4;
    border-radius: 10px;
    padding: 16px 18px;
    margin: 0;
    line-height: 1.7;
}

.wa-formula-box {
    margin: 20px 0;
}

/* ---------- Section Heading Blocks ---------- */
.wa-section-heading {
    margin-bottom: 36px;
}

.wa-section-heading--center {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.wa-section-heading--center .wa-paragraph {
    text-align: center;
}

/* ---------- Hero Block ---------- */
.wa-hero-block__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.wa-hero-block__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.wa-tag-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.wa-tag-chip {
    display: inline-block;
    background-color: #c5ffbc;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3b3f47;
}

/* ---------- Buttons ---------- */
.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.wa-btn--primary {
    background-color: #91d904;
    color: #0e1207;
    box-shadow: 0 8px 20px rgba(145, 217, 4, 0.28);
}

.wa-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(145, 217, 4, 0.38);
}

.wa-btn--outline {
    background-color: transparent;
    color: #14161b;
    border-color: #14161b;
}

.wa-btn--outline:hover {
    background-color: #14161b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Images ---------- */
.wa-img-rounded {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(20, 22, 27, 0.12);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wa-img-rounded:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(20, 22, 27, 0.18);
}

/* ---------- Split (Image / Content) Layouts ---------- */
.wa-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 28px;
}

.wa-split--image-left .wa-split__image {
    order: 1;
}

.wa-split--image-left .wa-split__content {
    order: 2;
}

.wa-split--content-left .wa-split__content {
    order: 1;
}

.wa-split--content-left .wa-split__image {
    order: 2;
}

/* ---------- Content Cards ---------- */
.wa-content-card {
    background-color: #ffffff;
    border: 1px solid #ecedf1;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(20, 22, 27, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wa-content-card:hover {
    box-shadow: 0 16px 40px rgba(20, 22, 27, 0.08);
    transform: translateY(-3px);
}

.wa-content-card:last-child {
    margin-bottom: 0;
}

.wa-insight-box {
    background: linear-gradient(135deg, #14161b 0%, #21242c 100%);
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 28px;
    color: #c5ffbc;
}

.wa-insight-box .wa-h2,
.wa-insight-box .wa-h3,
.wa-insight-box .wa-h4 {
    color: #ffffff;
}

.wa-insight-box .wa-paragraph {
    color: #cfd2da;
}

.wa-insight-box .wa-flow-text {
    background-color: rgba(145, 217, 4, 0.12);
    color: #eef8dc;
    border-left-color: #91d904;
}

/* ---------- Bullet Lists ---------- */
.wa-bullet-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-bullet-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15.5px;
    line-height: 1.65;
    color: #4b4f5a;
    text-align: justify;
}

.wa-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #91d904;
}

.wa-bullet-list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.text-light li{
    color:#fff;
}
/* ---------- Check Grid ---------- */
.wa-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
  .wa-hero-block__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}
.wa-split__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 767px) {
    .wa-split__image {
        width: 100%;
    }

    .wa-split__image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.wa-split__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .wa-split__image {
        width: 100%;
    }

    .wa-split__image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .wa-hero-block__image {
        width: 100%;
    }

    .wa-hero-block__image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.wa-split__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 767px) {
    .wa-split__image {
        width: 100%;
    }

    .wa-split__image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.wa-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid #e7e9ee;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #26282f;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wa-check-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08);
    border-color: #cdeaa0;
}

.wa-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background-color: #eef8dc;
    color: #5c8c00;
    font-weight: 800;
    font-size: 13px;
}

/* ---------- Benefit Grid ---------- */
.wa-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.wa-benefit-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.wa-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #c5ffbc;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 8px 22px rgba(20, 22, 27, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(20, 22, 27, 0.1);
}

.wa-benefit-card__icon {
    color: #91d904;
    font-size: 16px;
}

.wa-benefit-card__text {
    font-size: 14.5px;
    font-weight: 600;
    color: #26282f;
}

/* ---------- Pillar Grid ---------- */
.wa-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wa-pillar-card {
    background-color: #c5ffbc;
    border: 1px solid #ecedf1;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 26px rgba(20, 22, 27, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(20, 22, 27, 0.09);
}

/* ---------- Example / Type Grid ---------- */
.wa-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 8px;
}

.wa-example-card {
    background-color: #c5ffbc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #ecedf1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.wa-example-card:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08);
}

.wa-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wa-type-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.wa-type-card {
    background-color: #c5ffbc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #ecedf1;
    box-shadow: 0 8px 22px rgba(20, 22, 27, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wa-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
    border-color: #cdeaa0;
}

/* ---------- Role Grid ---------- */
.wa-role-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.wa-role-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.wa-role-item {
    background-color: #c5ffbc;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #ecedf1;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.wa-role-item:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 22, 27, 0.08);
}

.wa-role-item .wa-paragraph {
    text-align: center;
    margin-bottom: 0;
}

/* ---------- Feature Grid ---------- */
.wa-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wa-feature-card {
    background-color: #c5ffbc;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #ecedf1;
    box-shadow: 0 8px 22px rgba(20, 22, 27, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
}

/* ---------- Tech Grid ---------- */
.wa-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.wa-tech-card {
    background-color: #c5ffbc;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid #ecedf1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.wa-tech-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
}

/* ---------- Tables ---------- */
.wa-table-wrapper {
    margin-bottom: 24px;
    overflow-x: auto;
}

.wa-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(20, 22, 27, 0.05);
}

.wa-table th,
.wa-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 15px;
    border-bottom: 2px solid #eef0f4;
}

.wa-table th {
    background-color: #14161b;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 13px;
}

.wa-table tbody tr:hover {
    background-color: #f7fbf0;
}

/* ---------- Timeline (Process Steps) ---------- */
.wa-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 8px;
}

.wa-timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #91d904 0%, rgba(145, 217, 4, 0.1) 100%);
}

.wa-timeline__item {
    position: relative;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.wa-timeline__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background-color: #14161b;
    color: #91d904;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(20, 22, 27, 0.18);
}

.wa-timeline__body {
    background-color: #ffffff;
    border: 1px solid #ecedf1;
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(20, 22, 27, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wa-timeline__body:hover {
    box-shadow: 0 14px 32px rgba(20, 22, 27, 0.09);
    transform: translateY(-3px);
}

.wa-timeline__body .wa-h4 {
    margin-bottom: 6px;
}

/* ---------- CTA Blocks ---------- */
.wa-cta-block__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.wa-cta-block__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.wa-cta-block--final {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

/* ---------- FAQ Accordion ---------- */
.wa-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.wa-faq-item {
    background-color: #ffffff;
    border: 1px solid #ecedf1;
    border-radius: 14px;
    padding: 6px 22px;
    box-shadow: 0 6px 18px rgba(20, 22, 27, 0.04);
    transition: box-shadow 0.25s ease;
}

.wa-faq-item[open] {
    box-shadow: 0 12px 28px rgba(20, 22, 27, 0.09);
}

.wa-faq-item__question {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #14161b;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-faq-item__question::-webkit-details-marker {
    display: none;
}

.wa-faq-item__question::after {
    content: "+";
    font-size: 22px;
    color: #91d904;
    margin-left: 12px;
    transition: transform 0.25s ease;
}

.wa-faq-item[open] .wa-faq-item__question::after {
    transform: rotate(45deg);
}

.wa-faq-item__answer {
    padding: 0 0 18px;
}

/* ---------- Related Services Grid ---------- */
.wa-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wa-related-card {
    display: block;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #ecedf1;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(20, 22, 27, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wa-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 22, 27, 0.09);
    border-color: #cdeaa0;
}

.wa-related-card .wa-h4 {
    color: #14161b;
}

.wa-related-card .wa-paragraph {
    margin-bottom: 0;
    font-size: 14.5px;
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
===================================================================== */

@media (min-width: 1440px) {
    .wa-container {
        max-width: 1320px;
    }
}

/* Laptops */
@media (max-width: 1199px) {
    .wa-pillar-grid,
    .wa-type-grid,
    .wa-tech-grid,
    .wa-feature-grid,
    .wa-example-grid,
    .wa-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wa-role-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wa-benefit-grid,
    .wa-benefit-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 991px) {
    .wa-section {
        padding: 48px 0;
    }

    .wa-hero-block__grid,
    .wa-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wa-split--image-left .wa-split__image,
    .wa-split--content-left .wa-split__image {
        order: -1;
    }

    .wa-check-grid,
    .wa-role-grid,
    .wa-role-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .wa-bullet-list--two-col {
        grid-template-columns: 1fr;
    }

    .wa-timeline::before {
        left: 22px;
    }

    .wa-timeline__marker {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 15px;
    }
}

/* Small Tablets */
@media (max-width: 767px) {
    .wa-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .wa-section {
        padding: 40px 0;
    }

    .wa-pillar-grid,
    .wa-type-grid,
    .wa-tech-grid,
    .wa-feature-grid,
    .wa-example-grid,
    .wa-related-grid,
    .wa-check-grid,
    .wa-role-grid,
    .wa-role-grid--three,
    .wa-benefit-grid,
    .wa-benefit-grid--four {
        grid-template-columns: 1fr;
    }

    .wa-hero-block__cta,
    .wa-cta-block__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .wa-btn {
        width: 100%;
    }

    .wa-timeline__item {
        gap: 14px;
    }

    .wa-timeline__body {
        padding: 18px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .wa-h1 {
        font-size: 26px;
    }

    .wa-h2 {
        font-size: 22px;
    }

    .wa-h3 {
        font-size: 18px;
    }

    .wa-paragraph,
    .wa-bullet-list li {
        font-size: 14.5px;
    }

    .wa-content-card,
    .wa-insight-box,
    .wa-tech-card,
    .wa-type-card,
    .wa-feature-card,
    .wa-pillar-card {
        padding: 20px;
    }

    .wa-timeline__marker {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 13px;
    }

    .wa-check-item,
    .wa-benefit-card {
        padding: 12px 14px;
    }

    .wa-tag-chip {
        font-size: 12px;
        padding: 5px 12px;
    }
}