/* security-detail-premium.css - Enhanced Detail View for Security Products */

/* 1. Page Header Enhancement */
.breadcrumb-area h1 {
    font-size: 3rem !important;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* 2. Premium Detail Container */
.premium-detail-container {
    max-width: 1000px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 33, 71, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

/* 3. Image Section */
.detail-img-box {
    text-align: center;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 15px;
    background: #fdfdfd;
}

.detail-img-box img {
    max-width: 600px;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.premium-detail-container:hover .detail-img-box img {
    transform: scale(1.05);
}

/* 4. Content Section */
.detail-content-box {
    text-align: center;
}

.detail-content-box h1, 
.detail-content-box h4 {
    font-size: 2.5rem !important;
    color: #002147;
    font-weight: 700;
    margin-bottom: 25px !important;
    font-family: 'Poppins', sans-serif;
}

.detail-content-box p {
    font-size: 1.15rem !important; /* Increased to 18px equivalent or slightly more */
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
    text-justify: inter-word;
}

.detail-content-box b {
    color: #002147;
    font-weight: 700;
}

/* 5. Responsive Optimization */
@media (max-width: 991px) {
    .premium-detail-container {
        margin: 30px 20px;
        padding: 30px;
    }
    
    .detail-content-box h1, 
    .detail-content-box h4 {
        font-size: 2rem !important;
    }
}

@media (max-width: 600px) {
    .premium-detail-container {
        padding: 20px;
        border-radius: 15px;
    }
    
    .detail-content-box p {
        font-size: 1.05rem !important;
        text-align: center;
    }
    
    .breadcrumb-area h1 {
        font-size: 2rem !important;
    }
}
