/* SR Tech Result Portal - Custom Stylesheet */
:root {
    --dark-blue: #003366;
    --navy-blue: #002244;
    --red-highlight: #dc3545;
    --bg-light: #f8f9fa;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212529;
}

.header-bg {
    background-color: var(--dark-blue);
}

.bg-primary-dark {
    background-color: var(--navy-blue);
}

.card-header-job {
    background-color: #003366;
    color: #ffffff;
    font-weight: bold;
}

.card-header-result {
    background-color: #8b0000;
    color: #ffffff;
    font-weight: bold;
}

.card-header-admit {
    background-color: #004d40;
    color: #ffffff;
    font-weight: bold;
}

.badge-new {
    background-color: var(--red-highlight);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.4; }
}

.adsense-box {
    min-height: 90px;
    background-color: #f1f3f5;
    border: 1px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sarkari-list li {
    padding: 6px 0;
    border-bottom: 1px dotted #dee2e6;
}

.sarkari-list li a {
    color: #003366;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.sarkari-list li a:hover {
    color: #dc3545;
    text-decoration: underline;
}
/* =============================================
   SR Tech Result Portal - Main Stylesheet
   ============================================= */
:root{
    --sr-navy:      #0e2b4e;   /* top header bg */
    --sr-navy-dark: #0a2038;   /* navbar bg */
    --sr-red:       #e21b1b;   /* logo / home / admin */
    --sr-gold:      #f2a900;   /* gold buttons */
    --sr-yellow:    #ffd400;   /* "RESULT" text */
}
body{ font-family:"Segoe UI", Arial, sans-serif; }

/* ---------- TOP HEADER ---------- */
.sr-topbar{ background:var(--sr-navy); padding:16px 0; }
.sr-logo{
    width:50px; height:46px; border-radius:8px; background:var(--sr-red);
    color:#fff; font-size:1.35rem; font-weight:800;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.sr-title{ font-size:1.8rem; font-weight:800; line-height:1.1; }
.sr-title a{ color:#fff; text-decoration:none; }
.sr-title span{ color:var(--sr-yellow); }
.sr-tagline{ margin:2px 0 0; color:#d8e1ec; font-size:.84rem; font-weight:600; }

/* header action buttons */
.sr-btn{
    display:inline-flex; align-items:center; gap:8px; border:0; border-radius:7px;
    padding:9px 16px; font-size:.78rem; font-weight:800;
    text-decoration:none; transition:.2s;
}
.sr-btn:hover{ filter:brightness(1.1); }
.sr-btn-live{ background:#44587c; color:#fff; border:1px solid #5a6f94; }
.sr-btn-gold{ background:var(--sr-gold); color:#141414; }
.sr-btn-red{ background:var(--sr-red); color:#fff; }
.sr-glow{ box-shadow:0 0 13px 3px rgba(255,255,255,.65); }  /* white glow */

/* pulsing live dot */
.sr-dot{ width:10px; height:10px; border-radius:50%; background:#ff2222; animation:srPulse 1.2s infinite; }
@keyframes srPulse{
    0%{ box-shadow:0 0 0 0 rgba(255,34,34,.7); }
    70%{ box-shadow:0 0 0 8px rgba(255,34,34,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,34,34,0); }
}

/* ---------- NAVBAR ---------- */
.sr-navbar{ background:var(--sr-navy-dark); padding:10px 0; }
.sr-menu{ display:flex; flex-wrap:wrap; align-items:center; gap:4px; list-style:none; margin:0; padding:0; }
.sr-menu a{
    display:inline-flex; align-items:center; gap:9px; padding:9px 15px; border-radius:8px;
    color:#fff; font-size:.95rem; font-weight:700; text-decoration:none; transition:.2s;
}
.sr-menu a.active{ background:var(--sr-red); }
.sr-menu a:not(.active):hover{ background:rgba(255,255,255,.1); }

/* search box */
.sr-search{
    display:flex; align-items:center; gap:10px;
    background:#0f2a52; border:1px solid #34517f; border-radius:8px;
    padding:9px 14px; width:310px; max-width:100%;
}
.sr-search i{ color:#8aa2c6; }
.sr-search input{ flex:1; background:transparent; border:0; outline:0; color:#fff; font-size:.9rem; }
.sr-search input::placeholder{ color:#8aa2c6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px){
    .sr-title{ font-size:1.35rem; }
    .sr-logo{ width:44px; height:40px; font-size:1.1rem; }
    .sr-search{ width:100%; }
}

/* =============================================
   SR Tech Result Portal - CSS Stylesheet
   File: /assets/css/style.css
   ============================================= */

body {
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #212529;
}

/* Reading Progress Bar */
#readingProgressBarContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 99999;
    background: rgba(229, 231, 235, 0.6);
}

#readingProgressBar {
    height: 100%;
    background: linear-gradient(90deg, #1d4ed8 0%, #f59e0b 50%, #10b981 100%);
    width: 0%;
    transition: width 0.15s ease-out;
}

/* Colors */
.header-bg {
    background: linear-gradient(135deg, #003366, #002244);
}

.bg-primary-dark {
    background-color: #002244 !important;
}

.card-header-result {
    background-color: #b91c1c;
    color: #ffffff;
    font-weight: 800;
}

.card-header-admit {
    background-color: #15803d;
    color: #ffffff;
    font-weight: 800;
}

.card-header-job {
    background-color: #1d4ed8;
    color: #ffffff;
    font-weight: 800;
}

/* Sarkari List */
.sarkari-list li {
    padding: 6px 4px;
    border-bottom: 1px dashed #dee2e6;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.sarkari-list li:last-child {
    border-bottom: none;
}

.sarkari-list a {
    color: #003366;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.sarkari-list a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.badge-new {
    background-color: #dc2626;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    display: inline-block;
}

.font-black {
    font-weight: 900 !important;
}

.font-extrabold {
    font-weight: 800 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.adsense-box {
    min-height: 80px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* Related Post Cards */
.related-post-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-post-card:hover {
    background-color: #eff6ff;
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
}

/* Print Notice Styles */
@media print {
    .no-print, header, footer, #readingProgressBarContainer, .sidebar-col {
        display: none !important;
    }
    .col-lg-9 {
        width: 100% !important;
    }
    body {
        background-color: #fff !important;
    }
}
/* =============================================
   SR Tech Result Portal - CSS Stylesheet
   File: /assets/css/style.css
   ============================================= */

body {
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #212529;
}

/* Reading Progress Bar */
#readingProgressBarContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 99999;
    background: rgba(229, 231, 235, 0.6);
}

#readingProgressBar {
    height: 100%;
    background: linear-gradient(90deg, #1d4ed8 0%, #f59e0b 50%, #10b981 100%);
    width: 0%;
    transition: width 0.15s ease-out;
}

/* Colors */
.header-bg {
    background: linear-gradient(135deg, #003366, #002244);
}

.bg-primary-dark {
    background-color: #002244 !important;
}

.card-header-result {
    background-color: #b91c1c;
    color: #ffffff;
    font-weight: 800;
}

.card-header-admit {
    background-color: #15803d;
    color: #ffffff;
    font-weight: 800;
}

.card-header-job {
    background-color: #1d4ed8;
    color: #ffffff;
    font-weight: 800;
}

/* Sarkari List */
.sarkari-list li {
    padding: 6px 4px;
    border-bottom: 1px dashed #dee2e6;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.sarkari-list li:last-child {
    border-bottom: none;
}

.sarkari-list a {
    color: #003366;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.sarkari-list a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.badge-new {
    background-color: #dc2626;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    display: inline-block;
}

.font-black {
    font-weight: 900 !important;
}

.font-extrabold {
    font-weight: 800 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.adsense-box {
    min-height: 80px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* Related Post Cards */
.related-post-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-post-card:hover {
    background-color: #eff6ff;
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
}

/* Responsive Grid Custom Widths (65% Content, 35% Sidebar on Desktop) */
@media (min-width: 992px) {
    .content-65 {
        flex: 0 0 65% !important;
        max-width: 65% !important;
        width: 65% !important;
    }
    .sidebar-35 {
        flex: 0 0 35% !important;
        max-width: 35% !important;
        width: 35% !important;
    }
}

/* Print Notice Styles */
@media print {
    .no-print, header, footer, #readingProgressBarContainer, .sidebar-col {
        display: none !important;
    }
    .col-lg-9 {
        width: 100% !important;
    }
    body {
        background-color: #fff !important;
    }
}


