/* *****************************************************

    Advantage Point Custom Styling
    Infrastructure / Operations Theme

***************************************************** */


/* ==================================================
   GLOBAL
================================================== */

body {
    background:
        linear-gradient(
            180deg,
            #edf2f7 0%,
            #e6edf5 100%
        );

    color: #2b3440;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#main-body {
    background:
        linear-gradient(
            180deg,
            #eef3f8 0%,
            #e8eef5 100%
        );

    min-height: 700px;
}


/* ==================================================
   HERO SECTION
================================================== */

#home-banner {
    background:
        radial-gradient(circle at top, rgba(90,140,255,0.12), transparent 55%),
        linear-gradient(135deg, #132f52 0%, #1a3d66 45%, #1d416d 100%);

    padding-top: 70px;
    padding-bottom: 70px;

    position: relative;
    overflow: hidden;
}

/* animated glow layer */
#home-banner::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(100,180,255,0.08), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(120,220,255,0.05), transparent 35%);

    animation: pulseGlow 8s ease-in-out infinite alternate;

    pointer-events: none;
}

/* subtle particles */
#home-banner::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.10) 1.2px,
            transparent 1.2px
        );

    background-size: 70px 70px;

    opacity: 0.22;

    pointer-events: none;
}

@keyframes pulseGlow {

    from {
        opacity: 0.45;
        transform: scale(1);
    }

    to {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

#home-banner h2 {
    color: #ffffff;

    font-size: 52px;
    font-weight: 300;

    letter-spacing: 0.5px;

    margin-bottom: 18px;

    text-shadow:
        0 0 8px rgba(120,180,255,0.18),
        0 0 24px rgba(80,140,255,0.18);
}

#home-banner .lead {
    color: rgba(255,255,255,0.88);

    font-size: 24px;

    letter-spacing: 0.4px;

    margin-bottom: 40px;
}


/* ==================================================
   LIVE STATS
================================================== */

.ap-live-stats {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;

    position: relative;
    z-index: 2;
}

.stat-box {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.01)
        );

    border: 1px solid rgba(255,255,255,0.08);

    padding: 18px 28px;

    border-radius: 14px;

    min-width: 200px;

    backdrop-filter: blur(10px);

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

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 8px 30px rgba(0,0,0,0.18);

    position: relative;
    overflow: hidden;

    animation: softPulse 5s ease-in-out infinite;
}

/* glowing border */
.stat-box::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(120,180,255,0.35),
            rgba(255,255,255,0.02),
            rgba(120,180,255,0.15)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-4px) scale(1.02);

    border-color: rgba(120,180,255,0.28);

    box-shadow:
        0 0 25px rgba(80,140,255,0.18),
        0 12px 40px rgba(0,0,0,0.22);
}

@keyframes softPulse {

    0% {
        box-shadow:
            0 0 0 rgba(80,140,255,0.08),
            0 8px 30px rgba(0,0,0,0.18);
    }

    50% {
        box-shadow:
            0 0 28px rgba(80,140,255,0.14),
            0 12px 40px rgba(0,0,0,0.22);
    }

    100% {
        box-shadow:
            0 0 0 rgba(80,140,255,0.08),
            0 8px 30px rgba(0,0,0,0.18);
    }
}

.stat-label {
    display: block;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.55);

    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;

    font-weight: 600;

    color: #ffffff;

    text-shadow:
        0 0 10px rgba(255,255,255,0.08);
}

.online {
    color: #73ff9f;

    text-shadow:
        0 0 12px rgba(115,255,159,0.35),
        0 0 24px rgba(115,255,159,0.18);
}


/* ==================================================
   SHORTCUT BAR
================================================== */

.home-shortcuts {
    background:
        linear-gradient(
            90deg,
            #4d8db5,
            #5ca3cc
        );

    border-top: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.home-shortcuts .lead {
    color: rgba(255,255,255,0.92);

    letter-spacing: 0.5px;
}

.home-shortcuts li a {
    transition: all 0.25s ease;

    position: relative;
}

.home-shortcuts li a:hover {
    background: rgba(255,255,255,0.08);

    transform: translateY(-2px);

    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.04);
}

.home-shortcuts li a i {
    transition:
        transform 0.25s ease,
        text-shadow 0.25s ease;
}

.home-shortcuts li a:hover i {
    transform: scale(1.08);

    text-shadow:
        0 0 12px rgba(255,255,255,0.28);
}


/* ==================================================
   NAVBAR
================================================== */

.navbar-main {
    background: #1d4f7a !important;

    border: none;

    box-shadow:
        0 2px 12px rgba(0,0,0,0.12);
}

.navbar-main .navbar-nav > li > a {
    transition:
        color 0.2s ease,
        text-shadow 0.2s ease;
}

.navbar-main .navbar-nav > li > a:hover {
    text-shadow:
        0 0 12px rgba(255,255,255,0.22);
}


/* ==================================================
   LOGO
================================================== */

.logo img,
.logo-text {
    transition: all 0.3s ease;
}

.logo:hover img,
.logo-text:hover {
    filter:
        drop-shadow(0 0 10px rgba(80,140,255,0.22));
}


/* ==================================================
   ANNOUNCEMENTS / NEWS
================================================== */

.news-content,
.news-body,
.announcement-single {
    border-radius: 12px;

    overflow: hidden;

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

.news-content:hover,
.news-body:hover,
.announcement-single:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.12);
}


/* ==================================================
   FOOTER
================================================== */

#footer {
    background:
        linear-gradient(
            180deg,
            #24374f 0%,
            #1d2d42 100%
        );

    border-top: 1px solid rgba(255,255,255,0.04);

    padding-top: 28px;
    padding-bottom: 28px;

    color: rgba(255,255,255,0.72);
}

#footer p,
#footer a {
    color: rgba(255,255,255,0.72);
}

#footer a:hover {
    color: #ffffff;

    text-decoration: none;
}

.back-to-top {
    background: rgba(255,255,255,0.08);

    border-radius: 8px;

    transition: all 0.25s ease;
}

.back-to-top:hover {
    background: rgba(255,255,255,0.14);
}


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

@media (max-width: 768px) {

    #home-banner h2 {
        font-size: 34px;
    }

    #home-banner .lead {
        font-size: 18px;
    }

    .stat-box {
        min-width: 100%;
    }
}
```
