/* ============================================================
   CAREERS PAGE — TEMPLATE CSS
   Premium modern design
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
    --cr-blue: #2563EB;
    --cr-blue-dark: #1D4ED8;
    --cr-blue-light: #3B82F6;
    --cr-navy: #0F172A;
    --cr-dark: #1E293B;
    --cr-white: #FFFFFF;
    --cr-gray: #94A3B8;
    --cr-light: #F1F5F9;
    --cr-radius: 16px;
    --cr-radius-sm: 10px;
    --cr-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.cr-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px;
    overflow: hidden;
}

.cr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.65) 0%,
            rgba(15, 23, 42, 0.80) 100%);
    z-index: 1;
}

.cr-hero__container {
    position: relative;
    z-index: 2;
}

.cr-hero__content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.cr-hero__title {
    font-size: 52PX;
    font-weight: 400;
    color: var(--cr-white);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cr-hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
    margin-right: auto;
}

.cr-hero__subtitle p {
    margin: 0;
}

/* Badges Row */
.cr-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.cr-hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cr-white);
    font-size: 0.92rem;
    font-weight: 600;
}

.cr-hero__badge-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.cr-hero__badge-check {
    width: 22px;
    height: 22px;
}

/* Buttons */
.cr-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cr-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--cr-transition);
    cursor: pointer;
}

.cr-hero__btn--primary {
    background: var(--cr-blue);
    color: var(--cr-white);
    border: 2px solid var(--cr-blue);
}

.cr-hero__btn--primary:hover {
    background: var(--cr-blue-dark);
    border-color: var(--cr-blue-dark);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cr-hero__btn--secondary {
    background: transparent;
    color: var(--cr-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cr-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--cr-white);
    transform: translateY(-2px);
}

/* ── COUNTER SECTION ───────────────────────────────────────── */
.cr-counter-section {
    background: var(--cr-blue);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
    padding: 30px 0;
}

.cr-counter-row {
    position: relative;
    z-index: 1;
}

.cr-counter-item {
    transition: transform 0.3s ease;
}

.cr-counter-item:hover {
    transform: translateX(-5px);
}

.cr-counter-icon img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
    object-fit: contain;
}

.cr-counter-number-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.cr-counter-number {
    font-size: 42px;
    font-weight: 500;
    color: var(--cr-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.cr-counter-suffix {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--cr-white);
}

.cr-counter-label p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── MEET SECTION ──────────────────────────────────────────── */
.cr-meet {
    padding: 50px 0;
    background: var(--cr-white);
}

.cr-meet__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cr-meet__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--cr-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.cr-meet__title {
    font-size: 36px;
    font-weight: 500;
    color: var(--cr-navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.cr-meet__desc {
    font-size: 1rem;
    color: #434e5e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cr-meet__desc p {
    margin: 0 0 10px;
}

.cr-meet__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--cr-navy);
    font-weight: 500;
    border: 1px solid #64748b;
    padding: 4px 10px;
    border-radius: 10px;
}

.cr-meet__features.horizontal-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    display: flex;
}

.cr-meet__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--cr-navy);
    font-weight: 500;
}

.cr-meet__feature-icon {
    height: 28px;
    object-fit: contain;
}

.cr-meet__feature-icon-svg {
    width: 24px;
    height: 24px;
}

.cr-meet__media {
    position: relative;
}

.cr-meet__image-wrap {
    position: relative;
    border-radius: var(--cr-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.cr-meet__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cr-meet__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--cr-transition);
    z-index: 2;
}

.cr-meet__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.cr-meet__play-btn svg {
    width: 70px;
    height: 70px;
}

/* ── OPENINGS SECTION ──────────────────────────────────────── */
.cr-opening {
padding: 50px 0;
background: linear-gradient(180deg, rgba(4, 93, 199, .85) 2.28%, #000a16 104.46%);
}

.cr-opening__header {
    margin-bottom: 36px;
}

.cr-opening__title {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.cr-opening__subtitle {
    font-size: 18px;
    color: #ececec;
}

/* Job Card Design */
.cr-job-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.cr-job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.1);
}

