
.dlp h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.highlight {
    color: #007BFF;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #007BFF, #28A745);
    border-radius: 2px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007BFF;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.data-shield {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #007BFF, #28A745);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 3;
}

.protection-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 3px solid rgb(92, 150, 168);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.protection-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #007BFF;
    border-radius: 50%;
    box-shadow: 0 0 20px #007BFF;
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #28A745;
    border-radius: 50%;
    animation: dataFlow 3s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px #28A745;
}

.data-point:nth-child(1) { top: 20%; left: 50%; }
.data-point:nth-child(2) { top: 50%; right: 20%; }
.data-point:nth-child(3) { bottom: 20%; left: 50%; }
.data-point:nth-child(4) { top: 50%; left: 20%; }
.data-point:nth-child(5) { top: 30%; right: 30%; }

.scan-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
    animation: scan 2s ease-in-out infinite;
    transform-origin: center;
}


/* Data Safety Section */
.data-safety {
    padding: 100px 0;
    position: relative;
    background: var(--theme-color3) !important;
}
.data-safety::before{
position: absolute;
  right: 0;
  top: 120px;
  height: 509px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(/assets/images/icons/pattern-28.png);
  content: "";
}
.threats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.threat-card {
    background: #ffffff;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.threat-icon {
    width: 80px;
    height: 80px;
    background: #3465DF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #FFFFFF;
}

.threat-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.threat-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.threat-stat {
    background: #E7E7E7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.threat-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3465DF;
}

.threat-stat .stat-text {
    font-size: 0.9rem;
}

.threat-examples {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.example-item i {
    color: #FFC107;
    font-size: 0.8rem;
}

/* Animations */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes scan {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes layerPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
   
    .hero-stats {
        justify-content: center;
    }
    
    .hero-graphic {
        width: 300px;
        height: 300px;
    }
    
    .threats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .threat-card {
        padding: 30px 20px;
    }
}
