/*--------------------------------------------------------------
# Surveillance Section - Parallax Effect
--------------------------------------------------------------*/

.surveillance-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    isolation: isolate;
}

/* Content Side */
.surveillance-content {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.content-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.surveillance-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.surveillance-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%);
    border-radius: 10px;
}

.surveillance-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    padding: 0 20px;
}

/* Features List */
.surveillance-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.feature-item i {
    color: #0099CC;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Image Side with Parallax */
.surveillance-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.surveillance-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.8);
}

/* Overlay effect */
.surveillance-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,153,204,0.1) 0%, rgba(0,102,153,0.2) 100%);
}

/* Responsive Design */
@media (max-width: 991px) {
    .surveillance-section {
        text-align: center;
    }
    
    .surveillance-content {
        padding: 60px 0;
    }
    
    .content-wrapper {
        padding: 0 30px;
    }
    
    .surveillance-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .surveillance-content p {
        text-align: center;
    }
    
    .surveillance-image-wrapper {
        display: none;
    }
    
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .surveillance-content h2 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
}

/* Animation */
.surveillance-section.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.surveillance-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}