@charset "UTF-8";
/* CSS Document */

/*==================================================
CYBERSECURITY PAGE
cybersecurity.css
==================================================*/


/*==================================================
PAGE
==================================================*/

body{
    background:#040912;
}


/*==================================================
CYBER HERO
==================================================*/

.cybersecurity-hero{

    position:relative;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:150px 8% 100px;

    overflow:hidden;

    background:
        radial-gradient(circle at top,
        rgba(0,255,255,.10),
        transparent 45%),

        linear-gradient(
        rgba(2,8,18,.88),
        rgba(2,8,18,.95));

}


.cybersecurity-hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
        rgba(0,255,255,.05) 1px,
        transparent 1px),

        linear-gradient(
        90deg,
        rgba(0,255,255,.05) 1px,
        transparent 1px);

    background-size:55px 55px;

    animation:gridMove 18s linear infinite;

    pointer-events:none;

}


@keyframes gridMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(55px);
    }

}


.cybersecurity-hero-content{

    position:relative;

    z-index:2;

    max-width:950px;

    text-align:center;

}


.cybersecurity-hero h1{

    font-size:clamp(3.4rem,7vw,6rem);

    margin:20px 0;

    color:#ffffff;

    text-shadow:
        0 0 15px rgba(0,255,255,.5),
        0 0 40px rgba(0,150,255,.25);

}


.cybersecurity-hero .hero-description{

    max-width:800px;

    margin:0 auto 40px;

    color:#d8e8f5;

    font-size:1.15rem;

    line-height:1.9;

}


.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==================================================
SHARED CYBERSECURITY PAGE SECTIONS
==================================================*/

.cybersecurity-introduction,
.cybersecurity-topics,
.cyber-threats,
.safety-tips,
.cybersecurity-tools,
.learning-section {
    position: relative;
    padding: 100px 8%;
}

.cybersecurity-introduction,
.cyber-threats,
.cybersecurity-tools {
    background:
        radial-gradient(
            circle at center,
            rgba(0, 204, 255, 0.05),
            transparent 55%
        ),
        #050b14;
}

.cybersecurity-topics,
.safety-tips,
.learning-section {
    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 255, 0.025),
            rgba(0, 102, 255, 0.025)
        ),
        #07101c;
}


/*==================================================
SECTION HEADINGS
==================================================*/

.cybersecurity-introduction .section-heading,
.cybersecurity-topics .section-heading,
.cyber-threats .section-heading,
.safety-tips .section-heading,
.cybersecurity-tools .section-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.cybersecurity-introduction .section-heading h2,
.cybersecurity-topics .section-heading h2,
.cyber-threats .section-heading h2,
.safety-tips .section-heading h2,
.cybersecurity-tools .section-heading h2 {
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(0, 225, 255, 0.25);
}

.cybersecurity-introduction .section-heading > p:last-child,
.cybersecurity-topics .section-heading > p:last-child,
.cyber-threats .section-heading > p:last-child,
.safety-tips .section-heading > p:last-child,
.cybersecurity-tools .section-heading > p:last-child {
    color: #b9cddd;
    font-size: 1.05rem;
    line-height: 1.8;
}


/*==================================================
INTRODUCTION INFORMATION CARDS
==================================================*/

.cybersecurity-introduction .information-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.cybersecurity-introduction .information-card {
    position: relative;
    min-height: 290px;
    padding: 38px 30px;
    overflow: hidden;
    text-align: center;

    border: 1px solid rgba(0, 225, 255, 0.25);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 27, 43, 0.96),
            rgba(4, 13, 24, 0.97)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        inset 0 0 30px rgba(0, 225, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.cybersecurity-introduction .information-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #1fe6ff,
        transparent
    );

    box-shadow: 0 0 18px rgba(31, 230, 255, 0.8);
}

.cybersecurity-introduction .information-card:hover {
    transform: translateY(-9px);
    border-color: rgba(31, 230, 255, 0.65);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(0, 225, 255, 0.1);
}

