.livebar {
    animation: bounceLiveBar 1.9s cubic-bezier(.25, 1.7, .46, 1.2) infinite alternate;
}

@keyframes bounceLiveBar {
    0% {
        transform: translateY(0);
    }

    6% {
        transform: translateY(-4px);
    }

    12% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 32px;
    right: 20px;
    background: #d10e0e;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.4em;
    box-shadow: 0 4px 15px #0002;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    z-index: 99;
    transition: opacity .4s;
}

#scrollTopBtn.show {
    display: flex;
    opacity: 1;
}

#scrollTopBtn:hover {
    background: #070862;
    color: #ffd700;
}

.wa-btn {
    position: relative;
    overflow: hidden;
}

.wa-btn::after {
    content: "✨";
    position: absolute;
    top: 6px;
    right: 14px;
    opacity: 0;
    transform: scale(0.5) rotate(20deg);
    transition: opacity .18s, transform .3s;
    font-size: 1.22em;
    pointer-events: none;
}

.wa-btn:hover::after {
    opacity: 1;
    transform: scale(1.05) rotate(-18deg);
    animation: sparkle .6s linear;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.2) rotate(-10deg);
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1) rotate(-18deg);
    }
}

@keyframes glowIn {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(50px);
        text-shadow: none;
        color: #fff;
    }

    70% {
        opacity: 1;
        transform: scale(1.03) translateY(-7px);
        text-shadow: 0 0 24px #ffd70099, 0 0 7px #fff9;
        color: #fff;
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        text-shadow: 0 0 11px #ffd70099, 0 0 3px #fff9;
        color: #fff;
    }
}

.header-title {
    /* existing styles */
    animation: glowIn 1s cubic-bezier(.25, 1.6, .36, 1) 0.08s both;
}


/* Fade and slide-in animation for sections */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-section {
    opacity: 0;
    animation: fadeSlideIn 0.85s cubic-bezier(.4, 1.5, .3, 1) forwards;
}

.animated-delay-1 {
    animation-delay: .15s;
}

.animated-delay-2 {
    animation-delay: .3s;
}

.animated-delay-3 {
    animation-delay: .45s;
}

.animated-delay-4 {
    animation-delay: .6s;
}

.animated-delay-5 {
    animation-delay: .75s;
}

.animated-delay-6 {
    animation-delay: .9s;
}

/* Pulse for LIVE dot */
.live-dot {
    animation: pulseLiveDot 1.3s infinite alternate;
}

@keyframes pulseLiveDot {
    from {
        box-shadow: 0 0 6px 3px #f44, 0 0 0 #fff;
    }

    to {
        box-shadow: 0 0 20px 7px #f44, 0 0 0 #fff;
    }
}

/* Button hover pop */
.job-box,
.talent-btn,
.view-more-btn {
    transition: transform 0.13s cubic-bezier(.6, 2.3, .2, .9), box-shadow 0.18s;
}

.job-box:hover,
.talent-btn:hover,
.view-more-btn:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 5px 14px #0002;
    z-index: 2;
}

/* Nav link hover (already present, but now with slight scale) */
.nav-links a:hover,
.nav-links a.active {
    background: #2c1572;
    color: #ffea00;
    transform: scale(1.06);
}

/* Reset & base */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    background: #ededed;
    font-family: Arial, Helvetica, sans-serif;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* HEADER */
.header-main {
    background: #d10e0e;
    text-align: center;
    padding: 36px 0 20px 0;
}

.header-title {
    color: #fff;
    font-size: 2.25em;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.header-domain {
    color: #fff;
    font-size: 1.19em;
    margin-top: 7px;
    font-weight: 500;
}

/* NAVBAR */
.navbar-wrap {
    background: #070862;
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: #fff;
    padding: 13px 14px;
    font-size: 1.08em;
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: none;
    outline: none;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
    margin: 0;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    background: #2c1572;
    color: #ffea00;
}

.nav-search {
    color: #fff;
    font-size: 1.18em;
    padding: 0 12px;
    opacity: 0.8;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 2.2em;
    background: none;
    border: none;
    color: #fff;
    padding: 7px 10px;
    cursor: pointer;
    margin-left: auto;
}

/* HOMEPAGE BLOCKS */
.main-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 2px 10px #0002;
    border-radius: 8px;
}

