* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none !important;
    }

    body {
      /* font-family: Arial, sans-serif; */
      font-family: system-ui , auto;
      padding-top: 115px;
      background: #f5f5f5;
    }

    /* Fixed Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 115px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
      background-color: #91e655;
    }

    /* Center Logo */
    .logo img {
      display: block;
      max-height: 113px;
      width: auto;
      max-width: 395px;
      object-fit: contain;
    }

    /* Fixed Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  height: 35px;
  background: #e60000;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 999;
}

/* LIVE */
.announcement-title {
  flex-shrink: 0;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #b80000;
  font-size: 13px;
  font-weight: bold;
  z-index: 2;
}

/* Blinking White Dot */
.live-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* Marquee Area */
.marquee-wrapper {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
  font-size: 13px;

  color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    /* animation: ticker-scroll 15s linear infinite; */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

    /* Responsive */
    @media (max-width: 768px) {

      .site-header {
        height: 90px;
      }

      .logo img {
        max-height: 100px;
        max-width: 280px;
      }

      .announcement-bar {
        top: 118px;
        height: 32px;
      }

      .announcement-title {
        padding: 0 10px;
        font-size: 11px;
      }

      .marquee-content {
        font-size: 14px;
        animation-duration: 32s;
      }

      body {
        padding-top: 97px;
      }
    }
    .result-heading {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px 15px 0px 15px;
    background: #ffffff;
  }

  .result-heading h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .result-heading {
      min-height: 90px;
      padding:18px 10px 0px 10px ;
    }

    .result-heading h2 {
      font-size: 17px;
      line-height: 1.5;
    }
  }

  @media (max-width: 480px) {
    .result-heading h2 {
      font-size: 15px;
    }
  }
  .result-section {
  width: 100%;
  background: #fff;
  padding: 0 15px;
  box-sizing: border-box;
  overflow: hidden;
}

/* HEADLINE */
.result-section h1 {
  margin: -8px;
  padding: 12px 8px;
  text-align: center;
  background: #fff;
  color: #363535;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  border-bottom: 3px solid #363535;
}

/* TABLE */
.result-table {
  width: 100%;
  border: 1px solid #5a5a5a61;
  margin: 15px 0 0;
  box-sizing: border-box;

  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.12);

  border-radius: 4px;
  overflow: hidden;
}

.result-head,
.result-body {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
}

.result-head div {
    background: #91e655;
    color: #363535;
    text-align: center;
    font-size: clamp(16px, 2.2vw, 30px);
    font-weight: 800;
    padding: 0px 2px;
    border-right: 1px solid #5a5a5a61;
    box-sizing: border-box;
}

.result-head div:last-child {
  border-right: none;
}

.result-body div {
  ackground: #fff;
    color: #363535;
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
    padding: 6px 2px;
    border-top: 1px solid #5a5a5a61;
    border-right: 1px solid #5a5a5a61;
    min-height: 65px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 900 !important;
}

.result-body div:last-child {
  border-right: none;
}

.result-body span {
      font-weight: 900 !important;
    margin-top: 2px;
    font-size: 20px;
}

/* MOBILE */
@media (max-width: 600px) {

  .result-section {
    padding: 0 8px;
  }

  .result-section h1 {
    padding: 9px 4px;
    font-size: 20px;
    line-height: 1.2;
  }

  .result-table {
    margin-top: 18px;
  }

  .result-head div {
    padding: 2px 1px;
    font-size: 18px;
  }

  .result-body div {
    padding: 2px 1px;
    min-height: 45px;
    font-size: 1em !important;
    color: #363535;
    font-weight: bold;
    white-space: nowrap;
  }

  .result-body span {
        font-size: 13px;
        padding: 1px 1px;
        min-height: 4px;
        font-size: 1em !important;
        color: #363535;
        font-weight: bold;
        white-space: nowrap;
  }
}

/* =====================================
   chennai INFO SECTION - ISOLATED CSS
   ===================================== */

.chennai-info-section {
  width: 100%;
  max-width: 100%;
  margin: 25px auto;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 1.6;
}

/* Common Box */
.chennai-intro-box,
.chennai-alert-box,
.chennai-content-box,
.chennai-time-box,
.chennai-previous-box {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

/* Intro */
.chennai-intro-box {
    background: #ffe166;
    border: 1px solid #e2e2e2;
    border-left: 5px solid #363535;
    padding: 15px 18px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 18%);
}