.cybersecurity-introduction .card-icon {
    display: grid;
    place-items: center;

    width: 76px;
    height: 76px;

    margin: 0 auto 24px;

    border: 1px solid rgba(0, 225, 255, 0.38);
    border-radius: 20px;

    background: rgba(0, 225, 255, 0.07);

    font-size: 2rem;

    box-shadow:
        0 0 24px rgba(0, 225, 255, 0.13),
        inset 0 0 20px rgba(0, 225, 255, 0.04);
}

.cybersecurity-introduction .information-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.45rem;
}

.cybersecurity-introduction .information-card p {
    color: #bcd0df;
    line-height: 1.75;
}


/*==================================================
CYBERSECURITY TOPIC CARDS
==================================================*/

.cybersecurity-topics .topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1250px;
    margin: 0 auto;
}

.cybersecurity-topics .topic-card {
    position: relative;
    min-height: 405px;
    padding: 34px 28px;

    border: 1px solid rgba(0, 170, 255, 0.25);
    border-radius: 20px;

    background:
        linear-gradient(
            155deg,
            rgba(9, 28, 47, 0.97),
            rgba(4, 12, 22, 0.98)
        );

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.32),
        inset 0 0 25px rgba(0, 174, 255, 0.02);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.cybersecurity-topics .topic-card::after {
    content: "";
    position: absolute;
    inset: 10px;

    border: 1px solid rgba(0, 225, 255, 0.04);
    border-radius: 14px;

    pointer-events: none;
}

.cybersecurity-topics .topic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 225, 255, 0.55);

    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(0, 174, 255, 0.1);
}

.cybersecurity-topics .topic-card .card-icon {
    display: grid;
    place-items: center;

    width: 66px;
    height: 66px;

    margin-bottom: 22px;

    border: 1px solid rgba(0, 225, 255, 0.4);
    border-radius: 18px;

    background: rgba(0, 225, 255, 0.07);

    font-size: 1.85rem;

    box-shadow: 0 0 22px rgba(0, 225, 255, 0.12);
}

.cybersecurity-topics .topic-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.4rem;
}

.cybersecurity-topics .topic-card > p {
    min-height: 102px;
    margin-bottom: 22px;
    color: #b9cddd;
    line-height: 1.7;
}

.cybersecurity-topics .topic-card ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.cybersecurity-topics .topic-card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 17px;

    color: #d7e7f1;
    line-height: 1.55;
}

.cybersecurity-topics .topic-card li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 0;

    color: #27e8ff;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(39, 232, 255, 0.7);
}


/*==================================================
COMMON CYBER THREATS
==================================================*/

.cyber-threats .threat-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto;
}

.cyber-threats .threat-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    padding: 28px;

    border: 1px solid rgba(255, 79, 110, 0.22);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(31, 13, 24, 0.93),
            rgba(10, 10, 20, 0.97)
        );

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.32),
        inset 0 0 22px rgba(255, 60, 100, 0.02);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.cyber-threats .threat-card:hover {
    transform: translateX(7px);
    border-color: rgba(255, 91, 124, 0.6);

    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 79, 110, 0.08);
}

.cyber-threats .threat-number {
    flex: 0 0 auto;

    color: #ff5b7d;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;

    text-shadow: 0 0 14px rgba(255, 91, 125, 0.45);
}

.cyber-threats .threat-card h3 {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 1.3rem;
}

.cyber-threats .threat-card p {
    color: #c5d3df;
    line-height: 1.7;
}


/*==================================================
CYBERSECURITY SAFETY TIPS
==================================================*/

.safety-tips .tips-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1220px;
    margin: 0 auto;
}

.safety-tips .tip-card {
    position: relative;
    min-height: 270px;
    padding: 32px 26px;
    text-align: center;

    border: 1px solid rgba(57, 255, 149, 0.22);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 34, 33, 0.92),
            rgba(4, 15, 23, 0.98)
        );

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.32),
        inset 0 0 24px rgba(57, 255, 149, 0.02);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.safety-tips .tip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 149, 0.55);

    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(57, 255, 149, 0.08);
}

.safety-tips .tip-icon {
    display: grid;
    place-items: center;

    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    border: 1px solid rgba(57, 255, 149, 0.38);
    border-radius: 50%;

    background: rgba(57, 255, 149, 0.07);

    font-size: 1.8rem;

    box-shadow: 0 0 22px rgba(57, 255, 149, 0.1);
}

