/* ==========================================================================
   Squinal Custom Homepage Add-ons
   Professional technology company layout extensions
   ========================================================================== */

/* Variables / Themes */
:root {
    --sq-font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --sq-accent-blue: #1a73e8;
    --sq-accent-green: #0f9d58;
    --sq-accent-yellow: #f4b400;
    --sq-accent-orange: #ff5722;
    --sq-accent-violet: #673ab7;
    --sq-accent-red: #db4437;
    --sq-dark-neutral: #131416;
    --sq-dark-card-bg: rgba(255, 255, 255, 0.03);
    --sq-border-light: rgba(35, 35, 35, 0.08);
}

/* Global Unified Typography System */
body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
button,
input,
select,
textarea {
    font-family: var(--sq-font-main) !important;
}

h1,
.h1 {
    font-weight: 800 !important;
    letter-spacing: -2px !important;
}

h2,
.h2 {
    font-weight: 800 !important;
    letter-spacing: -1.5px !important;
}

h3,
.h3 {
    font-weight: 700 !important;
    letter-spacing: -1px !important;
}

h4,
.h4,
h5,
.h5 {
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

/* ==========================================================================
   1. Industries Section
   ========================================================================== */
.sq-industries-section {
    background-color: #fafbfc;
    border-top: 1px solid var(--sq-border-light);
    border-bottom: 1px solid var(--sq-border-light);
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

/* Spacious headings overrides */
.sq-industries-section h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

@media (max-width: 767px) {
    .sq-industries-section h2 {
        font-size: 32px;
    }
}

/* Industry Tab List Left */
.sq-industry-tab-list {
    border-right: 1px solid var(--sq-border-light);
    padding-right: 30px;
}

@media (max-width: 991px) {
    .sq-industry-tab-list {
        border-right: none;
        padding-right: 0;
        margin-bottom: 40px;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

.sq-industry-tab-item {
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    padding: 18px 20px;
    text-align: left;
    width: 100%;
    color: #6c757d;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 991px) {
    .sq-industry-tab-item {
        width: auto;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 18px;
        border-radius: 6px;
        background: #f1f3f5;
    }
}

.sq-industry-tab-item:hover {
    color: var(--dark-gray);
    background-color: rgba(35, 35, 35, 0.03);
    padding-left: 25px;
}

@media (max-width: 991px) {
    .sq-industry-tab-item:hover {
        padding-left: 18px;
        background-color: rgba(35, 35, 35, 0.05);
    }
}

.sq-industry-tab-item.active {
    color: var(--dark-gray) !important;
    background-color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sq-industry-tab-item.active[data-industry="healthcare"] {
    border-left-color: var(--sq-accent-blue);
}

.sq-industry-tab-item.active[data-industry="education"] {
    border-left-color: var(--sq-accent-green);
}

.sq-industry-tab-item.active[data-industry="manufacturing"] {
    border-left-color: var(--sq-accent-yellow);
}

.sq-industry-tab-item.active[data-industry="retail"] {
    border-left-color: var(--sq-accent-orange);
}

.sq-industry-tab-item.active[data-industry="services"] {
    border-left-color: var(--sq-accent-violet);
}

.sq-industry-tab-item.active[data-industry="enterprise"] {
    border-left-color: var(--sq-accent-red);
}

@media (max-width: 991px) {
    .sq-industry-tab-item.active {
        border-left-color: transparent !important;
        background-color: var(--dark-gray) !important;
        color: #ffffff !important;
    }
}

/* Tab Pane Styling */
.sq-industry-pane-container {
    padding: 20px 0 20px 40px;
}

@media (max-width: 991px) {
    .sq-industry-pane-container {
        padding: 0;
    }
}

.sq-industry-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.sq-industry-badge.bg-healthcare {
    background: rgba(26, 115, 232, 0.08);
    color: var(--sq-accent-blue);
}

.sq-industry-badge.bg-education {
    background: rgba(15, 157, 88, 0.08);
    color: var(--sq-accent-green);
}

.sq-industry-badge.bg-manufacturing {
    background: rgba(244, 180, 0, 0.08);
    color: var(--sq-accent-yellow);
}

.sq-industry-badge.bg-retail {
    background: rgba(255, 87, 34, 0.08);
    color: var(--sq-accent-orange);
}

.sq-industry-badge.bg-services {
    background: rgba(103, 58, 183, 0.08);
    color: var(--sq-accent-violet);
}

.sq-industry-badge.bg-enterprise {
    background: rgba(219, 68, 55, 0.08);
    color: var(--sq-accent-red);
}

.sq-industry-solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.sq-industry-pill {
    font-size: 13px;
    font-weight: 500;
    color: #495057;
    background: #f1f3f5;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Image styling in Tab Pane */
.sq-industry-image-container {
    border-radius: 12px;
    border: 1px solid var(--sq-border-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.4s ease;
}

.sq-industry-image-container:hover {
    transform: scale(1.02);
}

.sq-industry-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. Restored Indian Tech Trust & Scale Section
   ========================================================================== */
.sq-trust-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--sq-border-light);
    padding-top: 120px !important;
    padding-bottom: 100px !important;
}

.sq-trust-img-container {
    border-radius: 16px;
    border: 1px solid var(--sq-border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background: #f8f9fa;
    margin-top: 30px;
}

.sq-trust-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats list right side */
.sq-stats-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sq-stat-card {
    background: #fafbfc;
    border: 1px solid var(--sq-border-light);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.sq-stat-card:hover {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(35, 35, 35, 0.15);
    transform: translateY(-2px);
}

.sq-stat-number {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-gray);
    letter-spacing: -2px;
    min-width: 110px;
    display: flex;
    align-items: flex-start;
}

.sq-stat-number sup {
    font-size: 22px;
    top: -5px;
    color: var(--sq-accent-blue);
    font-weight: 600;
}

.sq-stat-info {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
    line-height: 1.4;
}

/* Brand Trust Logo Marquee */
.sq-clients-marquee {
    display: flex;
    align-items: center;
}

.sq-clients-marquee .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 60px !important;
    padding: 0 15px !important;
}

.sq-clients-marquee a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
}

.sq-clients-marquee img {
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: none !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.sq-clients-marquee .swiper-slide:hover img,
.sq-clients-marquee a:hover img,
.sq-clients-marquee img:hover {
    opacity: 0.88 !important;
    transform: scale(1.08);
}

/* Zoho Values Title Container */
.sq-zoho-values-title-container h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: -1px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.sq-zoho-values-title-container .divider {
    display: block;
    width: 40px;
    height: 3px;
    background-color: #db4437;
    border-radius: 2px;
    margin-bottom: 0;
}

/* Trust image border override */
.sq-trust-img-container {
    border-radius: 12px;
    border: 1px solid var(--sq-border-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* ==========================================================================
   Core Values Section (Layer 1 - Solid Black Background)
   ========================================================================== */
.sq-final-cta-section {
    position: relative;
    background-color: #050507;
    padding-top: 140px !important;
    padding-bottom: 140px !important;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Subtle Overhead Spotlight Focus */
.sq-final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200, 225, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Soft Blue-White Spotlight Radial Glow Behind Content */
.sq-final-cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(100, 160, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Layer 2 â€” Low-Opacity Torch-Lighting Effects (Behind Cards) */
.sq-cta-glow-orb-1 {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.08) 0%, rgba(56, 125, 255, 0.03) 45%, transparent 70%);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: sqBreathingLight1 12s ease-in-out infinite alternate;
}

.sq-cta-glow-orb-2 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(186, 85, 211, 0.06) 0%, rgba(138, 43, 226, 0.03) 45%, transparent 70%);
    filter: blur(130px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: sqBreathingLight2 15s ease-in-out infinite alternate;
}

.sq-cta-glow-orb-3 {
    position: absolute;
    bottom: -15%;
    left: 30%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(251, 188, 5, 0.05) 0%, rgba(255, 140, 0, 0.02) 50%, transparent 75%);
    filter: blur(110px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: sqBreathingLight3 10s ease-in-out infinite alternate;
}

@keyframes sqBreathingLight1 {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(25px, -15px) scale(1.08);
    }
}

@keyframes sqBreathingLight2 {
    0% {
        opacity: 0.5;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0.9;
        transform: translate(-30px, 20px) scale(1.1);
    }
}

@keyframes sqBreathingLight3 {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.sq-final-cta-section .container {
    position: relative;
    z-index: 2;
}

.sq-final-cta-section .sq-cta-left-col {
    display: flex;
    align-items: stretch;
}

/* Layer 3 â€” Core Values Cards & Image Container */
.sq-zoho-card-dark {
    position: relative;
    background-color: #0c0d12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85);
    height: 100%;
    overflow: hidden;
    z-index: 3;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sq-zoho-card-dark:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.95);
}

.sq-globe-card {
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 18px !important;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    transition: transform 0.4s ease;
}

.sq-globe-card:hover {
    transform: translateY(-4px);
    border: none !important;
    box-shadow: none !important;
}

.sq-globe-card img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
    border-radius: 18px !important;
}

@media (min-width: 992px) {

    .sq-final-cta-section .sq-cta-left-col,
    .sq-combined-core-cta-section .sq-cta-left-col {
        margin-left: -35px !important;
        padding-right: 25px !important;
    }
}

.sq-zoho-card-dark {
    padding: 50px 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sq-zoho-card-dark h2 {
    color: #ffffff !important;
}

.sq-zoho-card-dark .sq-zoho-value-title {
    color: #ffffff !important;
}

.sq-zoho-card-dark .sq-zoho-value-desc {
    color: rgba(255, 255, 255, 0.65) !important;
}

.sq-zoho-card-dark .sq-zoho-value-icon {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.sq-zoho-card-dark .btn-dark-gray {
    background: #ffffff !important;
    color: #0d0e10 !important;
    border: 1px solid #ffffff !important;
    transition: all 0.3s ease;
}

.sq-zoho-card-dark .btn-dark-gray:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

@media (max-width: 991px) {
    .sq-final-cta-section {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
        min-height: auto;
    }

    .sq-zoho-card-dark {
        padding: 32px 30px;
    }

    .sq-globe-card {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .sq-final-cta-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .sq-zoho-card-dark {
        padding: 28px 22px;
    }

    .sq-globe-card {
        min-height: 280px;
    }
}

/* ==========================================================================
   3. Core Values & Principles Section
   ========================================================================== */
.sq-principles-section {
    background-color: #fafbfc;
    border-bottom: 1px solid var(--sq-border-light);
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.sq-sticky-principles-col {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .sq-sticky-principles-col {
        position: static;
        margin-bottom: 50px;
    }
}

.sq-principles-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
}

/* Stacking cards system on scroll (Obsolete custom implementation commented out to avoid conflict with Crafto Stack Card system)
.sq-principle-card {
    position: -webkit-sticky;
    position: sticky;
    background: #ffffff;
    border: 1px solid var(--sq-border-light);
    border-radius: 14px;
    padding: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.sq-principle-card:nth-child(1) {
    top: 120px;
    z-index: 1;
}

.sq-principle-card:nth-child(2) {
    top: 150px;
    z-index: 2;
}

.sq-principle-card:nth-child(3) {
    top: 180px;
    z-index: 3;
}

.sq-principle-card:nth-child(4) {
    top: 210px;
    z-index: 4;
}

.sq-principle-card:nth-child(5) {
    top: 240px;
    z-index: 5;
}

.sq-principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
    border-color: rgba(35, 35, 35, 0.18);
}

.sq-principle-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

.sq-principle-card:hover::before {
    width: 6px;
}

@media (max-width: 991px) {
    .sq-principle-card {
        position: relative !important;
        top: auto !important;
        padding: 40px;
        margin-bottom: 24px;
    }

    .sq-principle-card:last-child {
        margin-bottom: 0;
    }
}

.sq-principle-card-number {
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
    color: #ced4da;
    margin-bottom: 20px;
    font-family: var(--alt-font);
    transition: color 0.3s ease;
}

.sq-principle-card:hover .sq-principle-card-number {
    color: var(--sq-accent-blue);
}

.sq-principle-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.sq-principle-card-desc {
    font-size: 16px;
    line-height: 26px;
    color: #6c757d;
    margin-bottom: 0;
}
*/

/* ==========================================================================
   4. Final CTA Section & Zoho Values Integration
   ========================================================================== */
.sq-zoho-values-section {
    background-color: #f8f9fa;
    padding-top: 110px !important;
    padding-bottom: 110px !important;
    border-top: 1px solid var(--sq-border-light);
    border-bottom: 1px solid var(--sq-border-light);
    position: relative;
    overflow: hidden;
}

.sq-zoho-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
}

@media (max-width: 767px) {
    .sq-zoho-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.sq-zoho-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sq-zoho-value-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: #f5f5f5;
    border: 1px solid var(--sq-border-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sq-zoho-value-item:hover .sq-zoho-value-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    border-color: rgba(35, 35, 35, 0.15);
}

.sq-zoho-value-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.sq-zoho-value-desc {
    font-size: 13px;
    line-height: 19px;
    color: #6c757d;
    margin-bottom: 0;
}

/* ==========================================================================
   5. 5-Column Stats Grid
   ========================================================================== */
.sq-stats-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border-top: 1px solid var(--sq-border-light);
    border-bottom: 1px solid var(--sq-border-light);
}

.sq-stat-col {
    padding: 45px 25px;
    border-right: 1px solid var(--sq-border-light);
    text-align: center;
    transition: background 0.3s ease;
}

.sq-stat-col:last-child {
    border-right: none;
}

.sq-stat-col:hover {
    background: rgba(0, 0, 0, 0.005);
}

.sq-stat-col-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.sq-stat-col-num sup {
    color: var(--sq-accent-blue);
    font-size: 18px;
    font-weight: 600;
    top: -5px;
    margin-left: 2px;
}

.sq-stat-col-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .sq-stats-5col {
        grid-template-columns: repeat(3, 1fr);
    }

    .sq-stat-col:nth-child(3) {
        border-right: none;
    }

    .sq-stat-col:nth-child(4),
    .sq-stat-col:nth-child(5) {
        border-top: 1px solid var(--sq-border-light);
    }
}

@media (max-width: 767px) {
    .sq-stats-5col {
        grid-template-columns: repeat(2, 1fr);
    }

    .sq-stat-col {
        border-right: 1px solid var(--sq-border-light) !important;
    }

    .sq-stat-col:nth-child(2n) {
        border-right: none !important;
    }

    .sq-stat-col:nth-child(3),
    .sq-stat-col:nth-child(4),
    .sq-stat-col:nth-child(5) {
        border-top: 1px solid var(--sq-border-light);
    }
}

@media (max-width: 480px) {
    .sq-stats-5col {
        grid-template-columns: 1fr;
    }

    .sq-stat-col {
        border-right: none !important;
        border-top: 1px solid var(--sq-border-light);
    }

    .sq-stat-col:first-child {
        border-top: none;
    }
}

/* ==========================================================================
   6. Simple & Clean CTA Section
   ========================================================================== */
.sq-simple-cta-image img {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.sq-simple-cta-image:hover img {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15) !important;
}

/* Footer Adjustments for Clean & Compact Layout */
footer.footer-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 11, 28, 0.96) 0%, rgba(6, 5, 12, 0.99) 100%), url('../images/demo-branding-studio-footer-bg-img.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Glowing blobs behind the logo & footer content */
footer.footer-dark::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(115, 68, 226, 0.12) 0%, rgba(115, 68, 226, 0) 70%) !important;
    z-index: 1;
    pointer-events: none;
}

footer.footer-dark::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.06) 0%, rgba(0, 242, 254, 0) 70%) !important;
    z-index: 1;
    pointer-events: none;
}

