/* Secure Identity Solutions Page Specific Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.8)), url('../public/media/NEW S8000-IDcard solution.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solution-item {
    display: flex;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-item.reverse {
    flex-direction: row-reverse;
}

.solution-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    flex: 0 0 60%;
    padding: 40px;
}

.solution-content h3 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.solution-highlight {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.solution-content p {
    margin-bottom: 20px;
    color: #6c757d;
    line-height: 1.7;
}

.solution-features {
    margin-bottom: 25px;
    padding-left: 20px;
}

.solution-features li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
}

.solution-features li::before {
    content: '\2022';
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-item p {
    padding: 10px;
    text-align: center;
    background-color: #f8f9fa;
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Security Features */
.security-features {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #6c757d;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-text, .intro-image {
        flex: 0 0 100%;
    }
    
    .intro-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .solution-item, .solution-item.reverse {
        flex-direction: column;
    }
    
    .solution-image, .solution-content {
        flex: 0 0 100%;
    }
    
    .solution-image {
        height: 300px;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
    
    .intro-section, .solutions-section, .security-features {
        padding: 60px 0;
    }
    
    .solution-content {
        padding: 30px;
    }
    
    .solution-content h3 {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .intro-text h2 {
        font-size: 1.6rem;
    }
    
    .solution-content h3 {
        font-size: 1.4rem;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-image {
        height: 200px;
    }
}