.safety-tips .tip-card h3 {
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 1.3rem;
}

.safety-tips .tip-card p {
    color: #bed4d2;
    line-height: 1.7;
}

/*==================================================
CYBERSECURITY TOOLS
==================================================*/

.cybersecurity-tools .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cybersecurity-tools .tool-card {
    position: relative;
    min-height: 230px;
    padding: 32px 28px;
    overflow: hidden;

    border: 1px solid rgba(131, 112, 255, 0.24);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(24, 20, 55, 0.94),
            rgba(6, 12, 24, 0.98)
        );

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.34),
        inset 0 0 24px rgba(131, 112, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.cybersecurity-tools .tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #7b68ee,
        #29dfff,
        transparent
    );

    opacity: 0.8;
}

.cybersecurity-tools .tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(131, 112, 255, 0.62);

    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.44),
        0 0 30px rgba(111, 92, 255, 0.1);
}

.cybersecurity-tools .tool-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.4rem;
    text-shadow: 0 0 12px rgba(120, 100, 255, 0.25);
}

.cybersecurity-tools .tool-card p {
    color: #c6c8e3;
    line-height: 1.75;
}

.cybersecurity-tools .authorization-notice {
    max-width: 900px;
    margin: 38px auto 0;
    padding: 18px 22px;

    border: 1px solid rgba(255, 202, 87, 0.3);
    border-left: 4px solid #ffca57;
    border-radius: 12px;

    background: rgba(255, 202, 87, 0.055);

    color: #f2e4ba;
    text-align: center;
    line-height: 1.7;

    box-shadow: 0 0 24px rgba(255, 202, 87, 0.04);
}


/*==================================================
LEARNING SECTION
==================================================*/

.learning-section {
    overflow: hidden;
}

.learning-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(0, 225, 255, 0.12),
        transparent 68%
    );

    pointer-events: none;
}

.learning-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(54, 255, 144, 0.08),
        transparent 70%
    );

    pointer-events: none;
}

.learning-section .learning-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

    max-width: 1180px;
    margin: 0 auto;
    padding: 52px;

    border: 1px solid rgba(0, 225, 255, 0.25);
    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 26, 43, 0.96),
            rgba(5, 16, 29, 0.98)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 35px rgba(0, 225, 255, 0.02);
}

.learning-section .learning-content h2 {
    margin: 12px 0 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.2;

    text-shadow: 0 0 20px rgba(0, 225, 255, 0.23);
}

.learning-section .learning-content > div:first-child > p:last-child {
    color: #c1d3e0;
    font-size: 1.05rem;
    line-height: 1.85;
}

.learning-list {
    display: grid;
    gap: 16px;
}

.learning-item {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 20px;

    border: 1px solid rgba(0, 225, 255, 0.18);
    border-radius: 15px;

    background: rgba(0, 225, 255, 0.035);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.learning-item:hover {
    transform: translateX(7px);
    border-color: rgba(0, 225, 255, 0.46);
    background: rgba(0, 225, 255, 0.065);
}

.learning-item span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(0, 225, 255, 0.45);
    border-radius: 13px;

    background: rgba(0, 225, 255, 0.08);

    color: #32e6ff;
    font-size: 1rem;
    font-weight: 800;

    box-shadow: 0 0 18px rgba(0, 225, 255, 0.08);
}

.learning-item p {
    margin: 0;
    color: #d9e7f0;
    line-height: 1.6;
}


/*==================================================
CALL TO ACTION
==================================================*/

.cybersecurity-call-to-action {
    position: relative;
    padding: 115px 8%;
    overflow: hidden;
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 225, 255, 0.12),
            transparent 52%
        ),
        linear-gradient(
            135deg,
            #06111e,
            #030914
        );
}

.cybersecurity-call-to-action::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0, 225, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 225, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 25%,
        black 75%,
        transparent
    );

    pointer-events: none;
}

.cybersecurity-call-to-action .call-to-action-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto;
}

