:root {
    --brand-blue: #223c7a;
    --brand-orange: #1c52ed;
    --text-dark: #333333;
    --border-color: #e9ecef;
    --sidebar-bg: #f8f9fa;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}

.brand-title {
    font-weight: 700;
    color: var(--brand-blue) !important;
    font-size: 1.35rem;
    letter-spacing: -0.3px;
    line-height: 1.1;
}
img.logo-img {
    width: 300px;
}
.brand-domain {
    font-size: 0.8rem;
    color: var(--brand-orange);
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.search-container {
    background-color: #f1f3f7;
    border-radius: 50px;
    padding: 2px 12px;
    width: 460px;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.search-container:focus-within {
    background-color: #ffffff;
    border-color: #ced4da;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.search-box {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px 10px;
    font-size: 0.88rem;
}

.btn-login {
    background-color: var(--brand-orange);
    color: #ffffff;
    border-radius: 25px;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background-color: #57a8eb;
    color: #ffffff;
}

.nav-menu-bar {
    border-bottom: 1px solid var(--border-color);
    background: #223164;
}

.nav-menu-bar .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 14px 18px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color 0.15s ease;
}

.chevron-ico {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    color: #888888;
}

.nav-menu-bar .nav-item.active .nav-link {
    color: #ffffff;
    font-weight: 600;
}

.nav-menu-bar .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background-color: var(--brand-orange);
    border-radius: 3px 3px 0 0;
}

.nav-menu-bar .nav-item:not(.active) .nav-link:hover {
    color: var(--brand-orange);
}

.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    padding: 0;
    margin-top: 0;
    display: none;
    z-index: 1060;
}

.mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-sidebar {
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    min-height: 410px;
    padding: 12px 0;
}

.sidebar-item {
    padding: 11px 24px;
    color: #495057;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-item:hover {
    background-color: #eeb8a01a;
    color: var(--brand-orange);
}

.sidebar-item.active {
    background-color: #ffffff;
    color: var(--brand-orange);
    font-weight: 600;
    border-left: 3px solid var(--brand-orange);
}

.mega-content {
    padding: 10px 40px;
    background: #ffffff;
}

.tab-content-panel {
    display: none;
}

.tab-content-panel.active {
    display: block;
}

.exam-link {
    color: #444444;
    text-decoration: none;
    font-size: 0.88rem;
    display: block;
    padding: 6px 0;
    font-weight: 400;
}

.exam-link:hover {
    color: var(--brand-orange);
}

.view-all-btn {
    color: var(--brand-orange) !important;
    font-weight: 600;
    border-bottom: 1px dashed var(--brand-orange);
    display: inline-block;
}

.creative-menu-btn {
    border: none;
    background: transparent;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    box-shadow: none !important;
}

.creative-menu-btn .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

.creative-menu-btn .bar:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

