/* ==========================================================
   SQUINAL SERVICES PAGE
   Scoped styles for custom layouts
   ========================================================== */

/* Services Hero Section and variables scoping */
.sq-services-hero {
    --sq-services-ink: #101c13;
    /* Dark green-charcoal ink for high readability */
    --sq-services-muted: #303d34;
    /* Muted olive-grey for description text */
    --sq-services-green: #116b30;
    --sq-services-card-bg: rgba(248, 250, 247, 0.85);
    /* Glossy semi-transparent background */

    height: 86vh;
    /* Desktop height adjusted to 86vh */
    min-height: 660px;
    background-image: url('../images/service_cover.png');
    background-size: cover;
    background-position: right center;
    /* Align image right to prevent overlapping with people */
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 50px;
}

/* Glassmorphic card matching the reference design */
.sq-services-hero-card {
    background: var(--sq-services-card-bg) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 40px 38px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.05),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    max-width: 460px;
    width: 100%;
}

.sq-services-hero-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--sq-services-ink);
    margin-bottom: 28px;
    letter-spacing: -1.2px !important;
}

.sq-services-hero-title .highlight-green {
    color: var(--sq-services-green);
    font-weight: 800;
}

.sq-services-hero-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sq-services-hero-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sq-services-hero-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(17, 107, 48, 0.15);
}

.sq-services-hero-icon-wrap i {
    font-size: 16px;
    color: var(--sq-services-green);
}

.sq-services-hero-item-content {
    flex-grow: 1;
}

.sq-services-hero-item-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--sq-services-ink);
    margin-bottom: 2px;
    letter-spacing: -0.3px !important;
}

.sq-services-hero-item-desc {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--sq-services-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

/* ==========================================================
   Section: Complexity to Clarity (4-Box Layout)
   ========================================================== */
.sq-complexity-section {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.sq-section-tag {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #116b30;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.sq-section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -1.5px !important;
    margin-bottom: 20px;
}

.sq-section-desc {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.sq-underline {
    display: block;
    width: 45px;
    height: 3px;
    background: #116b30;
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Complexity 4-Column Grid */
.sq-complexity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    position: relative;
}

/* Card base styling - White matching main theme */
.sq-complexity-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 2;
}

.sq-complexity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(17, 107, 48, 0.15);
}

.sq-complexity-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64748b;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sq-complexity-card-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.3px !important;
}

.sq-complexity-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Solution Card (Box 4) - Highlighted Soft Green */
.sq-complexity-solution-card {
    background: #f0f7f2 !important;
    border: 1px solid rgba(17, 107, 48, 0.25) !important;
    box-shadow: 0 10px 30px rgba(17, 107, 48, 0.04) !important;
}

.sq-complexity-solution-card:hover {
    border-color: rgba(17, 107, 48, 0.4) !important;
    box-shadow: 0 15px 35px rgba(17, 107, 48, 0.08) !important;
}

.sq-complexity-solution-card .sq-complexity-icon-wrap {
    background: #116b30;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(17, 107, 48, 0.2);
    border-color: transparent;
}

.sq-complexity-solution-card .sq-complexity-card-title {
    color: #116b30;
}

.sq-complexity-solution-card .sq-complexity-card-desc {
    color: #356345;
    font-weight: 600;
}

/* Connecting Arrow Chevrons on Desktop */
@media (min-width: 992px) {
    .sq-complexity-card:not(:last-child)::after {
        content: "\f105";
        /* Font Awesome right angle/chevron */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        color: #cbd5e1;
        font-size: 18px;
        z-index: 5;
    }

    /* Green transition arrow pointing to Box 4 (Solution) */
    .sq-complexity-card:nth-child(3)::after {
        content: "\f061";
        /* Font Awesome right arrow */
        color: #116b30;
        font-size: 22px;
        right: -17px;
    }
}

/* ==========================================================
   Section: Stacked Cards Services (Folding Stack Animation)
   ========================================================== */
@media (min-width: 1200px) {
    .sq-services-stack-box {
        height: 600vh !important;
        /* Dynamic scroll runway for 6 full-screen cards */
    }

    .sq-services-stack-box .stack-item.stack-item-01 {
        z-index: 999;
    }

    .sq-services-stack-box .stack-item.stack-item-02 {
        z-index: 998;
    }

    .sq-services-stack-box .stack-item.stack-item-03 {
        z-index: 997;
    }

    .sq-services-stack-box .stack-item.stack-item-04 {
        z-index: 996;
    }

    .sq-services-stack-box .stack-item.stack-item-05 {
        z-index: 995;
    }

    .sq-services-stack-box .stack-item.stack-item-06 {
        z-index: 994;
    }
}