.cybersecurity-call-to-action h2 {
    margin: 14px 0 20px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;

    text-shadow:
        0 0 18px rgba(0, 225, 255, 0.35),
        0 0 40px rgba(0, 128, 255, 0.18);
}

.cybersecurity-call-to-action p {
    max-width: 760px;
    margin: 0 auto 34px;

    color: #c6d9e6;
    font-size: 1.08rem;
    line-height: 1.85;
}

.cybersecurity-call-to-action .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    padding: 15px 28px;

    border: 1px solid rgba(0, 225, 255, 0.65);
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        rgba(0, 225, 255, 0.2),
        rgba(0, 110, 255, 0.23)
    );

    color: #ffffff;
    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 0 24px rgba(0, 225, 255, 0.14),
        inset 0 0 20px rgba(255, 255, 255, 0.02);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.cybersecurity-call-to-action .primary-button:hover {
    transform: translateY(-3px);
    border-color: #3cecff;

    box-shadow:
        0 0 32px rgba(0, 225, 255, 0.24),
        0 12px 28px rgba(0, 0, 0, 0.28);
}

/*==================================================
RESPONSIVE DESIGN
==================================================*/

@media (max-width: 1100px) {

    .cybersecurity-introduction .information-grid,
    .cybersecurity-topics .topic-grid,
    .safety-tips .tips-grid,
    .cybersecurity-tools .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .learning-section .learning-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

}


@media (max-width: 850px) {

    .cybersecurity-hero {
        min-height: auto;
        padding: 145px 7% 90px;
    }

    .cybersecurity-hero h1 {
        font-size: clamp(2.8rem, 9vw, 4.5rem);
    }

    .cybersecurity-hero .hero-description {
        font-size: 1.05rem;
    }

    .cybersecurity-introduction,
    .cybersecurity-topics,
    .cyber-threats,
    .safety-tips,
    .cybersecurity-tools,
    .learning-section {
        padding: 85px 6%;
    }

    .cybersecurity-introduction .section-heading,
    .cybersecurity-topics .section-heading,
    .cyber-threats .section-heading,
    .safety-tips .section-heading,
    .cybersecurity-tools .section-heading {
        margin-bottom: 48px;
    }

    .cyber-threats .threat-list {
        grid-template-columns: 1fr;
    }

    .learning-section .learning-content {
        padding: 38px 30px;
    }

    .cybersecurity-call-to-action {
        padding: 95px 7%;
    }

}