.header {
    text-align: center;
    color: #800000;
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    padding: 22px 0 12px 0;
}

.disclaimer {
    background: #fffde0;
    color: #800000;
    padding: 10px;
    border: 1px solid #ffe066;
    border-radius: 4px;
    max-width: 900px;
    margin: 12px auto;
    font-size: 1.05em;
    text-align: center;
}

.livebar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 18px 0 0;
}

.live-dot {
    background: #d00;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    margin-right: 7px;
    box-shadow: 0 0 5px #f44;
    border: 2px solid #fff;
    display: inline-block;
}

.live-label {
    color: #222;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
}

.wa-btn {
    background: #25d366;
    color: #fff;
    padding: 6px 16px 7px 12px;
    border-radius: 21px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    font-size: 1.1em;
    text-decoration: none;
    margin-left: 12px;
    border: none;
}

.wa-btn img {
    width: 22px;
    height: 22px;
    margin-right: 7px;
}

.job-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 8px 12px 8px 12px;
}

.job-box {
    flex: 1 0 200px;
    min-width: 180px;
    max-width: 260px;
    background: #f5f5f5;
    color: #222;
    border-radius: 8px;
    font-size: 1.09em;
    font-weight: bold;
    text-align: center;
    padding: 14px 7px 13px 7px;
    text-decoration: none;
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: 0 1px 6px #0001;
    border-bottom: 3px solid #ccc;
    line-height: 1.3em;
    margin-bottom: 7px;
}

.job-box.red {
    background: #ff2222;
    color: #fff;
    border-bottom: 3px solid #ba0d0d;
}

.job-box.orange {
    background: #ff9900;
    color: #fff;
    border-bottom: 3px solid #cc7a00;
}

.job-box.pink {
    background: #ff43f4;
    color: #fff;
    border-bottom: 3px solid #cb20bc;
}

.job-box.blue {
    background: #2867ec;
    color: #fff;
    border-bottom: 3px solid #0e3166;
}

.job-box.green {
    background: #2eb74f;
    color: #fff;
    border-bottom: 3px solid #196c2e;
}

.job-box.army {
    background: #c8cc25;
    color: #222;
    border-bottom: 3px solid #9ba00b;
}

.job-box.maroon {
    background: #800000;
    color: #fff;
    border-bottom: 3px solid #590e0e;
}

/* Talent.com/Jobs Near You */
.talent-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
    margin: 20px 10px 8px 10px;
}

.talent-left {
    flex: 1;
    min-width: 230px;
    max-width: 350px;
    background: #f6f6f6;
    border: 1px solid #ddd;
    padding: 18px 10px 16px 10px;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.talent-btn {
    display: block;
    width: 90%;
    background: #692e7e;
    color: #fff;
    font-size: 1.15em;
    font-weight: bold;
    padding: 13px 0 11px 0;
    margin: 8px auto 8px auto;
    border-radius: 5px;
    text-align: left;
    text-indent: 18px;
    text-decoration: none;
    transition: background 0.15s;
}

.talent-btn span {
    font-size: 1.25em;
    vertical-align: middle;
    margin-right: 7px;
}

.talent-btn.sub {
    background: #a259af;
    margin-bottom: 6px;
    margin-top: 6px;
}

.talent-dot {
    color: #a259af;
    font-size: 1.07em;
    margin-top: 18px;
    font-weight: bold;
}

.talent-right {
    flex: 1;
    min-width: 230px;
    max-width: 350px;
    background: #fff;
    padding: 18px 10px 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.talent-right b {
    font-size: 1.18em;
}

.talent-right p {
    color: #555;
    font-size: 1em;
    margin: 10px 0 12px 0;
}

.talent-right a {
    color: #8d38e8;
    font-size: 1.08em;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 6px;
}

/* 3-Column Main Sections */
.tri-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 0 10px 0 10px;
}

.tri-col {
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    margin-bottom: 18px;
}

.tri-col-head {
    background: #a40000;
    color: #fff;
    font-weight: bold;
    font-size: 1.18em;
    padding: 8px 10px 8px 16px;
    border-radius: 7px 7px 0 0;
}

.tri-col-body {
    background: #fff;
    border: 1.5px solid #a40000;
    border-top: none;
    border-radius: 0 0 7px 7px;
    min-height: 230px;
}

.tri-col-body ul {
    list-style: disc inside;
    margin: 0;
    padding: 13px 0 12px 24px;
    font-size: 1em;
}

.tri-col-body a {
    color: #0b3992;
    text-decoration: underline;
}

.view-more-btn {
    display: block;
    width: 98px;
    margin: 8px auto 0 auto;
    padding: 9px 0;
    background: #0081e5;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    text-align: center;
    font-size: 1.03em;
    text-decoration: none;
    box-shadow: 0 1px 4px #0001;
}

/* Bottom Red Blocks (Answer Key, Documents, Admission) */
.three-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 24px 10px 0 10px;
}

