/* --- Styles for Cybersecurity Page --- */

/* Hero Section */
.hero-cyber {
    padding: 6rem 2rem;
    background: #101d36;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-cyber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.hero-cyber-text h1 { font-size: 3.5rem; color: #fff; margin-bottom: 1rem; }
.hero-cyber-text .subtitle { font-size: 1.3rem; color: #bbb; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-cyber-image img { width: 100%; max-width: 450px; animation: subtle-float 6s ease-in-out infinite; }

/* Cyber Shield Layout Section */
.cyber-services-section {
    padding: 6rem 2rem;
}
.cyber-shield-layout {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shield-center {
    width: 250px;
    height: 250px;
    background: linear-gradient(145deg, #3b82f6, #1e40af);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0.1), 0 10px 40px rgba(0,0,0,0.3);
}
.shield-center i { font-size: 4rem; margin-bottom: 1rem; }

.shield-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 350px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.shield-item:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}
.shield-icon { font-size: 2rem; color: #3b82f6; }
.shield-text h5 { font-size: 1.2rem; color: #fff; margin-bottom: 0.3rem; }
.shield-text p { font-size: 0.9rem; color: #bbb; line-height: 1.5; }

/* Positioning the shield items */
.shield-item.item-1 { top: 0; left: 0; }
.shield-item.item-2 { top: 0; right: 0; }
.shield-item.item-3 { top: 50%; left: -10%; transform: translateY(-50%); }
.shield-item.item-4 { top: 50%; right: -10%; transform: translateY(-50%); }
.shield-item.item-5 { bottom: 0; left: 0; }
.shield-item.item-6 { bottom: 0; right: 0; }


/* Responsive adjustments */
@media (max-width: 1200px) {
    .shield-item { width: 300px; }
    .shield-item.item-3 { left: 0; }
    .shield-item.item-4 { right: 0; }
}
@media (max-width: 992px) {
    .hero-cyber-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-cyber-image { order: -1; margin-bottom: 2rem; }
    .cyber-shield-layout { flex-direction: column; gap: 2rem; }
    .shield-item { position: static; transform: none !important; width: 100%; max-width: 450px; }
    .shield-center { margin-bottom: 2rem; }
}