/* Base style overrides for clean cover layouts */
.sq-services-stack-box .stack-item {
    transition: height 0.1s linear;
    /* Smooth scaling during scroll collapsing */
}

.sq-services-stack-box .cover-background {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Fix mobile/tablet layout horizontal overflow and grid metrics */
@media (max-width: 1199px) {
    .sq-services-stack-box {
        overflow-x: hidden !important;
        width: 100% !important;
        height: auto !important;
    }

    .sq-services-stack-box .stack-item {
        overflow: hidden !important;
        width: 100% !important;
        height: auto !important;
    }

    .sq-services-stack-box .container-fluid {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .sq-services-stack-box .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

/* ==========================================================
   Section: Our Systems Delivery Architecture
   ========================================================== */
.sq-delivery-section {
    padding: 90px 0;
    background: #03121e;
    color: #ffffff;
}

.sq-delivery-section .sq-section-title {
    color: #ffffff;
}

.sq-delivery-section .sq-underline {
    background: #22c55e;
    /* Bright green accent for dark theme */
}

.sq-delivery-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

.sq-delivery-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

/* Timeline horizontal connecting bar */
.sq-delivery-timeline::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.sq-delivery-step {
    position: relative;
    z-index: 2;
}

.sq-delivery-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #091a29;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sq-delivery-step:hover .sq-delivery-node {
    border-color: #22c55e;
    color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.sq-delivery-step-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sq-delivery-step-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 25px;
    min-height: 52px;
}

.sq-delivery-lists {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.sq-delivery-list-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sq-delivery-list-label {
    font-size: 10px;
    font-weight: 800;
    text-uppercase;
    letter-spacing: 0.5px;
}

.sq-delivery-list-label.do {
    color: #38bdf8;
}

/* light blue */
.sq-delivery-list-label.input {
    color: #f43f5e;
}

/* light red */
.sq-delivery-list-label.output {
    color: #34d399;
}

/* light green */

.sq-delivery-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sq-delivery-list-items li {
    font-size: 11px;
    color: #cbd5e1;
    position: relative;
    padding-left: 10px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.sq-delivery-list-items li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================
   Section: Industries We Empower
   ========================================================== */
.sq-industries-section {
    padding: 90px 0;
    background: #ffffff;
}

.sq-industries-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sq-industries-link {
    font-size: 13px;
    font-weight: 700;
    color: #116b30;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.sq-industries-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.sq-industries-link:hover {
    color: #15803d;
}

.sq-industries-link:hover i {
    transform: translateX(4px);
}

.sq-industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.sq-industry-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.sq-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.sq-industry-image-wrap {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.sq-industry-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sq-industry-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sq-industry-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.sq-industry-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Green line indicator at card bottom */
.sq-industry-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #116b30;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sq-industry-card:hover::after {
    transform: scaleX(1);
}

/* ==========================================================
   Responsive Rules
   ========================================================== */
@media (max-width: 1199px) {
    .sq-complexity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 30px;
        /* Spacing below header when stacked */
    }

    .sq-complexity-card::after {
        display: none !important;
    }

    .sq-delivery-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .sq-delivery-timeline::before {
        display: none;
    }

    .sq-delivery-step-desc {
        min-height: auto;
    }

    .sq-industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .sq-services-hero {
        background-position: 75% center;
    }

    .sq-delivery-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .sq-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sq-services-hero {
        height: auto;
        min-height: 580px;
        padding-top: 100px;
        padding-bottom: 60px;
        background-position: 80% center;
    }

    .sq-services-hero-card {
        padding: 35px 25px;
        border-radius: 24px;
        margin: 0 auto;
    }

    .sq-services-hero-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .sq-services-hero-list {
        gap: 20px;
    }

    .sq-services-hero-icon-wrap {
        width: 46px;
        height: 46px;
    }

    .sq-services-hero-icon-wrap i {
        font-size: 16px;
    }

    .sq-complexity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sq-capabilities-mockup-wrapper {
        min-height: 320px;
        margin-bottom: 30px;
    }

    .sq-delivery-timeline {
        grid-template-columns: 1fr;
    }

    .sq-industry-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   Full-Width Split CTA Styling
   ========================================================== */
.sq-cta-section {
    background-color: #ffffff;
}

.sq-cta-left-panel {
    background-color: #080a10;
    background-image: linear-gradient(rgba(8, 10, 16, 0.72) 0%, rgba(8, 10, 16, 0.88) 100%), url('../images/indian_trust_banner.png');
    background-size: 175% !important;
    background-position: center 95% !important;
    background-repeat: no-repeat !important;
    padding: 80px 70px !important;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.sq-cta-right-panel {
    background-color: #f8fafc;
    padding: 80px 70px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.sq-cta-input {
    background: #ffffff !important;
    border: 1px solid rgba(5, 43, 63, 0.08) !important;
    border-radius: 8px !important;
    padding: 15px 22px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.sq-cta-input:focus {
    background: #ffffff !important;
    border-color: #116b30 !important;
    box-shadow: 0 0 0 4px rgba(17, 107, 48, 0.1) !important;
    outline: none !important;
}

.sq-cta-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 12px !important;
    appearance: none !important;
}

.sq-cta-btn {
    background-color: #116b30 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    cursor: pointer !important;
}

.sq-cta-btn:hover {
    background-color: #15803d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(21, 128, 61, 0.25) !important;
}

@media (max-width: 1199px) {

    .sq-cta-left-panel,
    .sq-cta-right-panel {
        padding: 60px 45px !important;
    }
}

@media (max-width: 991px) {
    .sq-cta-left-panel {
        min-height: auto;
        gap: 40px;
        background-size: 140% !important;
        background-position: center 85% !important;
    }

    .sq-cta-left-panel,
    .sq-cta-right-panel {
        padding: 50px 30px !important;
    }
}

/* =================================================================
   SQUINAL SERVICES HERO - EXACT MATCH (LIGHT THEME)
================================================================== */
.sq-exact-hero-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    /* Stretch columns to full height */
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    /* Offset for header spacing */
    padding-bottom: 0px;
}

/* Optional background image support */
.sq-exact-hero-section.has-bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sq-exact-hero-section.has-bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.sq-exact-hero-section>.container-fluid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Keeps image bottom side aligned */
    width: 100%;
    min-height: calc(100vh - 110px);
    padding-left: 14% !important;
    /* Spacing from left screen edge */
    padding-right: 0px !important;
}

.sq-exact-hero-section .row {
    width: 100%;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: stretch;
}

@media (min-width: 992px) {
    .sq-exact-hero-left-col {
        align-self: center;
        margin-top: -180px; /* Shift ONLY text area further upward toward navbar */
        padding-left: 0px !important;
        padding-right: 40px !important;
    }
    /* Responsively scale down the shift on smaller laptop heights to prevent navbar overlapping */
    @media (max-height: 850px) {
        .sq-exact-hero-left-col {
            margin-top: -110px;
        }
    }
    @media (max-height: 720px) {
        .sq-exact-hero-left-col {
            margin-top: -50px;
        }
    }

    .sq-exact-hero-right-col {
        align-self: flex-end; /* Keep image at the bottom side */
        display: flex;
        align-items: flex-end;
        padding-right: 3% !important; /* Spacing from right screen edge (shifted more into corner) */
        padding-bottom: 60px !important; /* White space at the bottom edge */
    }
}

.sq-exact-hero-tag {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 19px; /* Increased SERVICES font size */
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #116b30;
    display: block;
    margin-bottom: 10px;
}

.sq-exact-hero-line {
    width: 36px;
    height: 3px;
    background-color: #116b30;
    margin-bottom: 40px;
    border-radius: 2px;
}

.sq-exact-hero-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 35px;
}

.sq-exact-hero-desc {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
    max-width: 560px;
    /* Ample width to align exactly like original mockup */
    margin-bottom: 0px;
    font-weight: 500;
}

.sq-exact-hero-desc .sq-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.sq-exact-hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.sq-exact-hero-img {
    width: 100%;
    max-width: 680px; /* Decreased image size from 760px */
    height: auto;
    border-radius: 200px 200px 24px 200px;
    /* Exact mask identical to user screenshot */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    object-fit: cover;
    display: block;
    margin-bottom: 0px;
    /* Flush bottom */
}

@media (max-width: 1199px) {
    .sq-exact-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .sq-exact-hero-section {
        padding-top: 120px;
        padding-bottom: 0px;
        /* Keep image touching bottom on mobile */
        min-height: auto;
    }

    .sq-exact-hero-section>.container-fluid {
        min-height: auto;
        padding-left: 20px !important;
        /* standard padding for mobile */
        padding-right: 20px !important;
    }

    .sq-exact-hero-title {
        font-size: 36px;
    }

    .sq-exact-hero-desc {
        max-width: 100%;
        margin-bottom: 35px;
    }

    .sq-exact-hero-img-wrap {
        margin-top: 30px;
    }

    .sq-exact-hero-img {
        border-top-left-radius: 100px;
    }
}

@media (max-width: 575px) {
    .sq-exact-hero-title {
        font-size: 30px;
    }

    .sq-exact-hero-img {
        border-top-left-radius: 60px;
    }
}

/* Mobile title letters spacing fix (not compacted/colliding) */
@media (max-width: 767px) {
    .sq-exact-hero-title {
        letter-spacing: -0.5px !important;
        line-height: 1.25 !important;
    }
}

/* Responsive Card Capsule Labels for Core Capabilities */
.sq-card-capsule-wrapper {
    padding: 8px 18px !important;
    transition: all 0.3s ease;
}
.sq-card-capsule {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    white-space: nowrap;
}
@media (max-width: 1399px) and (min-width: 768px) {
    .sq-card-capsule-wrapper {
        padding: 6px 12px !important;
    }
    .sq-card-capsule {
        font-size: 9.5px !important;
        letter-spacing: 0.5px !important;
    }
}
@media (max-width: 575px) {
    .sq-card-capsule-wrapper {
        padding: 5px 10px !important;
    }
    .sq-card-capsule {
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }
}

/* =================================================================
   SQUINAL COMPARISON CARDS STYLING
================================================================== */
.sq-compare-row {
    position: relative;
}

.sq-compare-card-left,
.sq-compare-card-right {
    padding: 22px 26px !important;
    border-radius: 16px !important;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
}

.sq-compare-card-left {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.sq-compare-card-right {
    background-color: #f0fdf4 !important;
    border: 1px solid #dcfce7 !important;
}

/* Hover animations */
.sq-compare-card-left:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04) !important;
    border-color: #cbd5e1 !important;
}

.sq-compare-card-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.06) !important;
    border-color: #bbf7d0 !important;
}