.block-col {
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    margin-bottom: 18px;
}

.block-head {
    background: #b11d1d;
    color: #fff;
    font-weight: bold;
    font-size: 1.18em;
    padding: 8px 10px 8px 16px;
    border-radius: 7px 7px 0 0;
}

.block-body {
    background: #fff;
    border: 1.5px solid #b11d1d;
    border-top: none;
    border-radius: 0 0 7px 7px;
    min-height: 140px;
}

.block-body ul {
    list-style: disc inside;
    margin: 0;
    padding: 13px 0 12px 24px;
    font-size: 1em;
}

.block-body a {
    color: #0b3992;
    text-decoration: underline;
}

/* Info Table */
.info-box {
    background: #fff;
    border-radius: 7px;
    margin: 28px 0 12px 0;
    padding: 15px 20px;
    box-shadow: 0 1px 4px #0001;
}

.info-box b {
    color: #800000;
}

.info-table {
    margin: 16px auto 4px auto;
    border-collapse: collapse;
    width: 95%;
    text-align: center;
}

.info-table td,
.info-table th {
    border: 1px solid #bbb;
    padding: 8px;
    font-size: 1.07em;
}

.info-table th {
    background: #e0e0e0;
}

.green-star {
    color: green;
    font-weight: bold;
}

.blue-link {
    color: #0b3992;
    text-decoration: underline;
}

/* Red Headline Blocks */
.red-headline {
    background: #a40000;
    color: #fff;
    font-size: 1.23em;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin-top: 12px;
    border-radius: 4px;
}

.desc-txt {
    padding: 12px 18px;
    font-size: 1.07em;
    background: #fff;
}

@media (max-width: 1000px) {
    .main-wrap {
        max-width: 99vw;
    }
}

@media (max-width: 900px) {

    .job-grid,
    .tri-columns,
    .three-blocks,
    .talent-wrap {
        flex-direction: column;
        gap: 7px;
    }

    .tri-col,
    .block-col,
    .talent-left,
    .talent-right {
        max-width: 100%;
    }

    .main-wrap {
        max-width: 98vw;
    }

    .navbar {
        max-width: 99vw;
        padding: 0 4px;
    }

    .nav-links a {
        font-size: 1em;
        padding: 12px 8px;
    }
}

@media (max-width: 700px) {
    .header-main {
        padding: 21px 0 13px 0;
    }

    .header-title {
        font-size: 1.05em;
    }

    .header-domain {
        font-size: .92em;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .nav-search {
        display: none;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        background: #070862;
        width: 100vw;
        left: 0;
        top: 100%;
        position: absolute;
        z-index: 10;
        display: none;
        box-shadow: 0 2px 10px #0001;
        padding-bottom: 6px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #181565;
        font-size: 1.03em;
        padding: 14px 18px;
    }

    .job-grid {
        flex-direction: column;
    }

    .talent-wrap {
        flex-direction: column;
    }

    .tri-columns,
    .three-blocks {
        flex-direction: column;
    }
}

@media (max-width:420px) {
    .header-title {
        font-size: .85em;
    }

    .header-main {
        padding: 11px 0 6px 0;
    }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper p{
    padding: 0 20px;

}
.entry-content {

    color: #000000;
    margin: 0 20px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
}