/* Compact Vertical Spacing for Footer Links */
footer.footer-dark ul li {
    margin-bottom: 2px !important;
}

footer.footer-dark ul li a {
    font-size: 14px !important;
    line-height: 20px !important;
    display: inline-block;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
    z-index: 2;
}

footer.footer-dark ul li a:hover {
    color: #fff !important;
    transform: translateX(4px);
}

/* Sleek bottom social links with glowing borders */
footer.footer-dark .footer-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

footer.footer-dark .footer-social-icon a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
    z-index: 2;
}

footer.footer-dark .footer-social-icon a:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Hide the Envato / 56+ pre-built sites floating demos widget */
.theme-demos {
    display: none !important;
}

/* Color Gradient Bar for Footer CTA Card */
.bg-gradient-flamingo-amethyst-green {
    background: linear-gradient(to right, #E91E63 0%, #9C27B0 50%, #009688 100%) !important;
}

/* Security & Compliance Trust Badges styling */
.sq-trust-badge {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    user-select: none;
}

.sq-trust-badge:hover {
    background: #ffffff;
    border-color: #2b2b2b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* ==========================================================================
   7. Combined Core Values & CTA Section (Single Background Image & Corner Art)
   ========================================================================== */
.sq-combined-core-cta-section {
    --sq-cta-bg-height: 500px;
    /* <-- CHANGE THIS HEIGHT (e.g., 600px, 750px, 900px, 100%) TO CONTROL IMAGE HEIGHT */
    position: relative;
    background-color: #000000 !important;
    background-image: url('../images/cta.png') !important;
    background-size: auto var(--sq-cta-bg-height) !important;
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
    overflow: hidden;
}

.sq-cta-section-wrapper {
    --sq-cta-bg-height: 750px;
    position: relative;
    background-color: #000000 !important;
    background-image: url('../images/cta.png') !important;
    background-size: auto var(--sq-cta-bg-height) !important;
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.sq-combined-core-cta-section .container,
.sq-cta-section-wrapper .container {
    position: relative;
    z-index: 2;
}

/* Translucent Dark Glass Cards - Lets Background Image Corner Art Shine Through */
.sq-dark-glass-card {
    background: rgba(10, 16, 30, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    overflow: hidden !important;
}

/* Translucent Dark Form Controls for Dark Glass Cards */
.sq-dark-glass-card input.form-control,
.sq-dark-glass-card select.form-select,
.sq-dark-glass-card textarea.form-control {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
    height: 42px !important;
    transition: all 0.2s ease-in-out !important;
}

.sq-dark-glass-card textarea.form-control {
    height: 56px !important;
    resize: none !important;
}

.sq-dark-glass-card input.form-control::placeholder,
.sq-dark-glass-card textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.sq-dark-glass-card select.form-select {
    color: rgba(255, 255, 255, 0.5) !important;
}

.sq-dark-glass-card select.form-select option {
    background-color: #0f172a !important;
    color: #ffffff !important;
}

.sq-dark-glass-card input.form-control:focus,
.sq-dark-glass-card select.form-select:focus,
.sq-dark-glass-card textarea.form-control:focus {
    border-color: var(--sq-accent-blue) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.25) !important;
    outline: none !important;
    color: #ffffff !important;
}

@media (min-width: 992px) {
    .sq-equal-height-row {
        display: flex !important;
        align-items: stretch !important;
    }

    .sq-equal-height-col {
        display: flex !important;
        flex-direction: column !important;
    }

    .sq-cta-slider-card {
        height: 100% !important;
        min-height: 400px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .sq-cta-slider-card .swiper,
    .sq-cta-slider-card .swiper-container {
        height: 100% !important;
        min-height: 400px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .sq-cta-slider-card .swiper-wrapper {
        height: 100% !important;
        min-height: 400px !important;
    }

    .sq-cta-slider-card .swiper-slide {
        height: 100% !important;
        min-height: 400px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .sq-cta-slider-card .sq-slide-img {
        flex: 1 1 200px !important;
        height: 200px !important;
        min-height: 200px !important;
        width: 100% !important;
    }

    .sq-cta-slider-card .sq-slide-content {
        flex: 0 0 auto !important;
        height: auto !important;
        width: 100% !important;
        padding: 22px 25px !important;
        background: transparent !important;
    }

    .sq-cta-form-card {
        height: 100% !important;
        min-height: 400px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 25px 28px !important;
    }
}

@media (max-width: 991px) {
    .sq-cta-slider-card .sq-slide-img {
        height: 200px !important;
        min-height: 200px !important;
    }
}

/* ==========================================================================
   Industry We Serve - Dark Green Theme (Reference Image 1)
   ========================================================================== */
.sq-industry-section-dark-green {
    background-color: #034b35 !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .sq-industry-section-dark-green {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* Main Header Title */
.sq-ind-title-main {
    font-size: 48px;
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -1.5px;
    margin-bottom: 0;
    min-height: 115px; /* Pre-allocated space for 2 lines so section height never jumps during typing */
    display: block;
}

@media (max-width: 991px) {
    .sq-ind-title-main {
        font-size: 34px;
        letter-spacing: -1px;
        min-height: 82px;
    }
}

@media (max-width: 575px) {
    .sq-ind-title-main {
        font-size: 28px;
        letter-spacing: -0.8px;
        min-height: 68px;
    }
}

/* Top Horizontal Nav Pills Bar Capsule (Desktop) */
.sq-ind-pills-bar-capsule {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px !important;
    padding: 6px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.sq-ind-pill-tab {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 25px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
}

.sq-ind-pill-tab i {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.sq-ind-pill-tab:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.sq-ind-pill-tab.active {
    background-color: #ffc107 !important;
    color: #111111 !important;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(255, 193, 7, 0.4);
}

.sq-ind-pill-tab.active i {
    color: #111111 !important;
}

/* Tab Headline (Smaller & Less Bold) */
.sq-ind-tab-headline {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Paragraph Description */
.sq-ind-tab-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 24px;
}

/* Text Link with Underline / Arrow */
.sq-ind-text-link {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: underline !important;
    text-underline-offset: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.sq-ind-text-link:hover {
    color: #ffc107 !important;
    text-underline-offset: 8px !important;
}

/* Sub-feature Badge Cards (Horizontal Badge Shape) */
.sq-ind-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.sq-ind-feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sq-ind-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.sq-ind-feature-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border: none;
    margin-bottom: 0;
    flex-shrink: 0;
}

.sq-ind-feature-label {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

/* Dashboard Browser Window Frame & Subtle Glowing Green Aura */
/* Direct Transparent Showcase Images (Real Aspect Ratio, Pixel-Crisp, No Scaling Blur) */
.sq-browser-frame-container,
.sq-ind-image-showcase {
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sq-browser-frame-container:hover,
.sq-ind-image-showcase:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.sq-browser-frame-container img,
.sq-ind-image-showcase img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    transform: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

@keyframes sqDashboardZoomIn {
    0% {
        transform: scale(0.93);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tab-pane.active .sq-browser-frame-container,
.accordion-collapse.show .sq-browser-frame-container {
    animation: sqDashboardZoomIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Mobile Accordion Cards - Dark Green & Gold Harmonized Theme */
.sq-ind-accordion-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sq-ind-accordion-button {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 16px 20px !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.sq-ind-accordion-button i.feather {
    color: #ffc107 !important;
}

.sq-ind-accordion-button:not(.collapsed) {
    background: #056548 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.sq-ind-accordion-button:not(.collapsed) i.feather {
    color: #ffc107 !important;
}

.sq-ind-accordion-button i.arrow-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sq-ind-accordion-button:not(.collapsed) i.arrow-icon {
    transform: rotate(90deg);
    color: #ffc107 !important;
}

/* Mobile Accordion Expanded Body Color Fixes */
.sq-ind-accordion-item .accordion-collapse {
    background: rgba(0, 0, 0, 0.15);
}

.sq-ind-accordion-item .sq-ind-tab-headline {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}

.sq-ind-accordion-item .sq-ind-tab-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
}

.sq-ind-accordion-item .sq-ind-feature-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.sq-ind-accordion-item .sq-ind-feature-label {
    color: #ffffff !important;
}

.sq-ind-accordion-item .sq-ind-feature-icon-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffc107 !important;
}

.sq-ind-accordion-item .sq-ind-text-link {
    color: #ffc107 !important;
    font-weight: 700 !important;
}

/* Typing Animation Cursor */
.sq-typing-cursor {
    display: inline-block;
    color: #ffc107;
    font-weight: 300;
    margin-left: 3px;
    animation: sqBlinkCursor 0.8s infinite;
}

@keyframes sqBlinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.sq-typing-cursor.finished {
    animation: sqFadeCursor 1.5s forwards;
}

@keyframes sqFadeCursor {
    0% { opacity: 1; }
    100% { opacity: 0; display: none; }
}


/* ==========================================================================
   Enterprise Security & Scale Pillars (Inspired by Zoho Platform Pillars)
   ========================================================================== */
.sq-enterprise-pillars-section {
    background-color: #0b0f19 !important;
    color: #ffffff !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .sq-enterprise-pillars-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

.sq-pillar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sq-pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 204, 0, 0.15);
}

.sq-pillar-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 204, 0, 0.12);
    color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 204, 0, 0.25);
}

.sq-pillar-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sq-pillar-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* ==========================================================================
   Pre-Footer Compact 1-Line Trust & CTA Bar
   ========================================================================== */
.sq-prefooter-compact-bar {
    background-color: #fafbfc !important;
    padding-top: 45px !important;
    padding-bottom: 45px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sq-prefooter-cta-btn {
    background-color: #111111 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.sq-prefooter-cta-btn:hover {
    background-color: #000000 !important;
    color: #ffcc00 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}

/* ==========================================================================
   Squinal Moving Forward & Enterprise Showcase Section (Zoho Style)
   ========================================================================== */
.sq-trust-section-enhanced {
    background-color: #ffffff !important;
    padding-top: 100px !important;
    padding-bottom: 180px !important;
    position: relative;
    border-bottom: none !important;
    border-radius: 0px !important;
}

@media (max-width: 991px) {
    .sq-trust-section-enhanced {
        padding-top: 60px !important;
        padding-bottom: 50px !important;
    }
}

/* Enterprise Showcase Section (Split background gradient: top is pure white, bottom is soft light grey) */
.sq-enterprise-showcase-section {
    background: linear-gradient(to bottom, #ffffff 140px, #f4f6f8 140px) !important;
    padding-top: 0 !important;
    padding-bottom: 110px !important;
    position: relative;
}

@media (max-width: 991px) {
    .sq-enterprise-showcase-section {
        background: linear-gradient(to bottom, #ffffff 150px, #f4f6f8 150px) !important;
        padding-bottom: 70px !important;
    }
}

/* Outer Container for Slider (Aligns exactly with the top of Enterprise section) */
.sq-story-slider-outer-container {
    position: relative;
    margin-top: -140px !important;
    z-index: 20;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .sq-story-slider-outer-container {
        margin-top: 0 !important;
    }
}

.sq-story-slider-wrapper {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 991px) {
    .sq-story-slider-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.sq-story-swiper {
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.sq-story-card-slide {
    background: #fff6ec;
    width: 100%;
    min-height: 270px;
    height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sq-story-card-slide.dark-theme {
    background: #0b0d10;
    color: #ffffff;
}

.sq-story-card-inner {
    padding: 35px 50px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 991px) {
    .sq-story-card-slide {
        min-height: 300px;
        height: auto;
    }

    .sq-story-card-inner {
        padding: 30px 20px !important;
        text-align: center;
    }
}

.sq-story-card-title {
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    color: #111111 !important;
    letter-spacing: -1.2px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.sq-story-card-slide.dark-theme .sq-story-card-title {
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .sq-story-card-title {
        font-size: 24px !important;
        letter-spacing: -0.8px !important;
    }
}

.sq-story-card-img {
    object-fit: cover;
    min-height: 270px;
    height: 280px;
}

@media (max-width: 991px) {
    .sq-story-card-img {
        min-height: 200px;
        max-height: 240px;
        height: auto;
    }
}

/* Professional Spacing Row for "Squinal for Enterprise" Content */
.sq-enterprise-content-row {
    margin-top: 100px !important;
}

@media (max-width: 991px) {
    .sq-enterprise-content-row {
        margin-top: 60px !important;
    }
}

.sq-story-pill-btn {
    background: #111111 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 13px 28px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    border: 1.5px solid #111111 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
    width: fit-content !important;
    line-height: 1 !important;
}

.sq-story-pill-btn:hover {
    background: #e21a22 !important;
    border-color: #e21a22 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(226, 26, 34, 0.28) !important;
}

.sq-story-card-slide.dark-theme .sq-story-pill-btn {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: #ffffff !important;
}

.sq-story-card-slide.dark-theme .sq-story-pill-btn:hover {
    background: #e21a22 !important;
    border-color: #e21a22 !important;
    color: #ffffff !important;
}

/* Floating Navigation Arrows */
.sq-story-arrow-prev,
.sq-story-arrow-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sq-story-arrow-prev {
    left: 0;
}

.sq-story-arrow-next {
    right: 0;
}

.sq-story-arrow-prev:hover,
.sq-story-arrow-next:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 991px) {

    .sq-story-arrow-prev,
    .sq-story-arrow-next {
        position: static;
        transform: none;
        display: inline-flex;
        margin: 20px 8px 0 8px;
    }

    .sq-story-mobile-nav {
        text-align: center;
        margin-top: 10px;
    }
}

/* Bottom "Squinal for Enterprise" Row */
.sq-enterprise-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a73e8 0%, #0f9d58 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.25);
}

@media (max-width: 991px) {
    .sq-enterprise-badge-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.sq-enterprise-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 15px !important;
}

@media (max-width: 767px) {
    .sq-enterprise-title {
        font-size: 28px !important;
        letter-spacing: -1px !important;
    }
}

.sq-enterprise-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 25px;
}

.sq-btn-outline-blue {
    border: 1px solid #1a73e8 !important;
    background: transparent !important;
    color: #1a73e8 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    padding: 10px 24px !important;
    border-radius: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.sq-btn-outline-blue:hover {
    background: #1a73e8 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2) !important;
}

.sq-quote-text {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif !important;
    font-size: 21px !important;
    line-height: 1.65 !important;
    color: #2b2b2b !important;
    font-style: normal !important;
    letter-spacing: -0.1px !important;
    margin-bottom: 25px !important;
    text-align: left !important;
}

.sq-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sq-author-name {
    font-size: 17px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 2px;
}

.sq-author-role {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.sq-read-story-link {
    font-size: 13px;
    font-weight: 800;
    color: #1a73e8;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    transition: all 0.3s ease;
}

.sq-read-story-link:hover {
    color: #0d47a1;
    gap: 8px;
}

/* ==========================================================================
   Squinal Technology Core Orb Scoped Component Styles
   ========================================================================== */

:root {
    --sq-orb-blue: #1a73e8;
    --sq-orb-orange: #fb923c;
    --sq-orb-red: #e1251b;
    --sq-orb-shadow-color: rgba(19, 20, 22, 0.12);
}

.squinal-hero-section {
    height: calc(100vh - 91px) !important;
    min-height: calc(100vh - 91px) !important;
    display: flex !important;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .squinal-hero-section {
        height: calc(100vh - 80px) !important;
        min-height: calc(100vh - 80px) !important;
    }
}

@media (max-width: 991px) {
    .squinal-hero-section {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
}

.squinal-hero-orb-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    animation: orb-floating 6s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Float animation for the entire orb container */
@keyframes orb-floating {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.01);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

/* 3D Ground Shadow Reflections */
.squinal-hero-orb-shadows {
    position: absolute;
    bottom: -20px;
    width: 76%;
    height: 30px;
    left: 12%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.squinal-hero-orb-shadow {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
}

.squinal-hero-orb-shadow--contact {
    background: rgba(19, 20, 22, 0.35);
    filter: blur(6px);
    transform: scaleX(0.7) scaleY(0.4);
    animation: shadow-contact-shrink 6s ease-in-out infinite;
}

.squinal-hero-orb-shadow--blue {
    background: radial-gradient(circle, rgba(26, 115, 232, 0.3) 0%, rgba(26, 115, 232, 0) 70%);
    filter: blur(12px);
    transform: scaleX(0.9) scaleY(0.6);
    animation: shadow-glow-shrink 6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.squinal-hero-orb-shadow--orange {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.25) 0%, rgba(251, 146, 60, 0) 75%);
    filter: blur(16px);
    transform: scaleX(1) scaleY(0.7);
    animation: shadow-glow-shrink 6s ease-in-out infinite;
    animation-delay: 0.4s;
}

/* Shadow animations to synchronize with the floating orb */
@keyframes shadow-contact-shrink {
    0% {
        transform: scaleX(0.7) scaleY(0.4);
        opacity: 0.9;
    }
    50% {
        transform: scaleX(0.6) scaleY(0.3);
        opacity: 0.55;
    }
    100% {
        transform: scaleX(0.7) scaleY(0.4);
        opacity: 0.9;
    }
}

@keyframes shadow-glow-shrink {
    0% {
        transform: scaleX(0.9) scaleY(0.6);
        opacity: 0.95;
    }
    50% {
        transform: scaleX(0.8) scaleY(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scaleX(0.9) scaleY(0.6);
        opacity: 0.95;
    }
}

/* Central 3D Glass Orb Wrapper */
.squinal-hero-orb-image-wrap {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.squinal-hero-orb-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    animation: orb-spin-slow 60s linear infinite;
    filter: drop-shadow(0 15px 35px rgba(26, 115, 232, 0.05)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

@keyframes orb-spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* SVG Orbits Overlay */
.squinal-hero-orb-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4; /* Overlay on top of image wrapper to show front orbit lines */
    overflow: visible;
    pointer-events: none;
}

/* Orbit Path Dash Animation to add dynamic flow */
.squinal-hero-orb-svg path {
    stroke-linecap: round;
    transition: stroke-width 0.4s ease;
}

/* Interaction Highlights */
.squinal-hero-orb-wrapper--highlighted {
    transform: scale(1.05);
}

.squinal-hero-orb-wrapper--highlighted .squinal-hero-orb-image-wrap {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(26, 115, 232, 0.3));
}

/* SVG Paths pulse when highlighted */
.squinal-hero-orb-wrapper--highlighted .squinal-hero-orb-svg path {
    stroke-width: 2px !important;
}

/* Responsive configurations */
@media (max-width: 1399px) {
    .squinal-hero-orb-wrapper {
        max-width: 440px;
        height: 440px;
    }
    .squinal-hero-orb-image-wrap {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1199px) {
    .squinal-hero-orb-wrapper {
        max-width: 400px;
        height: 400px;
    }
    .squinal-hero-orb-image-wrap {
        width: 270px;
        height: 270px;
    }
    .squinal-hero-orb-shadows {
        bottom: -15px;
    }
}

@media (max-width: 991px) {
    .squinal-hero-orb-wrapper {
        max-width: 380px;
        height: 380px;
        margin: 30px auto;
    }
    .squinal-hero-orb-image-wrap {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767px) {
    .squinal-hero-orb-wrapper {
        max-width: 320px;
        height: 320px;
        margin: 20px auto;
    }
    .squinal-hero-orb-image-wrap {
        width: 210px;
        height: 210px;
    }
    .squinal-hero-orb-shadows {
        width: 85%;
        left: 7.5%;
        bottom: -10px;
    }
}

/* Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .squinal-hero-orb-wrapper {
        animation: none !important;
    }
    .squinal-hero-orb-image {
        animation: none !important;
    }
    .squinal-hero-orb-shadow--contact,
    .squinal-hero-orb-shadow--blue,
    .squinal-hero-orb-shadow--orange {
        animation: none !important;
    }
    .squinal-hero-orb-svg circle {
        display: none; /* Hide moving dots to prevent distraction */
    }
}

/* ==========================================================================
   Crafto Framework Standard Responsive System
   Consistent Section Spacing, Card Sizing & Zoom (75% - 125%) Stability
   ========================================================================== */

/* 1. Global Overflow Protection to prevent horizontal scrolling at all zoom levels */
html, body {
    overflow-x: clip !important;
    max-width: 100vw;
}

img {
    max-width: 100%;
}

/* 2. Crafto Section Spacing Utilities & Overrides */
.big-section {
    padding-top: 120px;
    padding-bottom: 120px;
}
.medium-section {
    padding-top: 85px;
    padding-bottom: 85px;
}
.small-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

/* Section Specific Paddings with smooth responsive step-downs */
.sq-industries-section,
.sq-principles-section,
.sq-final-cta-section {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.sq-trust-section,
.sq-zoho-values-section,
.sq-industry-section-dark-green,
.sq-enterprise-pillars-section,
.sq-trust-section-enhanced,
.sq-enterprise-showcase-section {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.sq-combined-core-cta-section {
    padding-top: 70px !important;
    padding-bottom: 50px !important;
}

/* Laptop / Desktop Zoom 110%-125% Breakpoint (max-width: 1199px) */
@media (max-width: 1199px) {
    .big-section { padding-top: 90px; padding-bottom: 90px; }
    .medium-section { padding-top: 70px; padding-bottom: 70px; }
    .small-section { padding-top: 45px; padding-bottom: 45px; }

    .sq-industries-section,
    .sq-principles-section,
    .sq-final-cta-section {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
    }

    .sq-trust-section,
    .sq-zoho-values-section,
    .sq-industry-section-dark-green,
    .sq-enterprise-pillars-section,
    .sq-trust-section-enhanced,
    .sq-enterprise-showcase-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    /* Hero Slider Card Height Scaling */
    .sq-hero-slider-card {
        height: 520px !important;
    }
}

/* Tablet / Zoom 125% Breakpoint (max-width: 991px) */
@media (max-width: 991px) {
    .big-section { padding-top: 70px; padding-bottom: 70px; }
    .medium-section { padding-top: 55px; padding-bottom: 55px; }
    .small-section { padding-top: 40px; padding-bottom: 40px; }

    .sq-industries-section,
    .sq-principles-section,
    .sq-final-cta-section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .sq-trust-section,
    .sq-zoho-values-section,
    .sq-industry-section-dark-green,
    .sq-enterprise-pillars-section,
    .sq-trust-section-enhanced,
    .sq-enterprise-showcase-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .sq-combined-core-cta-section {
        padding-top: 55px !important;
        padding-bottom: 40px !important;
    }

    /* Hero Slider Card on Tablet */
    .sq-hero-slider-card {
        height: 480px !important;
        max-width: 420px !important;
        margin: 0 auto;
    }

    /* Principle Cards Stacking on Tablet */
    .sq-principle-card {
        position: relative !important;
        top: auto !important;
        padding: 30px 24px !important;
        margin-bottom: 20px;
    }

    /* Banner Story Slider Card auto-height on Tablet */
    .sq-story-card-slide {
        height: auto !important;
        min-height: auto !important;
    }
    .sq-story-card-inner {
        padding: 30px 22px !important;
    }

    /* Zoho Card Dark Padding */
    .sq-zoho-card-dark {
        padding: 35px 30px !important;
    }
}

/* Mobile Devices Breakpoint (max-width: 767px) */
@media (max-width: 767px) {
    .big-section { padding-top: 50px; padding-bottom: 50px; }
    .medium-section { padding-top: 40px; padding-bottom: 40px; }
    .small-section { padding-top: 30px; padding-bottom: 30px; }

    .sq-industries-section,
    .sq-principles-section,
    .sq-final-cta-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .sq-trust-section,
    .sq-zoho-values-section,
    .sq-industry-section-dark-green,
    .sq-enterprise-pillars-section,
    .sq-trust-section-enhanced,
    .sq-enterprise-showcase-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .sq-combined-core-cta-section {
        padding-top: 45px !important;
        padding-bottom: 35px !important;
    }

    /* Hero Slider Card on Mobile */
    .sq-hero-slider-card {
        height: 440px !important;
        max-width: 100% !important;
    }
    .sq-hero-slider-card .cover-background {
        height: 250px !important;
    }

    /* Headlines on Mobile */
    .sq-ind-title-main {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
    .sq-capabilities-title {
        font-size: 32px !important;
        line-height: 1.1 !important;
    }
}

/* Small Mobile Devices (max-width: 575px) */
@media (max-width: 575px) {
    .big-section { padding-top: 40px; padding-bottom: 40px; }
    .medium-section { padding-top: 35px; padding-bottom: 35px; }
    .small-section { padding-top: 25px; padding-bottom: 25px; }

    /* Hero Slider Card on Small Mobile */
    .sq-hero-slider-card {
        height: 400px !important;
    }
    .sq-hero-slider-card .cover-background {
        height: 210px !important;
    }

    /* Principle Card Padding on Small Mobile */
    .sq-principle-card {
        padding: 22px 18px !important;
    }
    .sq-principle-card-title {
        font-size: 19px !important;
    }

    /* Dark CTA Card Padding on Small Mobile */
    .sq-zoho-card-dark {
        padding: 24px 18px !important;
    }

    /* Industry Horizontal Pill Capsule Scroll bar */
    .sq-ind-pills-bar-capsule {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        justify-content: flex-start !important;
        border-radius: 16px !important;
        padding: 6px 8px !important;
    }
    .sq-ind-pill-tab {
        flex: 0 0 auto;
        font-size: 13px;
        padding: 8px 14px;
    }

    /* Container Horizontal Padding on Small Mobile */
    .container, .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* ==========================================================================
   Responsive Video Section (Full Native 16:9 Aspect Ratio on Mobile)
   ========================================================================== */
.sq-intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 767px) {
    /* Full 16:9 native ratio with ZERO cropping/cutting on mobile */
    .sq-video-section {
        padding-top: 15px !important;
        padding-bottom: 25px !important;
        background: #000000 !important;
    }
    .sq-video-parallax-wrap {
        width: 100% !important;
        transform: none !important;
    }
    .sq-intro-video {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: contain !important;
        display: block !important;
        border-radius: 12px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }
}

/* ==========================================================================
   Sleek High-Visibility Top-Right Corner Unmute/Mute Toggle Button
   ========================================================================== */
.sq-video-parallax-wrap {
    position: relative !important;
}

.sq-video-audio-btn {
    position: absolute !important;
    top: 25px !important;
    right: 30px !important;
    z-index: 99 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.85) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6) !important;
    outline: none !important;
    padding: 0 !important;
}

.sq-video-audio-btn i {
    font-size: 16px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    transition: transform 0.2s ease !important;
}

.sq-video-audio-btn:hover {
    background: #000000 !important;
    border-color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8) !important;
}

.sq-video-audio-btn:active {
    transform: scale(0.95) !important;
}

.sq-video-audio-btn.unmuted {
    background: #e61919 !important;
    border-color: #ffffff !important;
}

@media (max-width: 767px) {
    .sq-video-audio-btn {
        top: 20px !important;
        right: 20px !important;
        width: 36px !important;
        height: 36px !important;
    }
    .sq-video-audio-btn i {
        font-size: 13px !important;
    }
}

/* ==========================================================================
   Engineering Philosophy Section (Compact Card Size & Sticky Stack Scroll)
   ========================================================================== */
.sq-principles-section,
.sq-principles-section .container,
.sq-principles-section .row,
.sq-principles-section .col-lg-8,
.sq-principles-list {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

.sq-principles-section {
    position: relative;
    background-color: #ffffff;
}

.sq-sticky-principles-col {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
}

.sq-principles-list {
    position: relative;
}

.sq-principles-section .stack-card {
    position: relative;
    width: 100%;
}

.sq-principles-section .stack-item {
    position: -webkit-sticky !important;
    position: sticky !important;
    z-index: calc(2 + var(--card-index, 0)) !important;
    margin-bottom: 30px !important;
    height: auto !important;
    width: 100%;
    display: block !important;
}

.sq-principle-card {
    position: relative !important;
    top: auto !important;
    background: #ffffff !important;
    border: 1px solid var(--sq-border-light) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    box-shadow: 20px 14px 50px 0 rgba(42, 27, 68, 0.08) !important;
    overflow: hidden !important;
    transform-origin: center top;
    -webkit-transform-origin: center top;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.sq-principle-card:hover {
    box-shadow: 20px 14px 55px 0 rgba(42, 27, 68, 0.12) !important;
}

.sq-card-left-content {
    padding: 26px 28px 26px 32px !important;
    flex: 1;
}

.sq-principle-card-number {
    font-size: 15px;
    font-weight: 800;
    color: var(--sq-base-color);
    background: rgba(43, 89, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.sq-principle-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #495057;
    background: #f1f3f7;
    padding: 4px 10px;
    border-radius: 6px;
    text-uppercase: uppercase;
}

.sq-principle-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

.sq-principle-card-desc {
    font-size: 14px;
    line-height: 22px;
    color: #555555;
}

/* Flush Right-Edge Card Image */
.sq-card-img-thumb {
    width: 220px;
    align-self: stretch;
    height: auto;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.sq-card-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    display: block;
    transition: transform 0.4s ease;
}

.sq-principle-card:hover .sq-card-img-thumb img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .sq-sticky-principles-col {
        position: static;
        margin-bottom: 35px;
    }
    .sq-principles-section .stack-item {
        position: relative !important;
        top: auto !important;
        margin-bottom: 20px !important;
    }
    .sq-card-left-content {
        padding: 22px 20px !important;
    }
    .sq-card-img-thumb {
        width: 160px;
    }
}

@media (max-width: 575px) {
    .sq-card-left-content {
        padding: 20px 18px !important;
    }
    .sq-card-img-thumb {
        display: none !important;
    }
}



/* =========================================================
   SQUINAL ABOUT PAGE
   Only styles not already provided by Crafto
========================================================= */

/* Manifesto cursor */
.sq-about-cursor-word {
    display: inline-block;
    position: relative;
    padding-right: 14px;
}

.sq-about-cursor-word::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    width: 2px;
    height: 84%;
    background-color: currentColor;
    animation: sq-about-cursor-blink 0.9s steps(1) infinite;
}

@keyframes sq-about-cursor-blink {
    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }
}


/* Full-width team photograph */
.sq-about-wide-image {
    width: 100%;
    height: 78vh;
    min-height: 620px;
    overflow: hidden;
    transition: transform 0.1s linear;
}

.sq-about-wide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}


/* Stacked scroll area */
.sq-about-stack-section {
    padding-top: 140px;
    padding-bottom: 140px;
}

.sq-about-stack-intro {
    position: sticky;
    top: 130px;
    padding-right: 35px;
}

.sq-about-stack-card {
    position: sticky;
    top: 105px;
    min-height: 540px;
    margin-bottom: 70px;
    padding: 70px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(22, 35, 50, 0.12);
}

.sq-about-stack-card:last-child {
    margin-bottom: 0;
}

.sq-about-stack-card-one {
    background-color: #f0f2f5;
}

.sq-about-stack-card-two {
    background:
        radial-gradient(circle at 85% 20%, rgba(31, 172, 255, 0.20), transparent 32%),
        #071f2d;
}

.sq-about-stack-card-three {
    background-color: #eaf7ff;
}

.sq-about-stack-card-four {
    background:
        radial-gradient(circle at 85% 20%, rgba(220, 49, 49, 0.12), transparent 34%),
        #fff3f2;
}

.sq-about-stack-number {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 55px;
}

.sq-about-stack-word {
    font-family: var(--alt-font);
    font-size: clamp(55px, 6vw, 105px);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -6px;
    color: rgba(35, 35, 35, 0.08);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0 auto;
}

.sq-about-stack-word-dark {
    color: rgba(220, 49, 49, 0.12);
}

.sq-about-stack-graphic {
    width: 100%;
    max-width: 330px;
    max-height: 330px;
    object-fit: contain;
}

.sq-about-dashboard-graphic {
    width: 100%;
    max-width: 430px;
    filter: drop-shadow(0 25px 30px rgba(19, 47, 65, 0.20));
}


/* Customer expectation rows */
.sq-about-expectation-list {
    border-top: 1px solid #dedede;
}

.sq-about-expectation-row {
    display: grid;
    grid-template-columns: 80px minmax(240px, 0.8fr) 1.4fr;
    align-items: center;
    gap: 35px;
    padding: 42px 0;
    border-bottom: 1px solid #dedede;
}

.sq-about-expectation-index {
    font-size: 13px;
    font-weight: 600;
    color: var(--base-color);
}

.sq-about-expectation-row h3 {
    font-size: 27px;
    line-height: 34px;
}

.sq-about-expectation-row p {
    max-width: 650px;
    font-size: 17px;
    line-height: 30px;
}


/* Tablet */
@media (max-width: 991px) {
    .sq-about-wide-image {
        height: 65vh;
        min-height: 520px;
    }

    .sq-about-stack-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sq-about-stack-intro {
        position: relative;
        top: auto;
        padding-right: 0;
    }

    .sq-about-stack-card {
        position: relative;
        top: auto;
        min-height: auto;
        padding: 55px;
        margin-bottom: 35px;
    }

    .sq-about-expectation-row {
        grid-template-columns: 55px 0.8fr 1.2fr;
        gap: 25px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .sq-about-wide-image {
        height: 480px;
        min-height: 480px;
    }

    .sq-about-wide-image img {
        object-position: center center;
    }

    .sq-about-stack-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .sq-about-stack-card {
        padding: 35px 28px;
        border-radius: 14px;
    }

    .sq-about-stack-number {
        margin-bottom: 30px;
    }

    .sq-about-stack-word {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: -4px;
    }

    .sq-about-stack-graphic {
        max-width: 250px;
    }

    .sq-about-expectation-row {
        display: block;
        padding: 32px 0;
    }

    .sq-about-expectation-index {
        display: block;
        margin-bottom: 12px;
    }

    .sq-about-expectation-row h3 {
        margin-bottom: 12px !important;
    }
}

/* Contact Form Style 01 Overlap styling */
.contact-form-style-01 {
    margin-top: -120px !important;
    z-index: 5;
    position: relative;
}
.contact-form-style-01 .btn.btn-large { 
    padding: 13px 40px;
}
@media (max-width: 991px) {
    .contact-form-style-01 {
        margin-top: 0 !important;
    }
}

/* Capabilities Headline Height Stabilization */
.sq-capabilities-title {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-weight: 700;
    color: #111214;
    display: block;
}

.sq-capabilities-title .fancy-text-style-4 {
    display: inline-block;
    text-align: left;
    white-space: nowrap !important;
}

@media (max-width: 1199px) {
    .sq-capabilities-title {
        font-size: 42px;
        line-height: 1.18;
    }
}

@media (max-width: 767px) {
    .sq-capabilities-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
}