@media (max-width: 650px) {

    .cybersecurity-hero {
        padding: 130px 5% 75px;
    }

    .cybersecurity-hero h1 {
        margin: 16px 0;
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .cybersecurity-hero .hero-description {
        margin-bottom: 30px;
        font-size: 1rem;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
        text-align: center;
    }

    .cybersecurity-introduction,
    .cybersecurity-topics,
    .cyber-threats,
    .safety-tips,
    .cybersecurity-tools,
    .learning-section {
        padding: 72px 5%;
    }

    .cybersecurity-introduction .information-grid,
    .cybersecurity-topics .topic-grid,
    .safety-tips .tips-grid,
    .cybersecurity-tools .tools-grid {
        grid-template-columns: 1fr;
    }

    .cybersecurity-introduction .information-card,
    .cybersecurity-topics .topic-card,
    .safety-tips .tip-card,
    .cybersecurity-tools .tool-card {
        min-height: auto;
    }

    .cybersecurity-topics .topic-card > p {
        min-height: auto;
    }

    .cyber-threats .threat-card {
        gap: 16px;
        padding: 24px 20px;
    }

    .cyber-threats .threat-number {
        font-size: 1.5rem;
    }

    .learning-section .learning-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .learning-item {
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
    }

    .learning-item span {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .cybersecurity-tools .authorization-notice {
        padding: 16px 18px;
        text-align: left;
    }

    .cybersecurity-call-to-action {
        padding: 82px 5%;
    }

    .cybersecurity-call-to-action h2 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .cybersecurity-call-to-action p {
        font-size: 1rem;
        line-height: 1.75;
    }

}


@media (max-width: 420px) {

    .cybersecurity-hero {
        padding-top: 120px;
    }

    .cybersecurity-introduction .information-card,
    .cybersecurity-topics .topic-card,
    .safety-tips .tip-card,
    .cybersecurity-tools .tool-card {
        padding: 28px 22px;
    }

    .cyber-threats .threat-card {
        flex-direction: column;
    }

    .learning-item {
        flex-direction: column;
    }

    .cybersecurity-call-to-action .primary-button {
        width: 100%;
    }

}


/*==================================================
FOCUS STATES
==================================================*/

.cybersecurity-page a:focus-visible,
.cybersecurity-page button:focus-visible,
.cybersecurity-hero a:focus-visible,
.cybersecurity-call-to-action a:focus-visible {
    outline: 3px solid #35e9ff;
    outline-offset: 4px;
}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .cybersecurity-hero::before {
        animation: none;
    }

    .cybersecurity-introduction .information-card,
    .cybersecurity-topics .topic-card,
    .cyber-threats .threat-card,
    .safety-tips .tip-card,
    .cybersecurity-tools .tool-card,
    .learning-item,
    .cybersecurity-call-to-action .primary-button {
        transition: none;
    }

}


/*==================================================
PRINT STYLES
==================================================*/

@media print {

    .cybersecurity-hero::before,
    .learning-section::before,
    .learning-section::after,
    .cybersecurity-call-to-action::before {
        display: none;
    }

    .cybersecurity-hero,
    .cybersecurity-introduction,
    .cybersecurity-topics,
    .cyber-threats,
    .safety-tips,
    .cybersecurity-tools,
    .learning-section,
    .cybersecurity-call-to-action {
        background: #ffffff;
        color: #000000;
        box-shadow: none;
    }

    .cybersecurity-hero h1,
    .cybersecurity-introduction h2,
    .cybersecurity-topics h2,
    .cyber-threats h2,
    .safety-tips h2,
    .cybersecurity-tools h2,
    .learning-section h2,
    .cybersecurity-call-to-action h2,
    .information-card h3,
    .topic-card h3,
    .threat-card h3,
    .tip-card h3,
    .tool-card h3 {
        color: #000000;
        text-shadow: none;
    }

}

/* =========================================================
   CYBERSECURITY HERO BUTTONS
   ========================================================= */

.cybersecurity-hero .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.cybersecurity-hero .hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    min-height: 54px;
    padding: 14px 28px;

    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-align: center;

    border-radius: 30px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}


/* Primary red button */

.cybersecurity-hero .primary-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff1f2f,
            #d90028
        );

    border: 2px solid #ff3b3b;

    box-shadow:
        0 0 12px rgba(255, 31, 47, 0.65),
        0 0 28px rgba(217, 0, 40, 0.3);
}

.cybersecurity-hero .primary-button:hover,
.cybersecurity-hero .primary-button:focus-visible {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff5a00,
            #ff8a00
        );

    border-color: #ff9d2e;

    box-shadow:
        0 0 14px rgba(255, 90, 0, 0.75),
        0 0 34px rgba(255, 138, 0, 0.35);

    transform: translateY(-4px);
}


/* Secondary orange outline button */

.cybersecurity-hero .secondary-button {
    color: #ffffff;

    background:
        rgba(10, 12, 18, 0.75);

    border: 2px solid #ff7a00;

    box-shadow:
        inset 0 0 14px rgba(255, 122, 0, 0.08),
        0 0 14px rgba(255, 122, 0, 0.3);
}

.cybersecurity-hero .secondary-button:hover,
.cybersecurity-hero .secondary-button:focus-visible {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(255, 71, 0, 0.92),
            rgba(255, 138, 0, 0.92)
        );

    border-color: #ffb14a;

    box-shadow:
        0 0 15px rgba(255, 122, 0, 0.75),
        0 0 34px rgba(255, 71, 0, 0.35);

    transform: translateY(-4px);
}


/* Click effect */

.cybersecurity-hero .hero-buttons a:active {
    transform: translateY(-1px) scale(0.98);
}


/* Mobile layout */

@media (max-width: 600px) {

    .cybersecurity-hero .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .cybersecurity-hero .hero-buttons a {
        width: min(100%, 300px);
        min-width: 0;
    }
}

