/* Overview Split Section - EXACT DESIGN MATCH */
.overview-split {
    padding: 80px 0;
    background: #fff;
}

.overview-image-container {
    position: relative;
    height: 450px;
    overflow: visible;
}

/* Custom Column Class for Overview to avoid global conflicts */
.overview-col-half {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .overview-col-half {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Background Layer (Blurred Person) */
.overview-bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overview-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    opacity: 1;
    border-radius: 20px 0 20px 0;
}

/* Foreground Slider */
.overview-slider {
    position: absolute;
    left: 15%;
    top: 55%;
    transform: translateY(-50%);
    width: 55%;
    height: 65%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 2;
    border: 5px solid #fff;
    border-radius: 10px;
}

.overview-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.overview-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.overview-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cyan Dots Navigation - ORANGE now */
.overview-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50px;
    height: auto;
    background: #E63B18; /* Orange */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    box-shadow: 0 5px 15px rgba(230, 59, 24, 0.3);
    z-index: 3;
    border-radius: 30px;
}

.overview-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overview-dots .dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.overview-dots .dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* Text Content */
.overview-content {
    padding-left: 50px;
}

.sub-title {
    color: #E63B18;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-size: 0.9rem;
}

.overview-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1D3458;
    line-height: 1.2;
    margin-bottom: 25px;
}

.overview-highlight-box {
    border-left: none;
    padding-left: 0;
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    text-align: justify;
}

.overview-separator {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
}

.overview-separator span {
    display: block;
    height: 4px;
    background: #E63B18;
    border-radius: 2px;
}

.overview-separator span:nth-child(1) { width: 40px; }
.overview-separator span:nth-child(2) { width: 5px; }

.overview-text-secondary {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Stats Row */
.overview-stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.overview-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1D3458;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Work Sans', sans-serif;
}

.stat-number .plus {
    color: #E63B18;
    font-weight: 400;
    font-size: 1.5rem;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .overview-col-half {
        padding: 0 15px;
    }

    .overview-image-container {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .overview-slider {
        left: 10%;
        width: 70%;
        height: 65%;
    }
    
    .overview-content {
        padding-left: 0;
    }
    
    .overview-stats-row {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .overview-slider {
        left: 5%;
        width: 80%;
    }
    
    .overview-stats-row {
        flex-wrap: wrap;
    }
    
    .overview-stat-item {
        width: 45%; 
    }
}
