/* ============================================================
   SARKARIRESULTMAP — FINAL STYLE.CSS (FULL + FIXED + CLEAN)
   No skipped lines — includes SIDE GUTTER FIX
============================================================ */

/* ROOT VARIABLES */
:root{
  --site-red:#c40000;
  --site-blue:#003f8c;
  --site-dark-blue:#002f6c;
  --site-green:#25d366;
  --text:#222;
  --muted:#666;
  --max-width:1150px;
  --gutter-ad-width:100px; /* SIDE BLANK SPACE WIDTH */
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.5;
  color:var(--text);
  background:#e5e5e5;
}

/* ============================================================
   OUTER PAGE WRAPPER — PUSH CONTENT INWARD (MOST IMPORTANT)
============================================================ */
.srm-page-wrapper{
  max-width:var(--max-width);
  margin-left:auto;
  margin-right:auto;
  background:#fff;
  min-height:100vh;
  padding-bottom:20px;
  box-shadow:0 0 12px rgba(0,0,0,0.05);
}

/* SIDE-GUTTER FIX — MAKES RIGHT/LEFT BLANK AREA LIKE SARKARIRESULT */
@media(min-width:1300px){
  .srm-page-wrapper{
    padding-left:calc(var(--gutter-ad-width) + 20px);  
    padding-right:calc(var(--gutter-ad-width) + 20px);
  }
}

/* UNIVERSAL INNER CONTAINER */
.srm-container,
.wrap,
.site-main,
.srm-header-container,
.srm-nav-inner{
  max-width:var(--max-width);
  margin-left:auto;
  margin-right:auto;
  padding-left:15px;
  padding-right:15px;
}

/* ============================================================
   SIDE ADS — FIXED LEFT & RIGHT (VISIBLE ≥1300px)
============================================================ */
.srm-side-ad{
  position:fixed;
  top:130px;
  width:var(--gutter-ad-width);
  height:calc(100vh - 130px);
  z-index:999;
  background:transparent;
}
.srm-side-ad-left{left:0;}
.srm-side-ad-right{right:0;}

@media(max-width:1300px){
  .srm-side-ad{display:none!important;}
}
/* ============================================================
   search icon ghost remove
============================================================ */
.srm-blue-nav .search-icon,
.srm-blue-nav button,
.srm-blue-nav input {
    display: none !important;
}


/* ============================================================
   HEADER (RED)
============================================================ */
/* ============================
   HEADER (NON-STICKY)
============================ */
/* HEADER */
.srm-header{
  width:100%;
  background:var(--site-red);
  border-bottom:3px solid #000080;
  padding:15px 0 18px 0;
}

/* FLEX LAYOUT */
.srm-header-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

/* LEFT SIDE: LOGO + TITLE */
.srm-header-left{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.logo{
  height:48px;
}

.site-title{
  font-size:34px;
  font-weight:800;
  color:#fff;
}

/* CENTERED SUBTITLE */
.srm-header-sub{
  margin-top:4px;
}

.sub-link{
  font-size:15px;
  color:#fff;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .site-title{font-size:24px;}
  .logo{height:38px;}
  .sub-link{font-size:13px;}
}


/* ============================================================
   NAVBAR (BLUE)*/

.srm-blue-nav {
  width: 100%;
  background: #0033aa;
  border-bottom: 2px solid #c40000;
  padding: 1px 0;
}

.srm-blue-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.srm-blue-nav-links {
  display: flex;
  flex-direction: row;

  gap: 15px;
  flex: 1 1 auto;

  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden;

  white-space: nowrap !important;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.srm-blue-nav-links::-webkit-scrollbar {
  display: none;
}
.srm-blue-nav-links a {
  position: relative;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;

  padding: 5px 2px;
  text-decoration: none;

  white-space: nowrap !important;
  flex-shrink: 0 !important;

  transition: color 0.25s ease;
}
.srm-blue-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 10%;
  width: 0%;
  height: 3px;
  background: #ffcc00;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.srm-blue-nav-links a:hover::after {
  width: 80%;
}

.srm-blue-nav-links a:hover {
  color: #ffcc00;
}
.srm-blue-nav-links a.active {
  color: #ffcc00 !important;
}

.srm-blue-nav-links a.active::after {
  width: 80%;
}

@media(max-width: 768px) {
  
  .srm-blue-nav-links {
     gap: 12px;
  }
}
/*1 

============================================================
  search css
============================================================ */
.srm-blue-search {
  display: flex;
  align-items: center;
  background: #002f8c;
  border: 2px solid #ffcc00;
  border-radius: 6px;
  padding: 4px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
}

.srm-blue-search input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: #fff;
  padding: 6px 8px;
  width: 180px;
}