.chennai-intro-box p {
 margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.chennai-intro-box strong {
  color: #ff0000;
}

/* Alert */
.chennai-alert-box {
  background: #fff;
  border: 1px solid #e4e4e4;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
  text-align: center;
}

.chennai-alert-title {
  background: #ff0000;
  color: #fff;
  padding: 10px;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
}

.chennai-alert-message {
  padding: 12px 10px;
  color: #111;
  font-size: clamp(16px, 2vw, 21px);
  background: #fff;
}

/* Content */
.chennai-content-box {
  background: #ffe166;
  border: 1px solid #e2e2e2;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
}

.chennai-content-box h2,
.chennai-time-box h2,
.chennai-previous-box h2 {
  margin: 0 0 10px;
  color: #363535;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.chennai-content-box p {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 18px);
}

/* Time Box */
.chennai-time-box {
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.chennai-new-time {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 7px 18px;
  border-radius: 5px;
  font-size: clamp(15px, 1.8vw, 19px);
  margin: 4px 0 18px;
}

/* Time Grid */
.chennai-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.chennai-time-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffe166;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  padding: 10px 5px;
  min-height: 82px;
  box-sizing: border-box;
  text-align: center;
}

.chennai-time-item span {
  color: #ff0000;
  font-size: 25px;
  font-weight: 800;
}

.chennai-time-item strong {
  color: #111;
  font-size: clamp(16px, 2vw, 23px);
  line-height: 1.3;
}

.chennai-time-item small {
  font-size: 18px;
  line-height: 1.2;
}

/* Previous Results */
.chennai-previous-box {
  background: #ffe166;
  border: 1px solid #e2e2e2;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
}

.chennai-previous-box h2 {
  margin: 0;
  font-size: 25px;
}

.chennai-down-arrow {
  font-size: 24px;
  margin-top: 5px;
}

/* Mobile */
@media (max-width: 600px) {

  .chennai-info-section {
    padding: 0 8px;
    margin: 18px auto;
  }

  .chennai-intro-box,
  .chennai-content-box,
  .chennai-time-box,
  .chennai-previous-box {
    padding: 13px 12px;
  }

  .chennai-alert-title {
    padding: 8px 5px;
  }

  .chennai-alert-message {
    padding: 9px 5px;
  }

  .chennai-time-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .chennai-time-item {
    min-height: 68px;
    padding: 6px 2px;
    background-color: #ffe166;
  }

  .chennai-time-item span {
    font-size: 24px;
  }

  .chennai-time-item strong {
    font-size: 15px;
  }

  .chennai-time-item small {
    font-size: 15px;
  }
}
/* =================================
   chennai PREVIOUS RESULT - ISOLATED
   ================================= */

.chennai-prev-section {
  width: 100%;
  max-width: 100%;
  margin: 22px auto;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Date Heading */
.chennai-prev-title {
  margin: 0 0 12px;
  padding: 10px 12px;
  text-align: center;
  background: #ffe166;
  color: #b30000;
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #363535;
  border-radius: 6px;
  box-shadow: 0 3px 3px #36353545, 0 0 18px #36353500;
}

/* Table Wrapper */
.chennai-prev-table-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  box-shadow:0 3px 3px #36353545, 0 0 18px #36353500;
}

/* Table */
.chennai-prev-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border: 1px solid #5a5a5a61;
}

/* Header */
.chennai-prev-table th {
      background: #ffe166;
    color: #b30000;
    border: 1px solid #5a5a5a61;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    padding: 5px 2px;
    line-height: 1.2;
}

/* Body */
.chennai-prev-table td {
    background: #fff;
    color: #363535;
    border: 1px solid #5a5a5a61;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
    font-weight: 900;
    line-height: 0.90;
    padding: 5px 2px;
    height: 50px;
    box-sizing: border-box;
}

/* Single Number */
.chennai-prev-table td span {
  display: inline-block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 600px) {

  .chennai-prev-section {
    padding: 0 8px;
    margin: 18px auto;
  }

  .chennai-prev-title {
    padding: 8px 8px;
    font-size: 30px;
    margin-bottom: 10px;
  }

  .chennai-prev-table th {
    padding: 5px 1px;
    font-size: 18px;
  }

  .chennai-prev-table td {
    padding: 8px 5px 5px 5px;
    height: 45px;
    font-size: 16px;
    line-height: 1.1;
  }

  .chennai-prev-table td span {
    font-size: 16px;
  }
}
/* =========================================
   CHENNAI SEO CONTENT - ISOLATED CSS
   ========================================= */

.chennai-seo-content {
  width: 100%;
  /* max-width: 1100px; */
  margin: 25px auto 0;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.75;
}

