 body {
      
      color: #fff;
      font-family: 'Poppins', sans-serif;
      text-align: center;
     
    }

    .top-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .nav-btn {
      background: linear-gradient(145deg, #007bff, #0056b3);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.4);
      transition: 0.3s ease;
      font-size: 16px;
    }

    .nav-btn:hover {
      background: linear-gradient(145deg, #0056b3, #007bff);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.5);
    }

    .title-section {
      margin-top: 10px;
      text-align: center;
    }

    .title-section img {
      height: 60px;
      vertical-align: middle;
      margin-right: 10px;
    }

    .title-text {
      font-size: 2rem;
      font-weight: 700;
      color: #ff6b00;
      text-shadow: 2px 2px 6px rgba(255, 107, 0, 0.8);
      display: inline-block;
      vertical-align: middle;
    }

    /* Decorative line animation */
    .dotted-line {
      width: 100%;
      height: 1px;
      background-image: repeating-linear-gradient(to right, #0d6efd, #0d6efd 10px, transparent 10px, transparent 20px);
      margin-top: 10px;
      animation: moveDots 4s linear infinite;
    }

    @keyframes moveDots {
      from { background-position: 0 0; }
      to { background-position: 40px 0; }
    }
     .marquee-container {
      background-color: #d73a49;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      height: 35px;
      display: flex;
      align-items: center;
    }

    /* Scrolling Text */
    .marquee-text {
      display: inline-block;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      padding-left: 100%;
      animation: scrollText 25s linear infinite;
    }

    @keyframes scrollText {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* Optional Glow Effect */
    .marquee-text span {
      color: #fff;
      text-shadow: 0 0 8px rgba(255,255,255,0.4);
    }
    .result-block {
      background: #111;
      border: 1px solid #222;
      border-radius: 8px;
      padding: 12px 10px;
      text-align: center;
      transition: 0.3s ease;
    }

    .result-block:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(255,255,255,0.1);
    }

    .city-name {
      font-size: 18px;
      font-weight: 700;
      color: #ffae00;
      text-transform: uppercase;
      margin-bottom: 3px;
      line-height: 1.2;
    }

    .time-text {
      font-size: 12px;
      color: #bbb;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .data-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .data-col {
      width: 48%;
      background: #0d0d0d;
      border-radius: 4px;
      padding: 6px 4px;
      border: 1px solid #222;
    }

    .data-col h6 {
      font-size: 11px;
      color: #0d6efd;
      margin-bottom: 3px;
      text-transform: uppercase;
    }

    .data-col .number {
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }

    .blink {
      display: inline-block;
      color: #0aff2a;
      font-size: 10px!important;
      font-weight: bold;
      
      margin-left: 4px;
      animation: blinkAnim 1s infinite;
    }

    @keyframes blinkAnim {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }

    .record-link {
      display: inline-block;
      color: #00ff99;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      transition: 0.3s;
    }

    .record-link:hover {
      color: #0d6efd;
      text-decoration: underline;
    }
    
    
   /* Card Styling */
.result-card {
  color: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 15px 10px;
}
.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Title + Time */
.result-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}
.result-card small {
  display: block;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Number Columns */
.number-row {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 0;
  margin-bottom: 8px;
}
.number-row div span:first-child {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}
.number-row div span:last-child {
  font-weight: 700;
  font-size: 30px;
}

/* Blink Animation */
.blink {
  animation: blink 1s infinite;
}
.number{
    font-size:30px;
    font-weight: 600;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Record Link */
.record a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  opacity: 0.9;
}
.record a:hover {
  opacity: 1;
}

/* Color Gradients */
.bg1 { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.bg2 { background: linear-gradient(135deg, #2980b9, #1f5a85); }
.bg3 { background: linear-gradient(135deg, #27ae60, #1e8449); }
.bg4 { background: linear-gradient(135deg, #f39c12, #d68910); }
.month-year-section {
      background: linear-gradient(135deg, #000000, #d50000);
      color: #fff;
      text-align: center;
      padding: 30px 10px;
    }

    .month-year-section h5 {
      font-weight: 500;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .month-year-form select, 
    .month-year-form button {
      height: 45px;
      border-radius: 5px;
    }

    .month-year-form select {
      border: none;
      outline: none;
      background-color: #f1f1f1;
      color: #000;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .month-year-form select:focus {
      background-color: #fff;
      box-shadow: 0 0 0 2px #ff0000;
    }

    .month-year-form button {
      background-color: #007bff;
      border: none;
      color: white;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .month-year-form button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .month-year-form select, 
      .month-year-form button {
        width: 100%;
        margin-bottom: 10px;
      }
    }
    .satta-section {
    background-color: #f9f6ef;
    color: #333;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
  }

  .satta-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .dropdown-box {
    margin-bottom: 30px;
  }

  .dropdown-box label {
    font-weight: 600;
    font-size: 16px;
  }

  .dropdown-box select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-left: 10px;
    outline: none;
  }

  .satta-section h2 {
    color: #d35400;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .satta-section h3 {
    color: #b33c00;
    font-size: 20px;
    margin-top: 25px;
  }

  .satta-section p {
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    margin-top: 10px;
  }
/************************  faqs **************************************/
 .faq-section {
      background: linear-gradient(to bottom, #000, #330000);
      padding: 60px 0;
      border-top: 3px solid red;
    }

    .faq-title {
      text-align: center;
      color: #ff1a1a;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
      text-transform: uppercase;
      border-bottom: 2px solid red;
      display: inline-block;
      padding-bottom: 10px;
    }

    .accordion-item {
      background-color: #1a1a1a;
      border: 1px solid #ff1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .accordion-button {
      background-color: #1a1a1a;
      color: #ff4d4d;
      font-weight: 600;
      border: none;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      color: #fff;
      background-color: #b30000;
      box-shadow: none;
    }

    .accordion-body {
      color: #e6e6e6;
      font-size: 15px;
      line-height: 1.6;
      background-color: #0d0d0d;
      border-top: 1px solid #ff1a1a;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .footer-note {
      text-align: right;
      color: #ff4d4d;
      font-size: 14px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .faq-title {
        font-size: 22px;
      }
      .accordion-body {
        font-size: 14px;
      }
    }
    .disclaimer-section {
      background: linear-gradient(to bottom right, #1a0000, #000);
      border-top: 3px solid #ff1a1a;
      border-bottom: 3px solid #ff1a1a;
      padding: 50px 20px;
      text-align: center;
      color: #f5f5f5;
    }

    .disclaimer-section h2 {
      color: #ff1a1a;
      font-weight: 700;
      font-size: 26px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-bottom: 2px solid #ff1a1a;
      display: inline-block;
      padding-bottom: 5px;
    }

    .disclaimer-text {
      max-width: 900px;
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.7;
      color: #ddd;
    }

    .disclaimer-text strong {
      color: #ff4d4d;
    }

    .disclaimer-text p {
      margin-bottom: 20px;
    }

    .disclaimer-divider {
      height: 2px;
      background: linear-gradient(to right, transparent, #ff1a1a, transparent);
      margin: 25px auto;
      width: 60%;
    }

    @media (max-width: 768px) {
      .disclaimer-section h2 {
        font-size: 22px;
      }
      .disclaimer-text {
        font-size: 14px;
      }
    }
    
    
    
    footer {
    background-color: #f8c66c;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Georgia', serif;
    border-top: 2px solid #ccc;
}
footer p {
    margin: 0;
    font-weight: bold;
    color: #000;
}
footer .social-icons {
    margin: 10px 0;
}
footer .social-icons i {
    font-size: 26px;
    margin: 0 10px;
    color: #000;
    transition: 0.3s;
}
footer .social-icons i:hover {
    color: #b30000;
}
footer .footer-links a {
    font-weight: bold;
    font-size: 15px;
    color: #800000;
    margin: 0 5px;
    text-decoration: none;
}
footer .footer-links a:first-child {
    color: green;
}
footer .footer-links a:hover {
    text-decoration: underline;
}


  /* Normal row color */
  #resultBody tr {
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  #resultBody .active {
    background-color: #f7c948; /* light yellow highlight */
  }