.mobile-offcanvas {
    width: 300px !important;
    box-shadow: -5px 0 25px rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-nav-list .list-group-item {
    font-size: 0.92rem;
    padding: 14px 20px;
    color: #495057;
    font-weight: 500;
}

.mobile-nav-list .active-mobile {
    background-color: #fff5f1 !important;
    color: var(--brand-orange) !important;
    font-weight: 600;
    border-left: 4px solid var(--brand-orange);
}

.mobile-sub-link {
    display: block;
    color: #555555;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f5;
}

.mobile-sub-link:last-child {
    border-bottom: none;
}

.mobile-arrow, .level3-arrow {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    color: #1c52ed;
}

[aria-expanded="true"] .mobile-arrow, [aria-expanded="true"] .level3-arrow {
    transform: rotate(180deg);
}

.text-inner-wrapper {
    padding-left: 2rem !important;
}
.site-footer {
    background-color: #0d183e;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin-top: 60px;
}

.footer-brand-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.footer-brand-domain {
    font-size: 0.78rem;
    color: #1c52ed;
    font-weight: 500;
    margin-top: 3px;
}

.footer-top-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-top-links a:hover {
    color: #1c52ed;
}

.social-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 46px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-box:hover {
    transform: translateY(-2px);
    color: #ffffff;
    opacity: 0.9;
}

.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.youtube { background-color: #ff0000; }
.facebook { background-color: #3b5998; }
.linkedin { background-color: #0077b5; }
.twitter { background-color: #000000; border: 1px solid #333333; }

.footer-heading {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.15s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #1c52ed;
}

.copyright-text {
    color: #666666;
    font-size: 0.8rem;
}
.sa-trending-searches-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.sa-search-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.sa-carousel-outer-container {
    overflow: hidden;
}

.sa-search-badge-link {
    display: inline-block;
    background-color: #1c52ed38;
    color: #444444;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 7px 20px;
    border: 1px solid #1c52ed;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.sa-search-badge-link:hover {
    background-color: #1c52ed;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(239, 95, 35, 0.15);
}

.sa-carousel-custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #ced4da;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sa-carousel-custom-nav i {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 700;
}

.sa-carousel-custom-nav:hover {
    background-color: #1c52ed;
    border-color: #1c52ed;
}

.sa-carousel-custom-nav:hover i {
    color: #ffffff;
}

.sa-nav-prev {
    left: 0;
}

.sa-nav-next {
    right: 0;
}

.sa-top-searches-carousel .owl-stage-outer {
    padding: 4px 0;
}
.sa-news-portal-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.sa-news-main-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #223c7a;
    position: relative;
    padding-bottom: 8px;
}

.sa-news-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: #1c52ed;
    border-radius: 2px;
}

.sa-live-badge {
    color: #1c52ed;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.sa-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #1c52ed;
    border-radius: 50%;
    animation: saBackPulse 1.5s infinite ease-in-out;
}

@keyframes saBackPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.sa-news-title-primary a, 
.sa-news-title-banner a, 
.sa-news-title-secondary a, 
.sa-news-title-small a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
    display: block;
    line-height: 1.45;
}

.sa-news-title-primary a:hover, 
.sa-news-title-banner a:hover, 
.sa-news-title-secondary a:hover, 
.sa-news-title-small a:hover {
    color: #1c52ed;
}

.sa-news-title-primary { font-size: 1.1rem; }
.sa-news-title-banner { font-size: 1.25rem; }
.sa-news-title-secondary { font-size: 1.05rem; }
.sa-news-title-small { font-size: 0.92rem; font-weight: 600; }

.sa-news-meta {
    font-size: 0.8rem;
    color: #777777;
}

.sa-share-wrapper {
    position: relative;
    display: inline-block;
}

.sa-share-btn {
    background: transparent;
    border: none;
    color: #888888;
    padding: 2px 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.15s ease;
}

.sa-share-wrapper:hover .sa-share-btn {
    color: #223c7a;
}

.sa-share-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 130px;
    display: none;
    z-index: 100;
    margin-bottom: 5px;
}

.sa-share-wrapper:hover .sa-share-dropdown {
    display: block;
    animation: saFadeInUp 0.2s ease-out;
}

@keyframes saFadeInUp {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.sa-share-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    color: #444444;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
}

.sa-share-dropdown a:hover {
    background-color: #f8fafc;
    color: #1c52ed;
}

.sa-news-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sa-featured-img img {
    width: 85px;
    height: 65px;
    object-fit: cover;
}

.sa-featured-date {
    font-size: 0.78rem;
    color: #888888;
    display: block;
    margin-top: 4px;
}


.sa-section-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #223c7a;
    position: relative;
    padding-bottom: 8px;
}

.sa-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: #1c52ed;
    border-radius: 2px;
}

.sa-card-img-wrap img {
    width: 100%;
}

.sa-news-main-title a, .sa-news-sub-title a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
    display: block;
    line-height: 1.45;
}

.sa-news-main-title a:hover, .sa-news-sub-title a:hover {
    color: #1c52ed;
}

.sa-news-main-title {
    font-size: 1.05rem;
}

.sa-news-sub-title {
    font-size: 0.95rem;
}

.sa-news-info {
    font-size: 0.8rem;
    color: #777777;
}

.sa-action-share {
    position: relative;
    display: inline-block;
}

.sa-share-trigger {
    background: transparent;
    border: none;
    color: #999999;
    padding: 2px 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.15s ease;
}

.sa-action-share:hover .sa-share-trigger {
    color: #1c52ed;
}

.sa-share-box-popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 6px 0;
    min-width: 120px;
    display: none;
    z-index: 90;
    margin-bottom: 4px;
}

.sa-action-share:hover .sa-share-box-popup {
    display: block;
    animation: saPopupFade 0.2s ease-out;
}

@keyframes saPopupFade {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.sa-share-box-popup a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    color: #444444;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.sa-share-box-popup a:hover {
    background-color: #f8f9fa;
    color: #1c52ed;
}