/* Intro */
.chennai-seo-intro {
  background: #ffe166;
  border: 1px solid #e2e2e2;
  border-left: 5px solid #363535;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}

.chennai-seo-intro p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  text-align: center;
}

.chennai-seo-intro strong {
  color: #ff0000;
}

/* Article */
.chennai-seo-article {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 7px;
  padding: 25px 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.chennai-seo-article h1 {
      margin: 0 0 15px;
    padding-bottom: 12px;
    color: #363535;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    border-bottom: 3px solid #363535;
}

.chennai-seo-article h2 {
       margin: 0 0 15px;
    padding-bottom: 12px;
    color: #363535;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    border-bottom: 3px solid #363535;
}

.chennai-seo-article p {
  margin: 0 0 5px;
  font-size: 12px;
}

.chennai-seo-article strong {
  color: #a80000;
}

.chennai-seo-article ol {
  margin: 8px 0 20px;
  padding-left: 25px;
  font-size: clamp(15px, 1.7vw, 18px);
}

.chennai-seo-article li {
  margin-bottom: 5px;
}

/* Footer */
.chennai-seo-footer {
     margin-top: 25px;
    padding: 18px 15px;
    background: #111;
    color: #fff;
    text-align: center;
    border-top: 5px solid #ffe166;
    border-radius: 6px 6px 0 0;
}

.chennai-seo-footer p {
  margin: 0 0 8px;
  font-size: 15px;
}

.chennai-seo-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.chennai-seo-footer a:hover {
  color: #ff4d4d;
}

.chennai-seo-top {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {

  .chennai-seo-content {
    padding: 0 8px;
    margin-top: 18px;
  }

  .chennai-seo-intro {
    padding: 12px 13px;
    margin-bottom: 15px;
  }

  .chennai-seo-article {
    padding: 18px 14px;
  }

  .chennai-seo-article h1 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 24px;
  }

  .chennai-seo-article h2 {
    margin-top: 24px;
    font-size: 21px;
  }

  .chennai-seo-article p,
  .chennai-seo-article ol {
    font-size: 15px;
    line-height: 1.7;
  }

  .chennai-seo-footer {
    padding: 15px 8px;
  }
}
.h2style{
  padding-top: 5px;
    padding-bottom: 5px;
    margin: 0 0 10px;
    color: #363535;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}


/* ==========================
   KF FIXED MENU
========================== */

.kf-menu-wrap{
    position:fixed;
    top:115px;          /* Header Height */
    left:0;
    width:100%;
    z-index:999;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#ffe166;
    /* border-top:1px solid rgba(0,0,0,.08); */
    /* border-bottom:1px solid rgba(0,0,0,.08); */

    padding:8px 12px;
}

.kf-menu-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1px;
    margin:0;
    padding:0;
    list-style:none;
    flex-wrap:wrap;
}

.kf-menu-link{
    display: block;
    padding: 2px 8px;
    border-radius: 50px;
    color: #363535;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: .25s;
}

.kf-menu-link:hover{
    background:#fff;
    color:#363535;
}

.kf-active{
    background:#e61d25;
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .kf-menu-wrap{
        top:90px;      /* তোমার Mobile Header Height */
        padding:4px 8px;
    }

    .kf-menu-list{
        gap:2px;
    }

    .kf-menu-link{
        font-size: 12px;
        padding: 2px 10px;
    }

}

/* Body gap */

body{
    padding-top:175px;   /* 120px Header + প্রায় 55px Menu */
}

@media(max-width:768px){

    body{
        padding-top:140px;   /* 90px Header + প্রায় 50px Menu */
    }

}
.result-app-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 1px 0 11px;
  background: #f5f7f9;
}

.refresh-btn {
  width: 375px;
  height: 56px;
  border: 0;
  border-radius: 30px;
  background: #ffdf68;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.download-app {
  width: 369px;
  height: 87px;
  display: flex;
  align-items: center;
  padding: 0 16px 0 25px;
  background: #e92327;
  border-radius: 18px;
  box-shadow: 0 6px 8px rgba(0,0,0,.16);
}

.app-logo {
  width: 62px;
  margin-right: 12px;
  font-size: 42px;
}

.app-content {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.app-content span {
  font-size: 15px;
  font-weight: 700;
}

.app-content strong {
  font-size: 19px;
  line-height: 21px;
}

.download-btn {
  width: 50px;
    height: 50px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    margin-left: 30px;
}
.logo-center {
    text-align: center;
}

.logo-center img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}