.cr-job-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
       background: #0d6efd; /* Default soft pink bg as seen in screen */
}

/* Alternate Icon Bgs */

.cr-job-card__icon-wrap img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cr-job-card__icon-fallback {
    font-size: 24px;
}

.cr-job-card__title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cr-navy);
    margin-bottom: 12px;
}

.cr-job-card__desc {
    font-size: 0.92rem;
    color: #242424;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
    font-weight: 400;
}

.cr-job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
}

.cr-job-tag {
    padding: 3px 10px;
    background: #e7f0f9;
    color: #475569;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    transition: var(--cr-transition);
    border: 1px solid #0d6efd80;
}

.cr-job-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
}

.cr-job-apply {
    color: #fff;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: var(--cr-transition);
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    transition: transform 0.3s ease;
}

.cr-job-apply svg {
    transition: transform 0.3s ease;
}

.cr-job-apply:hover {
    background: var(--cr-blue-dark);
    color: var(--cr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transition: transform 0.3s ease;
}

.cr-job-apply:hover svg {
    transform: translateX(4px);
}

/* ── LUXURY OUTLINE PILL JD BUTTON (RIGHT SIDE) ─────────────────── */
.cr-job-jd-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 7px 10px !important;
    border-radius: 50px !important;
    background: #edf5ff !important;
    color: #1d4ed8 !important;
    border: 1.5px solid #60a5fa !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08) !important;
    line-height: 1 !important;
    height: auto !important;
    margin: 0 !important;
    text-transform: none !important;
}

.cr-job-jd-btn svg {
    stroke: #2563eb !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.cr-job-jd-btn span {
    color: #1d4ed8 !important;
    transition: color 0.3s ease !important;
}

.cr-job-jd-btn:hover {
    background: #1d4ed8 !important;
    color: #ffffff !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(29, 78, 216, 0.35) !important;
}

.cr-job-jd-btn:hover svg {
    stroke: #ffffff !important;
    transform: scale(1.1) !important;
}

.cr-job-jd-btn:hover span {
    color: #ffffff !important;
}

/* ── SLEEK COMPACT PROFESSIONAL BOOTSTRAP MODAL ─────────────────── */
.cr-jd-modal {
    z-index: 100050 !important;
}

.cr-jd-modal .modal-dialog {
    max-width: 640px;
    margin: 20px auto;
}

.modal-backdrop.show {
    background-color: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(6px) !important;
    z-index: 100040 !important;
}

.cr-jd-modal__content {
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22) !important;
    overflow: hidden;
    background: #ffffff;
}

/* Modal Header: Theme Blue Gradient */
.cr-jd-modal__header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 16px 22px !important;
    position: relative !important;
}

.cr-jd-modal__icon-wrap {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cr-jd-modal__icon-wrap img {
    height: 24px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
}

.cr-jd-modal__title {
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.25 !important;
}

.cr-jd-tag {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    padding: 2px 9px !important;
    border-radius: 50px !important;
}

.cr-jd-modal__close-btn {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    padding: 0 !important;
}

.cr-jd-modal__close-btn svg {
    stroke: #ffffff !important;
    transition: stroke 0.2s ease !important;
}

.cr-jd-modal__close-btn:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #1d4ed8 !important;
}

.cr-jd-modal__close-btn:hover svg {
    stroke: #1d4ed8 !important;
}

/* Modal Body */
.cr-jd-modal__body {
    padding: 20px 22px;
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.7;
    max-height: 60vh;
    background: #ffffff;
}

.cr-jd-body-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e2e8f0;
}

/* Rich Description & Fallback Content Box */
.cr-jd-content {
    color: #334155;
}

.cr-jd-fallback-desc {
    background: #f8fafc;
    border-left: 3.5px solid #2563eb;
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
}

.cr-jd-fallback-desc p {
    margin: 0;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
}

