/* --- CA OFFERINGS MATRIX STYLES --- */
.ca-services-offerings-wrapper {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.ca-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.ca-services-badge {
    color: #0047ab;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.ca-services-title-h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.ca-services-blue { color: #0047ab; }

/* The Matrix Grid */
.ca-services-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Column Staggering */
.ca-services-matrix-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ca-services-matrix-column:nth-child(2) {
    margin-top: 60px; /* Staggers the middle column down */
}

/* Card Design */
.ca-services-matrix-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: 0.4s ease;
}

.ca-services-matrix-card:hover {
    transform: translateY(-10px);
    border-color: #0047ab;
}

.ca-services-matrix-icon span {
    font-size: 45px;
    color: #0047ab;
    margin-bottom: 25px;
    font-variation-settings: 'FILL' 1;
}

.ca-services-matrix-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* The List Style */
.ca-services-list {
    list-style: none;
    padding: 0;
}

.ca-services-list li {
    font-size: 15px;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ca-services-list li::before {
    content: "•";
    color: #0047ab;
    font-weight: bold;
}

/* Image Overlaps */
.ca-services-matrix-image, .ca-services-matrix-image-top {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.ca-services-matrix-image img, .ca-services-matrix-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ca-services-glass-cta {
    background: rgba(0, 71, 171, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    border: 1px dashed #0047ab;
    text-align: center;
}

.ca-services-glass-cta a {
    text-decoration: none;
    font-weight: 800;
    color: #0047ab;
    font-size: 14px;
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.floating { animation: float 6s ease-in-out infinite; }
.floating-delayed { animation: float 6s ease-in-out infinite; animation-delay: 3s; }

/* Responsive */
@media (max-width: 992px) {
    .ca-services-matrix-grid { grid-template-columns: 1fr; }
    .ca-services-matrix-column:nth-child(2) { margin-top: 0; }
    .ca-services-matrix-image, .ca-services-matrix-image-top { height: 300px; order: -1; }
}



/* --- MSME & STARTUP CERTIFICATION STYLES --- */
.ca-services-certification-wrapper {
    padding: 100px 0;
    background-color: #ffffff;
}

.ca-services-cert-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Visual Side with Overlap */
.ca-services-cert-visual {
    flex: 1;
    position: relative;
}

.ca-services-cert-main-frame {
    width: 90%;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    position: relative;
}

.ca-services-cert-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Certification Card */
.ca-services-cert-overlay-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ca-services-cert-overlay-card span {
    background: #0047ab;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
}

.ca-services-cert-overlay-card h4 { font-size: 16px; margin: 0; color: #1a1a1a; }
.ca-services-cert-overlay-card p { font-size: 12px; margin: 0; opacity: 0.7; }

/* Content Side */
.ca-services-cert-content { flex: 1.2; }

.ca-services-cert-pill {
    background: #f0f4f9;
    color: #0047ab;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ca-services-cert-title {
    font-size: 48px;
    font-weight: 800;
    margin: 25px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.ca-services-accent-blue { color: #0047ab; }

.ca-services-cert-lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Benefits Grid */
.ca-services-cert-benefits-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.ca-services-cert-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.ca-services-cert-item:hover {
    background: #fdfdfd;
    border-color: #eee;
    transform: translateX(10px);
}

.ca-services-cert-item span {
    color: #0047ab;
    font-size: 32px;
    font-variation-settings: 'FILL' 1;
}

.ca-services-cert-text h3 { font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.ca-services-cert-text p { font-size: 14px; color: #777; margin: 0; }

.ca-services-cert-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 18px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    margin: 25px;
}

.ca-services-cert-btn:hover {
    background: #0047ab;
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.2);

}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ca-services-cert-grid { flex-direction: column; text-align: center; }
    .ca-services-cert-visual { order: 2; margin-top: 50px; }
    .ca-services-cert-main-frame { width: 100%; height: 400px; }
    .ca-services-cert-item { flex-direction: column; align-items: center; }
}


/* --- HOW IT WORKS STYLES --- */
.ca-services-process-wrapper {
    padding: 120px 0;
    background-color: #ffffff;
}

.ca-services-process-header {
    text-align: center;
    margin-bottom: 100px;
}

.ca-services-process-pill {
    color: #0047ab;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.ca-services-process-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.ca-services-process-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

/* The Connecting Line (Desktop Only) */
.ca-services-process-grid::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: repeating-linear-gradient(to right, #eee 0, #eee 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.ca-services-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ca-services-step-number {
    font-size: 14px;
    font-weight: 900;
    color: #0047ab;
    margin-bottom: 15px;
    opacity: 0.5;
}

.ca-services-step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.ca-services-process-step:hover .ca-services-step-icon {
    border-color: #0047ab;
    background: #0047ab;
    transform: scale(1.1);
}

.ca-services-process-step:hover .ca-services-step-icon span {
    color: #fff;
}

.ca-services-step-icon span {
    font-size: 32px;
    color: #0047ab;
    font-variation-settings: 'FILL' 1;
}

.ca-services-process-step h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.ca-services-process-step p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    padding: 0 10px;
}

/* Footer CTA Card */
.ca-services-process-footer {
    margin-top: 100px;
}

.ca-services-process-cta-card {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.ca-services-process-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    max-width: 400px;
}

.ca-services-btn-main {
    background: #fff;
    color: #1a1a1a;
    padding: 18px 45px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: 0.3s;
}

.ca-services-btn-main:hover {
    background: #0047ab;
    color: #fff;
}

.ca-services-cta-actions p {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ca-services-process-grid { flex-direction: column; gap: 50px; }
    .ca-services-process-grid::after { display: none; }
    .ca-services-process-cta-card { flex-direction: column; text-align: center; gap: 30px; }
}






/* --- WHY CHOOSE US STYLES --- */
.ca-services-why-wrapper {
    padding: 120px 0;
    background-color: #fbfbfc;
}

.ca-services-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Content Area */
.ca-services-why-pill {
    color: #0047ab;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.ca-services-why-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.ca-services-blue { color: #0047ab; }

.ca-services-why-lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Overlapping Image Composition */
.ca-services-why-image-overlap {
    position: relative;
    width: 100%;
}

.ca-services-why-main-img {
    width: 90%;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.ca-services-why-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ca-services-why-status-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 1px solid #fff;
}

.ca-services-why-status-card span {
    color: #0047ab;
    font-size: 32px;
}

/* Features Grid */
.ca-services-why-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ca-services-why-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    transition: 0.4s ease;
}

.ca-services-why-item:hover {
    border-color: #0047ab;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.ca-services-why-icon-pill {
    width: 50px;
    height: 50px;
    background: #f0f4f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ca-services-why-icon-pill span {
    color: #0047ab;
    font-size: 28px;
    font-variation-settings: 'FILL' 1;
}

.ca-services-why-item h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ca-services-why-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* Support Footer */
.ca-services-why-support-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.ca-services-support-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
}

.ca-services-support-badge span { color: #0047ab; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ca-services-why-grid { grid-template-columns: 1fr; }
    .ca-services-why-card-grid { grid-template-columns: 1fr; }
    .ca-services-why-main-img { width: 100%; }
}

@media (max-width: 768px) {

    /* Reduce Section Padding */
    .ca-services-offerings-wrapper,
    .ca-services-process-wrapper,
    .ca-services-why-wrapper {
        padding: 70px 0;
    }

    .ca-services-certification-wrapper {
        padding: 70px 0;
    }

    /* Reduce Big Headings */
    .ca-services-title-h2,
    .ca-services-cert-title,
    .ca-services-process-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .ca-services-why-title {
        font-size: 28px;
    }

    /* Matrix Grid Stack */
    .ca-services-matrix-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ca-services-matrix-column {
        gap: 25px;
    }

    .ca-services-matrix-card {
        padding: 30px 25px;
        border-radius: 25px;
    }

    /* Certification Section */
    .ca-services-cert-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .ca-services-cert-main-frame {
        height: 350px;
        border-radius: 25px;
    }

    .ca-services-cert-overlay-card {
        right: 0;
        left: 0;
        margin: auto;
        bottom: 20px;
    }

    /* Process Steps */
    .ca-services-process-grid {
        flex-direction: column;
        gap: 40px;
    }

    .ca-services-process-grid::after {
        display: none;
    }

    .ca-services-step-icon {
        width: 70px;
        height: 70px;
    }

    /* CTA Card */
    .ca-services-process-cta-card {
        flex-direction: column;
        padding: 40px 25px;
        gap: 25px;
        text-align: center;
        border-radius: 25px;
    }

    .ca-services-process-cta-card h3 {
        font-size: 22px;
    }

    /* WHY Section */
    .ca-services-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ca-services-why-main-img {
        width: 100%;
        height: 250px;
    }

    .ca-services-why-card-grid {
        grid-template-columns: 1fr;
    }

    .ca-services-why-item {
        padding: 25px;
        border-radius: 20px;
    }
}
@media (max-width: 480px) {

    .ca-services-title-h2,
    .ca-services-cert-title,
    .ca-services-process-title {
        font-size: 24px;
    }

    .ca-services-why-title {
        font-size: 22px;
    }

    .ca-services-cert-lead,
    .ca-services-why-lead {
        font-size: 14px;
    }

    .ca-services-btn-main,
    .ca-services-cert-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .ca-services-matrix-card {
        padding: 25px 20px;
    }

    .ca-services-matrix-image,
    .ca-services-matrix-image-top {
        height: 220px;
        border-radius: 20px;
    }

    .ca-services-cert-main-frame {
        height: 280px;
    }

    .ca-services-process-cta-card {
        padding: 30px 20px;
    }
}
