/**
 * Dekaii Scroll Line CSS
 * Styles for the animated SVG line on /our-process/
 */

.dekaii-scroll-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    /* High z-index to sit above content */
    overflow: visible;
}

.dekaii-scroll-path {
    fill: none;
    stroke: #54C8F5;
    /* Cyan fallback */
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
    filter: drop-shadow(0 0 4px rgba(84, 200, 245, 0.6));
    /* Cyan Glow */
    transition: stroke-dashoffset 0.1s linear;
}

/* Ensure offset vars exist (fallback) */
:root {
    --dekaii-line-offset-right: 24px;
    --dekaii-line-offset-left: 24px;
}

/* 
 * ==========================================
 * DEKAII PROCESS STEP GRID STANDARDIZATION
 * ==========================================
 * Ensures consistent grid layout, fonts, 
 * and image stretch across all process steps.
 */

/* 1. Grid Gap & Alignment Standardization */
.page-id-1181 .qodef-elementor-content-grid {
    gap: 30px !important;
    align-items: stretch !important;
}

@media only screen and (max-width: 768px) {
    .page-id-1181 .qodef-elementor-content-grid {
        gap: 20px !important;
    }
}

/* 2. Image Height & Stretch Standardization */
.page-id-1181 .qodef-elementor-content-grid>.elementor-widget-image,
.page-id-1181 .qodef-elementor-content-grid>.elementor-widget-image>.elementor-widget-container,
.page-id-1181 .qodef-elementor-content-grid>.elementor-widget-image>.elementor-widget-wrap {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: stretch !important;
}

.page-id-1181 .qodef-elementor-content-grid .elementor-widget-image img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: block;
    border-radius: 4px;
    /* Optional slight rounding for premium feel */
}

/* 3. Title Font and Margin Standardization */
.page-id-1181 .qodef-elementor-content-grid .qodef-m-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    margin-top: 5px !important;
    color: #FFFFFF !important;
}

@media only screen and (max-width: 768px) {
    .page-id-1181 .qodef-elementor-content-grid .qodef-m-title {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }
}

/* 4. Text Body Standardization */
.page-id-1181 .qodef-elementor-content-grid .qodef-m-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
    .page-id-1181 .qodef-elementor-content-grid .qodef-m-text {
        font-size: 15px !important;
    }
}