/* =========================================================
   CYBERSECURITY PAGE ANIMATIONS
   ========================================================= */

/* Hero floating effect */

.cybersecurity-page .cybersecurity-hero-content {
    animation: cyberHeroFloat 6s ease-in-out infinite;
}


/* Hero orbit ring */

.cybersecurity-page .cybersecurity-hero {
    position: relative;
    overflow: hidden;
}

.cybersecurity-page .cybersecurity-hero::before {
    content: "";
    position: absolute;
    top: 13%;
    right: 9%;

    width: 230px;
    height: 230px;

    pointer-events: none;

    border: 2px solid rgba(0, 212, 255, 0.16);
    border-radius: 50%;

    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.13),
        inset 0 0 28px rgba(0, 255, 174, 0.07);

    animation: cyberOrbit 15s linear infinite;
}

.cybersecurity-page .cybersecurity-hero::after {
    content: "";
    position: absolute;
    left: 8%;
    bottom: 8%;

    width: 125px;
    height: 125px;

    pointer-events: none;

    border: 1px dashed rgba(255, 70, 70, 0.22);
    border-radius: 50%;

    animation: cyberOrbitReverse 10s linear infinite;
}


/* Protection card icon movement */

.cybersecurity-page .protection-card .card-icon,
.cybersecurity-page .topic-card .card-icon,
.cybersecurity-page .safety-card .card-icon {
    animation: cyberIconFloat 4.2s ease-in-out infinite;
}


/* Threat card pulse */

.cybersecurity-page .threat-card {
    animation: cyberThreatPulse 3.4s ease-in-out infinite;
}

.cybersecurity-page .threat-card:nth-child(even) {
    animation-delay: 0.8s;
}


/* Safety card green glow */

.cybersecurity-page .safety-card {
    animation: cyberSafetyGlow 3.2s ease-in-out infinite;
}


/* Tool card moving highlight */

.cybersecurity-page .tool-card {
    position: relative;
    overflow: hidden;
}

.cybersecurity-page .tool-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(0, 215, 255, 0.12),
            transparent
        );

    transform: skewX(-18deg);

    animation: cyberCardSweep 5.5s ease-in-out infinite;
}


/* Learning steps pulse */

.cybersecurity-page .learning-step-number,
.cybersecurity-page .step-number {
    animation: cyberStepPulse 2.6s ease-in-out infinite;
}


/* Shared hover lift */

.cybersecurity-page .protection-card,
.cybersecurity-page .topic-card,
.cybersecurity-page .threat-card,
.cybersecurity-page .safety-card,
.cybersecurity-page .tool-card {
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.cybersecurity-page .protection-card:hover,
.cybersecurity-page .topic-card:hover,
.cybersecurity-page .threat-card:hover,
.cybersecurity-page .safety-card:hover,
.cybersecurity-page .tool-card:hover {
    transform: translateY(-8px);
}


/* =========================================================
   CYBERSECURITY KEYFRAMES
   ========================================================= */

@keyframes cyberHeroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes cyberOrbit {
    from {
        transform: rotate(0deg) translateX(8px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(8px) rotate(-360deg);
    }
}

@keyframes cyberOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes cyberIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes cyberThreatPulse {
    0%,
    100% {
        box-shadow:
            0 0 8px rgba(255, 45, 90, 0.12);
    }

    50% {
        box-shadow:
            0 0 20px rgba(255, 45, 90, 0.28),
            0 0 36px rgba(255, 80, 30, 0.12);
    }
}

@keyframes cyberSafetyGlow {
    0%,
    100% {
        box-shadow:
            0 0 8px rgba(0, 255, 160, 0.12);
    }

    50% {
        box-shadow:
            0 0 22px rgba(0, 255, 160, 0.27),
            0 0 38px rgba(0, 210, 255, 0.1);
    }
}

@keyframes cyberCardSweep {
    0% {
        left: -120%;
    }

    45%,
    100% {
        left: 150%;
    }
}

@keyframes cyberStepPulse {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.07);
        filter: brightness(1.25);
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .cybersecurity-page *,
    .cybersecurity-page *::before,
    .cybersecurity-page *::after {
        animation: none !important;
        transition: none !important;
    }
}