/* Process Slider Styles */
.process-slider-area {
    position: relative;
    padding-bottom: 50px;
    background-color: #fff;
    /* Ensure background is white to prevent transparency issues */
}

.tp-process-slider-wrapper {
    position: relative;
    padding: 0 60px;
    /* Add padding for arrows */
}

/* Ensure slides don't stack weirdly in fade effect */
.process-active .swiper-slide {
    background-color: #fff;
    opacity: 0 !important;
    transition-property: opacity;
}

.process-active .swiper-slide-active {
    opacity: 1 !important;
    z-index: 2;
}


.process-slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Left side: Circular Image */
.process-slider-thumb {
    flex: 0 0 350px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    /* border: 15px solid #fff; Removed per user request */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); Removed per user request */
    position: relative;
}

.process-slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right side: Content */
.process-slider-content {
    flex: 1;
    text-align: left;
}

.process-slider-content h3 {
    font-family: 'Richela Kids', sans-serif;
    /* Assuming this font is available */
    font-size: 36px;
    color: #1B3764;
    /* Updated to dark blue to match theme */
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-slider-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Navigation Overrides - Absolute Positioning */
.process-slider-controls {
    /* Reset from previous flex layout */
    display: block;
    position: static;
    margin-top: 0;
}

.process-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6494CE;
    /* Blue to match theme elements */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    z-index: 20;
    /* High z-index */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.process-slider-btn:hover {
    background-color: #1a3333;
    transform: translateY(-50%) scale(1.1);
}

.process-prev {
    left: 0;
}

.process-next {
    right: 0;
}

/* Pagination - Bottom Center */
.process-slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.process-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.process-slider-pagination .swiper-pagination-bullet-active {
    background-color: #6494CE;
    /* Blue */
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
    .tp-process-slider-wrapper {
        padding: 0;
    }

    .process-slider-btn {
        display: none;
        /* Hide arrows on mobile/tablet, use dots or swipe */
    }

    .process-slider-item {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .process-slider-thumb {
        flex: 0 0 300px;
        width: 300px;
        height: 300px;
        border-width: 10px;
        margin: 0 auto;
    }

    .process-slider-content {
        text-align: center;
    }

    .process-slider-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .process-slider-thumb {
        flex: 0 0 250px;
        width: 250px;
        height: 250px;
    }

    .process-slider-content h3 {
        font-size: 24px;
    }

    .process-slider-content p {
        font-size: 16px;
    }
}