.sa-ad-placeholder {
    min-height: 250px;
    border-style: dashed !important;
    background-color: #fafafa !important;
}

.style-ad-lbl {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #bbbbbb;
    font-weight: 600;
}
.sa-policies-section .sa-card-img-wrap img {
    width: 100%;

}

.sa-workplace-box {
    background-color: #ffffff;
    transition: box-shadow 0.2s ease-in-out;
}

.sa-workplace-box:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.sa-wp-header {
    background-color: #5a4cd9;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.sa-wp-img-wrap img {
    width: 100%;
}

.sa-wp-title a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.sa-wp-title-sub a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sa-wp-title a:hover, .sa-wp-title-sub a:hover {
    color: #1c52ed;
}
.sa-details-header-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.sa-breadcrumb-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.sa-breadcrumb-nav::-webkit-scrollbar {
    display: none;
}

.sa-breadcrumb-nav .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    padding: 2px 0;
}

.sa-breadcrumb-nav .breadcrumb-item, 
.sa-breadcrumb-nav .breadcrumb-item a {
    color: #495057;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    display: inline-block;
}

.sa-breadcrumb-nav .breadcrumb-item a:hover {
    color: #1c52ed;
}

.sa-breadcrumb-nav .breadcrumb-item.active {
    color: #777777;
    font-weight: 400;
}

.sa-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: #ced4da;
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    vertical-align: middle;
    padding: 0 8px;
}

.sa-details-main-heading {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.sa-keyword-badge {
    display: inline-block;
    background-color: #f1f3f7;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.sa-action-btn-group {
    max-width: 240px;
}

.sa-btn-download-pdf {
    background-color: #3F51B5;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.15s ease;
}

.sa-btn-download-pdf:hover {
    background-color: #659ddd;
    color: #ffffff;
}

.sa-btn-brochure {
    background-color: #fff6f2;
    color: #3F51B5;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 6px;
    border: 1px solid #3f51b5;
    transition: all 0.15s ease;
}

.sa-btn-brochure:hover {
    background-color: #3F51B5;
    color: #ffffff;
}
.sa-article-subnav-section {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    z-index: 990;
    top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sa-subnav-carousel-container {
    position: relative;
    width: 100%;
}

.sa-subnav-link {
    display: block;
    color: #555555;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 14px 18px;
    white-space: nowrap;
    transition: all 0.15s ease;
    border-bottom: 3px solid transparent;
}

.sa-subnav-link:hover {
    color: #1c52ed;
}

.sa-subnav-link.sa-active-tab {
    color: #223c7a;
    font-weight: 600;
    border-bottom-color: #223c7a;
}

.sa-subnav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.sa-subnav-arrow:hover {
    background-color: #1c52ed;
    color: #ffffff;
    border-color: #1c52ed;
}

.sa-subnav-prev { left: 0; }
.sa-subnav-next { right: 0; }

.sa-panel-main-content-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef !important;
}

.sa-author-info small {
    font-size: 0.75rem;
}

.style-main-body-title {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.sa-body-p {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.sa-right-sidebar-sticky {
    position: sticky;
    top: 75px;
}

.sa-widget-title {
    font-size: 1.15rem;
}

.sa-notif-title a {
    color: #222222;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.sa-notif-title a:hover {
    color: #1c52ed;
}

.sa-notif-meta {
    font-size: 0.76rem;
    color: #777777;
}

@media (max-width: 991.98px) {
    .sa-details-main-heading {
        font-size: 1.45rem;
    }
    .sa-action-btn-group {
        max-width: 100%;
        flex-direction: row !important;
    }
    .sa-action-btn-group .btn {
        flex: 1;
    }
}
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #e2e8f0 !important;
    }
}

@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #e2e8f0 !important;
        padding-left: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ord-1 { order: 1; }
    .ord-2 { order: 2; }
}
@media (max-width: 575.98px) {
    .class-search-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
    .sa-search-title-box {
        margin-bottom: 2px;
    }
    .sa-carousel-outer-container {
        width: 100%;
        padding: 0 30px !important;
    }
}
@media (max-width: 991.98px) {
    .header-footer-row {
        gap: 15px;
    }
    img.logo-img {
        width: 170px;
    }
    .footer-heading {
        margin-bottom: 12px;
        margin-top: 10px;
    }
}