.srm-blue-search input::placeholder {
  color: #ffdd55;
}

.srm-blue-search button {
  background: #ffcc00;
  border: none;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  color: #0033aa;
}






/*2 

============================================================
   INTRO SECTION
============================================================ */
.srm-intro{
  text-align:center;
  margin-top:20px;
  margin-bottom:10px;
}
.srm-intro-text{
  font-size:16px;
  margin-bottom:8px;
}
.srm-intro-center{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom:8px;
}

/* MARQUEE */
.srm-marquee-limit{
  overflow:hidden;
  margin:auto;
  max-width:var(--max-width);
}
.srm-marquee{
  display:inline-block;
  white-space:nowrap;
  font-size:18px;
  font-weight:700;
  animation:marqueeMove 12s linear infinite;
}
@keyframes marqueeMove{
  0%{transform:translateX(100%);}
  100%{transform:translateX(-100%);}
}

/* ============================================================
   HIGHLIGHT BOXES
============================================================ */
.srm-box-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:20px;
}
.srm-box{
  padding:12px;
  border-radius:6px;
  text-align:center;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  transition:0.15s ease;
}
.srm-box:hover{
  transform:translateY(-2px);
  opacity:0.95;
}
.box-red{background:#d60000;}
.box-orange{background:#ff6a00;}
.box-pink{background:#c500ff;}
.box-blue{background:#0033cc;}
.box-green{background:#006b00;}
.srm-box .title{font-size:16px;}
.srm-box .subtitle{
  font-size:14px;
  margin-top:5px;
  font-weight:600;
}
.days-left{
  margin-top:6px;
  font-size:13px;
  font-weight:700;
}

/* ============================================================
   LATEST UPDATES
============================================================ */
.latest-list{
  margin-top:25px;
}
.latest-list h2{
  text-align:center;
  font-size:22px;
  font-weight:800;
  color:var(--site-blue);
  margin-bottom:12px;
}
.latest-list ul{list-style:none;}
.latest-list li{
  display:flex;
  justify-content:space-between;
  padding:10px 6px;
  border-bottom:1px solid #eee;
}
.latest-list li a{
  font-weight:700;
  color:var(--site-blue);
}
.small{
  font-size:13px;
  color:var(--muted);
}

/* ============================================================
   SEO BLOCK
============================================================ */
.srm-home-seo{
  background:#fff;
  border:1px solid #eee;
  border-radius:8px;
  margin-top:25px;
  padding:18px;
}
.srm-home-seo h1{
  text-align:center;
  font-size:24px;
  font-weight:800;
  color:var(--site-red);
  margin-bottom:14px;
}
.seo-text{
  font-size:15px;
  line-height:1.6;
  margin-bottom:12px;
}
.seo-links{
  list-style:none;
  text-align:center;
}
.seo-links li{
  display:inline-block;
  margin:4px 8px;
}
.seo-links a{
  font-weight:700;
  color:var(--site-blue);
  text-decoration:underline;
}

/* ============================================================
   POST PAGE
============================================================ */
.post-article{
  background:#fff;
  padding:20px;
  border-radius:8px;
  margin:25px auto;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.post-title{
  font-size:26px;
  font-weight:800;
  color:var(--site-red);
  margin-bottom:10px;
}
.post-meta{
  font