/* Icon badge styling - fully inside the card and centered */
.sq-compare-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px !important; /* Kept nicely inside container */
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    flex-shrink: 0;
    z-index: 2;
}

.sq-compare-card-left .sq-compare-icon-badge {
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
}

.sq-compare-card-right .sq-compare-icon-badge {
    border: 1px solid #a7f3d0 !important;
    color: #10b981 !important;
}

/* Text details layout */
.sq-compare-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
    display: block !important;
}

.sq-compare-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #64748b !important;
    margin-bottom: 0px !important;
    display: block !important;
}

.sq-compare-card-left .sq-compare-title {
    color: #0f172a !important;
}

.sq-compare-card-right .sq-compare-title {
    color: #065f46 !important;
}

.sq-compare-card-right .sq-compare-desc {
    color: #047857 !important;
    opacity: 0.85;
}

/* Center Arrow circle styling */
.sq-compare-center-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* Responsive style adjustments for mobile side-by-side layout */
@media (max-width: 767px) {
    .sq-compare-card-left,
    .sq-compare-card-right {
        padding: 10px 12px !important;
        border-radius: 12px !important;
    }
    .sq-compare-icon-badge {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        margin-right: 8px !important;
        box-shadow: none !important;
    }
    .sq-compare-icon-badge i {
        font-size: 11px !important;
    }
    .sq-compare-title {
        font-size: 11px !important;
        margin-bottom: 2px !important;
    }
    .sq-compare-desc {
        font-size: 9px !important;
        line-height: 1.3 !important;
    }
    .sq-compare-center-arrow {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04) !important;
    }
    .sq-compare-center-arrow i {
        font-size: 10px !important;
    }
}

/* Slow auto-rotation animation for background circles */
@keyframes sqRotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sq-rotate-slow {
    animation: sqRotateSlow 45s linear infinite;
    transform-origin: center center;
}