/* ===========================
        PROJECT HERO
=========================== */

.project-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('/assets/ARGUS_STARTINGSOON3.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.project-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.project-hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

.project-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #00c8ff;
    text-shadow: 0 0 18px #00c8ff;
}

.project-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* ===========================
       SECTION BASE STYLE
=========================== */

.project-section {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-section.alt {
    background: rgba(255, 255, 255, 0.03);
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
}

/* ===========================
       TEXT BLOCK STYLE
=========================== */

.text-block h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #00c8ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.text-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 10px;
}

/* ===== WHAT WE OFFER ===== */
.what-we-offer .section-content {
    align-items: center;
}

/* Text styling */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    margin-bottom: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

/* Glowing bullets */
.offer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00c8ff;
    font-size: 1.2rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

.offer-list strong {
    display: block;
    font-size: 1.05rem;
    color: #00c8ff;
    margin-bottom: 4px;
}

.offer-list p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

/* Image sizing */
.what-we-offer .image-block img {
    max-width: 380px;
    width: 100%;
    opacity: 0.95;
}

/* ===== MOBILE STACK ===== */
@media (max-width: 900px) {
    .what-we-offer .section-content {
        flex-direction: column;
        text-align: left;
    }

    .what-we-offer .image-block img {
        max-width: 280px;
        margin-top: 30px;
    }
}

/* ===========================
       IMAGE BLOCK STYLE
=========================== */

/* UNIVERSAL PNG GLOW (NO BOX GLOW) */
.image-block img {
    width: 250px;
    max-width: 500px;
    border-radius: 0;
    box-shadow: none !important;
    animation: pngGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.6));
}

/* PNG glow animation */
@keyframes pngGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 18px rgba(0, 200, 255, 1));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.6));
    }
}

/* ===========================
         JOIN SECTION
=========================== */

.join-section {
    text-align: center;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.6);
}

.join-section h2 {
    font-size: 3rem;
    color: #00c8ff;
    text-shadow: 0 0 15px #00c8ff;
}

.join-section p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.85;
}

.join-btn {
    margin-top: 30px;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 10px;
    background: #00c8ff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.3rem;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
}

.join-btn:hover {
    background: white;
    box-shadow: 0 0 40px rgba(0, 200, 255, 1);
}

/* ===========================
      COMBAT SECTION
=========================== */

.combat-section .text-block h3 {
    font-size: 1.4rem;
    color: #00aaff;
    margin-bottom: 10px;
}

.combat-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.combat-features ul li {
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

/* Glowing bullets */
.combat-features ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #00c8ff;
    font-size: 1.2rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* glowing blue note text */
.combat-note {
    margin-top: 10px;
    color: #9cdfff;
    font-style: italic;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 4px #00c8ff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #00e1ff;
    }

    100% {
        opacity: 0.6;
        text-shadow: 0 0 4px #00c8ff;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px #00c8ff;
    }

    50% {
        text-shadow: 0 0 15px #00e1ff;
    }

    100% {
        text-shadow: 0 0 5px #00c8ff;
    }
}

/* ===========================
SAVE DATA — KEEPING GLOWED PNG
=========================== */

.save-img img {
    width: 300px;
    height: auto;
    animation: glowPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.8));
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.8));
        transform: translateY(0);
    }

    50% {
        filter: drop-shadow(0 0 18px rgba(0, 150, 255, 1));
        transform: translateY(-5px);
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.8));
        transform: translateY(0);
    }
}

/* =========================
   CONTACT / SOCIALS
========================= */

.contact-section {
    padding: 50px 20px;
    text-align: center;

    border-top: 1px solid rgba(0, 200, 255, 0.15);
}

.contact-section h2 {
    color: #00c8ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
}

.contact-section h2::after {
    content: "";
    display: block;

    width: 60px;
    height: 3px;

    margin: 12px auto 0;

    background: #00c8ff;
    border-radius: 10px;

    box-shadow: 0 0 12px rgba(0, 200, 255, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.social-links a {
    width: 55px;
    height: 55px;

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

    color: #fff;
    font-size: 1.3rem;

    text-decoration: none;

    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.02);

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00c8ff;

    border-color: #00c8ff;

    transform: translateY(-4px);

    box-shadow:
        0 0 15px rgba(0, 200, 255, 0.2),
        0 0 30px rgba(0, 200, 255, 0.1);
}

/* ===========================
      RESPONSIVE MOBILE
=========================== */

@media (max-width: 900px) {
    .section-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .image-block img {
        max-width: 350px;
    }

    .text-block h2 {
        font-size: 2rem;
    }
}