/* ── Career card (cyb-cw-* classes) ── */
.cyb-cw-card {
    width: 100% !important;
    height: 240px !important;
    background-color: #fcfcfd !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    transition: none !important;
    box-shadow: none !important;
}

.cyb-cw-card:hover {
    background-color: #D9D9D9 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.cyb-cw-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    flex: 1 !important;
}

.cyb-cw-heading {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1b !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.cyb-cw-detail {
    font-size: 12px !important;
    color: #4a5568 !important;
    line-height: 1.4 !important;
    margin: 0 0 6px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.cyb-cw-detail strong {
    color: #2d3748 !important;
    font-weight: 600 !important;
}

.swiper-slide:hover {
    background-color: transparent !important;
}

@media screen and (max-width: 1024px) {
    .cyb-cw-card {
        height: 230px !important;
        padding: 12px !important;
    }
}

@media screen and (max-width: 768px) {
    .cyb-cw-card {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        min-height: 200px !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 480px) {
    .cyb-cw-card {
        max-width: 100% !important;
        min-height: 180px !important;
        padding: 12px !important;
    }

    .cyb-cw-heading {
        font-size: 13px !important;
        margin: 0 0 6px !important;
    }

    .cyb-cw-detail {
        font-size: 11px !important;
        margin: 0 0 4px !important;
    }
}

@media screen and (min-width: 1440px) {
    .cyb-cw-card {
        height: 260px !important;
        padding: 18px !important;
    }

    .cyb-cw-heading {
        font-size: 15px !important;
    }

    .cyb-cw-detail {
        font-size: 13px !important;
    }
}

/* ── Mobile career accordion ── */
@media only screen and (max-width:768px) {

    .desktop-view .career-section {
        display: none !important;
    }

    .mobile-view .m-career {
        display: block !important;
        margin-bottom: 10px;
        border: 1px solid #e2e8f0;
        overflow: hidden;
        border-radius: 8px;
        background: white;
        transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #career-section-mobile .m-container {
        margin-bottom: 10px;
        margin-top: 10px;
        margin-left: 10px;
        border: 1px solid #e2e8f0;
        overflow: hidden;
        border-radius: 8px;
        background: white;
        transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .m-career.active-container,
    #career-section-mobile .m-container.active-container {
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        border-color: #e2e8f0;
    }

    .career-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid transparent;
        background-color: #1f5183;
        padding: 10px 20px;
        position: relative;
        z-index: 2;
    }

    .career-title:hover {
        background-color: #2a6bb0;
    }

    .career-title.active {
        background-color: #193a64 !important;
    }

    .career-title.active h3 {
        color: #ffffff !important;
        font-weight: 600;
    }

    .career-toggle-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .career-title.active .career-toggle-icon {
        color: #ffffff;
        transform: rotate(180deg);
    }

    .career-content {
        display: none;
        background: #f8f9fa;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid #e2e8f0;
    }

    .career-content.expanded {
        display: block;
    }

    .career-mobile-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin: 10px;
        padding: 15px;
        border: 1px solid #e2e8f0;
    }

    .blog-cat-inn { height: 100%; }

    .blog-cat {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-cat a {
        text-decoration: none;
        color: inherit;
        flex: 1;
    }

    .blog-cat h4 {
        color: #1f5183;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .blog-cat p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .copy-right { margin-top: auto; }

    .copy-right ul {
        display: flex;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .copy-right ul li a {
        color: #64748b;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    .copy-right ul li a:hover {
        color: #1f5183;
    }

    .skeleton-box { transition: opacity 0.3s ease; }

    .skeleton-box[data-skeleton] {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    .skeleton-box:not([data-skeleton]) {
        background: none !important;
        animation: none !important;
    }

    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    .swiper-container { padding: 15px 0; }

    .navigation-container {
        padding: 25px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #cbd5e1;
        opacity: 0.6;
        transition: all 0.3s ease;
        margin: 0 !important;
    }

    .swiper-pagination-bullet-active {
        background: #1f5183;
        opacity: 1;
        transform: scale(1.2);
    }

    .count-nav-box {
        position: absolute;
        right: 20px;
        top: 95%;
        transform: translateY(-50%);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.8rem;
        color: #0a0a0a;
        font-weight: 500;
    }
}

@media only screen and (min-width:769px) {
    .mobile-view .m-career,
    #career-section-mobile {
        display: none !important;
    }
}

/* ── Contact / headline section ── */
.cyb-cw {
    width: 200px;
    height: 220px;
    padding: 10px;
}

.careers-cyb-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: #f1f2f8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.careers-cyb-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.careers-cyb-body {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.625;
    margin: 0 auto 1.5rem auto;
    max-width: 42rem;
}

.careers-cyb-contact-box {
    display: inline-block;
    text-align: left;
    border-left: 2px solid #3b82f6;
    padding-left: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.careers-cyb-contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.careers-cyb-contact-email-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

.careers-cyb-contact-link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.careers-cyb-contact-link:hover {
    text-decoration: underline;
}

.careers-cyb-contact-footer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .careers-cyb-container {
        padding: 3rem 1rem;
    }
}

/* ── Menu carousel controls ── */
.menu-carousel .glider-prev,
.menu-carousel .glider-next {
    display: inline-block;
    background: #15416e;
    border: 1px solid #ccc;
    color: #fff;
    font-size: 22px;
    padding: 6px 12px;
    margin-left: 150px;
    cursor: pointer;
    z-index: 2;
    margin-top: -7px;
    border-radius: 5px;
    height: 40px;
    width: 40px;
}

.menu-carousel .glider-next {
    margin-left: 0px;
    margin-right: 150px;
}

.glider-controls {
    justify-content: right !important;
    margin-top: 0px !important;
    margin-bottom: 10px !important;
}

.glider-controls .glider-prev,
.glider-controls .glider-next {
    font-size: 24px !important;
    padding: 6px 12px !important;
    cursor: pointer !important;
    z-index: 2 !important;
    background-color: #18BA60 !important;
    color: #fff !important;
    border-radius: 5px !important;
    height: 40px !important;
    width: 40px !important;
}

/* ── Career v2 Desktop Layout ── */
@media only screen and (min-width: 769px) {
    .career-old-desk { display: none !important; }
    .career-v2-desk  { display: block !important; }
}
@media only screen and (max-width: 768px) {
    .career-v2-desk  { display: none !important; }
}

.career-v2-desk {
    padding: 30px 0 60px;
    background: #f1f5f9;
}

.cv2-col-sidebar {
    padding-right: 14px !important;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 160px);
}
.cv2-col-sidebar .resc-sidebar-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(100vh - 160px);
}
.cv2-col-sidebar ul.resc-cat-list {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}
.cv2-col-sidebar ul.resc-cat-list::-webkit-scrollbar { width: 4px; }
.cv2-col-sidebar ul.resc-cat-list::-webkit-scrollbar-track { background: transparent; }
.cv2-col-sidebar ul.resc-cat-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.cv2-col-sidebar .resc-cat-link.active .resc-cat-dot,
.cv2-col-sidebar .resc-cat-link:hover .resc-cat-dot { background: #1e3a5f; }
.cv2-col-sidebar .resc-cat-link.active {
    background: #e8f0f9; color: #1e3a5f; border-left-color: #1e3a5f;
}
.cv2-col-sidebar .resc-cat-link:hover { color: #1e3a5f; }

.cv2-col-content {
    padding-left: 14px !important;
    padding-right: 0 !important;
}

.cv2-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: #1f5183;
    border-radius: 10px 10px 0 0;
}
.cv2-panel-header-accent {
    display: inline-block;
    width: 4px; height: 20px;
    background: rgba(255,255,255,0.55);
    border-radius: 4px;
    flex-shrink: 0;
}
.cv2-panel-header span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.cv2-grid-area {
    padding: 20px 20px 12px;
    background: #f8fafc;
    transition: opacity .3s ease;
    border-radius: 0 0 10px 10px;
}
.cv2-cat-grid {
    margin-left: -8px;
    margin-right: -8px;
}
.cv2-cat-grid > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.cv2-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fcfcfd;
    border: 1px solid #e8edf4;
    height: 100%;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cv2-card:hover {
    color: inherit;
    text-decoration: none;
    background: #f0f6ff;
    border-color: #bdd3ef;
    box-shadow: 0 4px 16px rgba(30,58,95,.10);
}

.cv2-card-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 230px;
}
.cv2-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
    margin-bottom: 14px;
}
.cv2-card-link:hover { text-decoration: none; color: inherit; }

.cv2-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8edf4;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cv2-card-detail {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.55;
    margin: 0 0 7px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cv2-card-detail:last-child { margin-bottom: 0; }
.cv2-card-detail strong {
    color: #1e3a5f;
    font-weight: 600;
}
.cv2-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
    flex-shrink: 0;
}
.cv2-card-social {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cv2-card-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    transition: opacity .18s ease, transform .15s ease;
}
.cv2-card-social li a:hover { opacity: .82; transform: scale(1.12); text-decoration: none; }
.cv2-card-social li:nth-child(1) a { background: #1877F2; }
.cv2-card-social li:nth-child(2) a { background: #1DA1F2; }
.cv2-card-social li:nth-child(3) a { background: #DB4437; }
.cv2-card-social li:nth-child(4) a { background: #0A66C2; }

.cv2-empty {
    color: #9ca3af;
    padding: 60px 0;
    font-size: 14px;
    text-align: center;
}