.cr-jd-content h2{
    font-size: 22px;
}
.cr-jd-content h3, 
.cr-jd-content h4, 
.cr-jd-content h5 {
    font-weight: 600;
    color: #0f172a;
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.cr-jd-content p {
    margin-bottom: 12px;
}

.cr-jd-content ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    margin-bottom: 16px;
}

.cr-jd-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.91rem;
    color: #334155;
    line-height: 1.6;
}

.cr-jd-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

/* Modal Footer */
.cr-jd-modal__footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 12px 20px;
}

.cr-jd-modal__btn-close {
    background: #ffffff;
    color: #64748b;
    font-weight: 600;
    border-radius: 30px;
    padding: 6px 18px;
    border: 1px solid #cbd5e1;
    font-size: 12px;
    transition: all 0.2s ease;
    outline: none;
}

.cr-jd-modal__btn-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.cr-jd-modal__btn-apply {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 8px 22px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.3s ease !important;
}

.cr-jd-modal__btn-apply:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4) !important;
}

.cr-opening__apply-btn:hover {
    background: var(--cr-blue-dark);
    color: var(--cr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
        transition: transform 0.3s ease;
}

/* ── BENEFITS SECTION ──────────────────────────────────────── */
.cr-benefits {
    padding: 50px 0;
    background: var(--cr-blue);
}

.cr-benefits__header {
    margin-bottom: 30px;
}

.cr-benefits__title {
    font-size: 36px;
    font-weight: 500;
    color: var(--cr-white);
    margin-bottom: 12px;
}

.cr-benefits__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.cr-benefits__subtitle p {
    margin: 0;
}

.cr-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cr-benefits__card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.20);
        border-radius: 0;
    padding: 32px 24px;
    transition: var(--cr-transition);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.cr-benefits__card::before {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    pointer-events: none;
    z-index: 1;
}
.cr-benefits__card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.cr-benefits__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #000000, #2563eb);
}

.cr-benefits__card-icon img {
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cr-benefits__card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--cr-white);
    margin-bottom: 10px;
}

.cr-benefits__card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin: 0;
}

/* ── CTA SECTION ───────────────────────────────────────────── */
.cr-cta {
    position: relative;
    padding: 65px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 50px;
}

.cr-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(37, 99, 235, 0.15) 0%,
            rgba(37, 99, 235, 0.15) 100%);
    z-index: 1;
}

.cr-cta__container {
    position: relative;
    z-index: 2;
}

.cr-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cr-cta__title {
    font-size: 36px;
    font-weight: 500;
    color: var(--cr-white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.cr-cta__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cr-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 36px;
    background: transparent;
    color: var(--cr-white);
    border: 2px solid var(--cr-white);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--cr-transition);
}

