/* Our Process Section Styles */
.process-section {
    position: relative;
    padding: 60px 0;
    background-color: #ffffff;
}
.process-section.bg-dark {
    background-color: #030a15;
}
.process-section .section-title {
    margin-bottom: 45px;
    text-align: center;
}
.process-section .section-title h2,
.process-section .section-title h3 {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 800;
}
.process-section.bg-dark .section-title h2,
.process-section.bg-dark .section-title h3 {
    color: #ffffff;
}
.process-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
/* Vertical Line */
.process-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e77f23, #e77f23, transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(231, 127, 35, 0.2);
}
.process-row {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
    width: 100%;
}
.process-row:last-child {
    margin-bottom: 0;
}
.process-col {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
}
.process-col.left {
    justify-content: flex-end;
    padding-right: 35px;
}
.process-col.right {
    justify-content: flex-start;
    padding-left: 35px;
}
/* Content & Icon Group */
.content-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.left .content-group {
    text-align: right;
}
.right .content-group {
    text-align: left;
}
.process-text {
    max-width: 320px;
}
.process-text h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.process-section.bg-dark .process-text h3 {
    color: #ffffff;
}
.process-text p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.process-section.bg-dark .process-text p {
    color: #a0a0a0;
}
/* Icon Box */
.icon-glass {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 127, 35, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}
.process-section.bg-dark .icon-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.4);
}
.icon-glass i {
    font-size: 20px;
    color: #e77f23;
    text-shadow: 0 0 8px rgba(231, 127, 35, 0.3);
}
/* Horizontal Connector */
.connector {
    position: absolute;
    top: 50%;
    width: 35px; 
    height: 2px;
    background: #e77f23;
    box-shadow: 0 0 5px rgba(231, 127, 35, 0.2);
    z-index: 1;
}
.left .connector {
    right: 0;
}
.right .connector {
    left: 0;
}
/* Node on the central line */
.node {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #e77f23;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #e77f23;
    z-index: 3;
}
.left .node {
    right: -35px;
    left: auto;
}
.right .node {
    left: -35px;
}

@media (max-width: 991px) {
    .process-section .section-title h2,
    .process-section .section-title h3 {
        font-size: 28px;
        margin-bottom: 15px !important;
    }
    .process-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .process-container::before {
        left: 27px;
        transform: none;
    }
    .process-row {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 55px;
        margin-bottom: 40px;
        width: 100%;
        box-sizing: border-box;
    }
    .process-col {
        width: 100% !important;
        padding: 0 !important;
        justify-content: flex-start !important;
    }
    .content-group {
        flex-direction: row !important; /* Always icon then text on mobile */
        text-align: left !important;
        gap: 15px;
    }
    .left .content-group {
        flex-direction: row !important;
        text-align: left !important;
    }
    .process-text {
        max-width: 100%;
    }
    .icon-glass {
        position: absolute;
        left: -55px;
        top: 0;
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    .connector, .node {
        display: none;
    }
    .process-row:empty {
        display: none;
    }
}