.cr-cta__btn:hover {
    background: var(--cr-white);
    color: var(--cr-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1199px) {
.cr-hero__title {
    font-size: 38PX;
}
.cr-hero__subtitle {
    font-size: 18px;
    margin-bottom: 30px;

}
.cr-meet ,.cr-opening,.cr-benefits
{
    padding: 45px 0;
}
.cr-meet__eyebrow {
    padding: 4px 16px;
    font-size: 11px;
    margin-bottom: 10px;
}
.cr-meet__title,.cr-opening__title,.cr-benefits__title,.cr-cta__title
 {
    font-size: 32px;
}
.cr-meet__feature {
    font-size: 13px;
}
.cr-job-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.cr-job-card__title {
    font-size: 18px;
    margin-bottom: 8px;
}
.cr-job-apply {
    font-size: 12px;
    padding: 8px 20px;
}
.cr-job-card__icon-wrap img {
    height: 36px;
}
.cr-benefits__card-title {
    font-size: 18px;
}
.cr-cta {
    padding: 50px 0;
    margin-top: 40px;
}
}
/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .cr-hero__title {
        font-size: 36PX;
    }
    .cr-hero__badges {
    margin-bottom: 28px;
}
    .cr-hero {
        padding: 120px 0 50px;
    }

    .cr-counter-section {
        padding: 40px 0;
    }

    .cr-counter-number {
        font-size: 2rem;
    }

    .cr-meet__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-meet__media {
        order: -1;
    }

    .cr-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-opening__item {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 767px) {
.cr-hero__title {
        font-size: 32PX;
    }
    .cr-hero__subtitle {
        font-size: 16px;
        margin-bottom: 26px;
    }
    .cr-hero__badge {
    font-size: 14px;
}
    .cr-meet, .cr-opening, .cr-benefits {
        padding: 40px 0;
    }
        .cr-meet__title, .cr-opening__title, .cr-benefits__title, .cr-cta__title {
        font-size: 28px;
    }
    .cr-opening__subtitle {
    font-size: 17px;
}
    .cr-job-card__icon-wrap img {
        height: 32px;
    }
    .cr-benefits__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
}
    .cr-cta {
        padding: 40px 0;
        margin-top: 32px;
    }
        .page-template-template-careers .content-bottom-widgets {
        padding-top: 38px;
    }
    .cr-meet__play-btn svg {
    width: 58px;
    height: 58px;
}
}
@media (max-width: 575px) {
    .cr-meet__play-btn svg {
    width: 50px;
    height: 50px;
}
    .cr-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .cr-hero__badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cr-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cr-hero__btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .cr-counter-number {
        font-size: 1.8rem;
    }

    .cr-benefits__grid {
        grid-template-columns: 1fr;
    }

    .cr-meet, .cr-opening, .cr-benefits {
        padding: 40px 0;
    }

    .cr-opening__item {
        padding: 20px;
    }

    .cr-opening__job-meta {
        gap: 10px;
    }
    .cr-meet__title, .cr-opening__title, .cr-benefits__title, .cr-cta__title {
        font-size: 25px;
    }

    /* Modal Mobile Adjustments */
    .cr-jd-modal .modal-dialog {
        margin: 10px;
    }
    .cr-jd-modal__header {
        padding: 16px 18px;
    }
    .cr-jd-modal__title {
        font-size: 1.1rem;
    }
    .cr-jd-modal__icon-wrap {
        width: 42px !important;
        height: 42px !important;
    }
    .cr-jd-modal__icon-wrap img {
        height: 26px !important;
    }
    .cr-jd-modal__body {
        padding: 20px 16px;
        font-size: 0.9rem;
        line-height: 1.65;
        max-height: 68vh;
    }
    .cr-jd-section-title {
        font-size: 1.1rem;
    }
    .cr-jd-modal__footer {
        padding: 14px 16px;
    }
    .cr-jd-modal__btn-close,
    .cr-jd-modal__btn-apply {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
    .cr-job-card__footer {
        gap: 6px;
    }
    .cr-job-apply {
        padding: 8px 14px;
        font-size: 11px;
    }
    .cr-job-jd-btn {
        padding: 8px 14px !important;
        font-size: 11px !important;
    }
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes cr-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cr-hero__content {
    animation: cr-fadeInUp 0.8s ease-out;
}

.cr-counter__item,
.cr-benefits__card,
.cr-opening__item {
    opacity: 0;
    animation: cr-fadeInUp 0.6s ease-out forwards;
}

.cr-counter__item:nth-child(1),
.cr-benefits__card:nth-child(1),
.cr-opening__item:nth-child(1) {
    animation-delay: 0.1s;
}

.cr-counter__item:nth-child(2),
.cr-benefits__card:nth-child(2),
.cr-opening__item:nth-child(2) {
    animation-delay: 0.2s;
}

.cr-counter__item:nth-child(3),
.cr-benefits__card:nth-child(3),
.cr-opening__item:nth-child(3) {
    animation-delay: 0.3s;
}

.cr-counter__item:nth-child(4),
.cr-benefits__card:nth-child(4),
.cr-opening__item:nth-child(4) {
    animation-delay: 0.4s;
}

.cr-counter__item:nth-child(5),
.cr-benefits__card:nth-child(5),
.cr-opening__item:nth-child(5) {
    animation-delay: 0.5s;
}

.cr-counter__item:nth-child(6),
.cr-benefits__card:nth-child(6),
.cr-opening__item:nth-child(6) {
    animation-delay: 0.6s;
}
