/* ================== Universal Styles ================== */

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  text-decoration: none;
}

/* ================== Body Styles ================== */

body {
  background-color: #ffffff;
}

/* ================== Header Styles ================== */

header {
  width: 100%;
  height: 80px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  position: sticky;
  top: 0%;
  z-index: 1000;
}

.logo {
  height: 73px;
  margin-left: 70px;
}

.hamburger {
  display: none;
}

.nav-bar ul {
  display: flex;
}

.nav-bar ul li a {
  display: block;
  color: #fefefe;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.2s;
  margin: 0 5px;
  text-decoration: none;
  margin-top: 15px;
}

.nav-bar ul li a:hover {
  color: #11101b;
  background: #fefefe;
}

.nav-bar ul li a.active {
  color: #11101b;
  background: #fefefe;
}

@media only screen and (max-width: 1320px) {
  header {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 900px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }

  .logo {
    height: 70px;
    margin-left: 10px;
  }

  .hamburger .line {
    width: 30px;
    height: 3px;
    background: #fefefe;
    margin: 6px 0;
  }

  .nav-bar {
    height: 0px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #11101b;
    transition: 0.2s;
    overflow: hidden;
  }

  .nav-bar.active {
    height: 300px;
  }

  .nav-bar ul {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    text-align: center;
    transition: 0.5s;
  }

  .nav-bar.active ul {
    opacity: 1;
  }

  .nav-bar ul li a {
    margin-bottom: 12px;
  }
}

/* Paste your CSS code here */
/* ================== Livetable Styles ================== */

.livetable {
  margin-bottom: 10px;
  background-color: #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 20px; /* was 20px */
  padding: 10px 0; /* was 20px 0 */
}

.livedescription {
  text-align: center;
  color: #0e0e0e;
  font-size: 1.2em;
  margin-bottom: -100px; /* was 30px */
  line-height: 1.5;
  font-family: "Pacifico", cursive;
}

.liveresult {
  text-align: center;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: -0.1rem;
  word-spacing: 0.5rem;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  animation: blink 1s infinite alternate;
  margin-bottom: -10px;
}

@keyframes blink {
  from {
    color: #eaeaea;
  }
  to {
    color: #000000;
  }
}

.a1 {
  background-color: #052c6f;
  margin-left: 20%;
  margin-right: 20%;

  padding: 10px 0;
  position: relative;
}

.a2 {
  background-color: #052c6f;
  margin-left: 20%;
  margin-right: 20%;
  position: relative;
  padding: 10px 0;
}

.a3 {
  background-color: #052c6f;
  margin-left: 20%;
  margin-right: 20%;
  position: relative;
  padding: 10px 0;
}

.a4 {
  background-color: #052c6f;
  margin-left: 20%;
  margin-right: 20%;
  position: relative;
  padding: 10px 0;
}

.livetable1 {
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  height: 40px;
  color: #ffd60a;
}

.livetable2 {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  height: 40px;
  animation: pulse 1s infinite;
  color: rgb(255, 149, 0);
}

@keyframes pulse {
  from {
    color: #ffd60a;
  }
  to {
    color: rgb(255, 149, 0);
  }
}

.liveloading {
  font-size: 20px;
  text-align: center;
  height: 40px;
  color: rgb(255, 149, 0);
}

.livetime {
  color: rebeccapurple;
  font-size: 25px;
  text-align: center;
  font-weight: 700;
}

.refresh-button {
  background-color: #4caf50;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 8px;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-left: 345px;
}

.refresh-button:hover {
  background-color: #367c39;
}

.side-button {
  background-color: #5e2ca5;
  color: white;
  font-style: italic;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  cursor: pointer;
  position: absolute;
  top: 45%;
}

.right-button {
  right: 5px;
}

.left-button {
  left: 5px;
}

@media screen and (max-width: 768px) {
  .liveresult {
    font-size: 35px;
  }

  .livedescription {
    font-size: 15px;
  }

  .a1 {
    margin-left: 10%;
    margin-right: 10%;
  }

  .a2 {
    margin-left: 10%;
    margin-right: 10%;
  }

  .a3 {
    margin-left: 10%;
    margin-right: 10%;
  }

  .a4 {
    margin-left: 10%;
    margin-right: 10%;
  }

  .refresh-button {
    font-size: 5px;
    padding: 2.5px 5px;
    margin-left: 200px;
  }
}

@media screen and (max-width: 480px) {
  .liveresult {
    font-size: 25px;
    margin-bottom: -20px;
  }

  .livedescription {
    font-size: 12px;
  }

  .a1 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .a2 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .a3 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .a4 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .livetable1 {
    font-size: 15px;
    height: 20px;
  }

  .livetable2 {
    font-size: 12px;
    height: 10px;
  }

  .liveloading {
    font-size: 12px;
    height: 10px;
  }

  .side-button {
    font-size: 10px;
  }

  .refresh-button {
    margin-left: 165px;
  }
}

/* Paste your CSS code here */
/* ================== Livetable Styles ================== */
.livetablee {
  background-color: #eaeaea;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.liveresultt {
  text-align: center;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: -0.1rem;
  word-spacing: 0.5rem;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  from {
    color: #eaeaea;
  }
  to {
    color: #000000;
  }
}

.livedescriptionn {
  text-align: center;
  color: #0e0e0e;
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: "Pacifico", cursive;
}

.a11 {
  background-color: #5e2ca5;
  margin-left: 20%;
  margin-right: 20%;
  position: relative;
  padding: 10px 0;
}

.livetable11 {
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  height: 40px;
  color: #ffd60a;
}

.livetable22 {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  height: 40px;
  animation: pulse 1s infinite;
  color: rgb(255, 149, 0);
}

@keyframes pulse {
  from {
    color: #ffd60a;
  }
  to {
    color: rgb(255, 149, 0);
  }
}

.livetimee {
  color: white;
  font-size: 15px;
  text-align: center;
}

.side-buttonn {
  font-style: italic;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  cursor: pointer;
  position: absolute;
  top: 45%;
}

.right-buttonn {
  right: 5px;
  background-color: #052c6f;
}

.left-buttonn {
  left: 5px;
  background-color: #052c6f;
}

@media screen and (max-width: 768px) {
  .liveresultt {
    font-size: 35px;
  }

  .livedescriptionn {
    font-size: 15px;
  }

  .a11 {
    margin-left: 10%;
    margin-right: 10%;
  }
}

@media screen and (max-width: 480px) {
  .liveresultt {
    font-size: 25px;
  }

  .livedescriptionn {
    font-size: 12px;
  }

  .a11 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .livetable11 {
    font-size: 15px;
    height: 20px;
  }

  .livetable22 {
    font-size: 12px;
    height: 20px;
  }

  .livetimee {
    font-size: 6.5px;
  }

  .right-buttonn {
    font-size: 6px;
  }

  .left-buttonn {
    font-size: 6px;
  }
}

/* ================== Charts Styles ================== */

.imp {
  background-color: #ffdada;
  margin: 20px;
}

.chats {
  font-size: clamp(28px, 5vw, 50px);
  color: #d9534f;
  margin-bottom: 15px;
  font-weight: 900;
  padding-top: 20px;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  padding: 0 10px;
  max-width: 1200px;
}

.jodi,
.panel {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  background: #ffdbac;
  border: 5px solid #d9534f;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  margin-bottom: 10px;
}

.jodi:hover,
.panel:hover {
  transform: translateY(-5px);
}

.main,
.sub {
  background: rgb(255, 149, 0);
  color: white;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  border-radius: 30px;
  padding: 9px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  margin-bottom: 20px;
}

.jodilist,
.panellist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btnn {
  display: block;
  background: linear-gradient(90deg, #ffd194, #ffb347);
  color: #000;
  font-weight: bold;
  font-size: clamp(16px, 2vw, 18px);
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px 0;
  transition: background 0.3s ease-in-out, transform 0.2s;
  border-bottom: 3px solid #052c6f;
}

.btnn:hover {
  background: linear-gradient(90deg, #ffb347, #ffcc99);
  cursor: pointer;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .jodi,
  .panel {
    width: 90%;
  }

  .main,
  .sub {
    font-size: 18px;
    padding: 10px 15px;
  }

  .jodilist li,
  .panellist li {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0px;
  }

  .chats {
    font-size: 26px;
    padding-top: 10px;
  }

  .jodi,
  .panel {
    width: 95%;
    padding: 15px;
    min-width: 200px;
    max-width: 200px;
  }

  .main,
  .sub {
    font-size: 8.8px;
    padding: 9px;
  }

  .btnn {
    font-size: 8.3px;
    padding: 10px;
    margin-top: -15px;
    font-weight: 799;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jodi,
.panel,
.btnn,
.main,
.sub {
  animation: fadeIn 0.5s ease-in-out;
}

/* ================== Membership Styles ================== */

.membership-container {
  padding: 20px;
  border-radius: 80px;
  background-color: white;
  text-align: center;
  border-top: 3px solid #4cadff;
  border-bottom: 3px solid #4cadff;
  max-width: 1200px;
  margin: auto;
}

.hh1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 15px;
  font-weight: 1000;
  width: 80%;
  max-width: 400px;
  height: auto;
  border: 3px solid;
  margin-left: auto;
  margin-right: auto;
  background-color: #4cadff;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}

.membership-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.plan {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.plan:hover {
  transform: scale(1.05);
}

.plan img {
  width: 100%;
  border-radius: 15px;
}

.hh2 {
  font-size: 24px;
  color: black;
  margin: 15px 0 10px;
}

.pp1 {
  font-size: 16px;
  color: black;
  line-height: 1.6;
}

.price {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  font-size: 20px;
  padding: 10px;
  border-radius: 25px;
  margin-top: 20px;
  font-weight: bold;
}

.contact-box {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  padding: 20px;
  border: 2px solid black;
  max-width: 90%;
  margin: 30px auto;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.buttons a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
  margin: 10px;
}

.call-btn {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.call-btn:hover {
  background: linear-gradient(135deg, #2b8bc6, #497acb);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1da851, #0f6c5f);
}

@media (max-width: 768px) {
  .membership-container {
    padding: 15px;
  }

  .membership-plans {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hh1 {
    font-size: 1.4rem;
  }
  .plan {
    padding: 20px;
  }
  .contact-box {
    font-size: 12px;
  }
  .buttons a {
    font-size: 10px;
    padding: 8px 16px;
  }
}

/* ================== App Styles ================== */

.available-app-area {
  text-align: center;
  padding: 2% 5%;
  background-color: #295382;
  margin: 10px;
  border-radius: 10px;
}

.available-app-area .app-caption .section-tittle3 h2 {
  color: white;
  margin-bottom: 20px;
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 3rem);
}

.app-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.app-btn img {
  width: 160px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .available-app-area {
    padding: 3% 5%;
  }

  .section-tittle h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .app-btn img {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .available-app-area {
    padding: 4% 5%;
  }

  .section-tittle h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .app-btn img {
    width: 120px;
  }
}

/* ================== Disclaimer Styles ================== */

.disclaimer-box {
  text-align: center;
  background-color: #0466c8;
  border-radius: 15px;
  margin: 10px;
  padding: 20px;
}

@keyframes zoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.disclaimer-title {
  font-family: "Pacifico", cursive;
  font-size: 30px;
  font-weight: bold;
  color: #ffd700;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #ffd700;
  width: 100%;
  animation: typing 2s steps(15) forwards, blinkCursor 0.7s infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

.disclaimer-text {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 15px;
}

.disclaimer-text strong {
  color: #ffc107;
  font-weight: 600;
}

.booter {
  margin-top: 20px;
  font-size: 14px;
  color: #bdbdbd;
  font-style: italic;
}

@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 1.8rem;
  }
  .disclaimer-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.5rem;
  }
  .disclaimer-text {
    font-size: 10px;
  }
}

/* ================== Footer Styles ================== */

footer {
  width: 100%;
  background: black;
  color: white;
  padding: 35px 0 30px;
  border-top-left-radius: 125px;
  font-size: 13px;
  line-height: 20px;
}

.row {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.col {
  flex-basis: 25%;
  padding: 10px;
}

.col:nth-child(2),
.col:nth-child(3) {
  flex-basis: 15%;
}

.pogo {
  width: 120px;
  margin-bottom: 30px;
}

.col h3 {
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}

.email-id {
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

ul li {
  list-style: none;
  margin-bottom: 12px;
}

ul li a {
  text-decoration: none;
  color: #fff;
}

form {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}

form .far {
  font-size: 18px;
  margin-right: 10px;
}

form input {
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}

form button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

form button .fas {
  font-size: 16px;
  color: #ccc;
}

.social-icons .fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #000;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.social-icons .fab:hover,
.social-icons .fab:active {
  color: #fff;
  background: #ff0000;
}

.social-icons a[href*="youtube"]:hover i,
.social-icons a[href*="youtube"]:active i {
  background: #ff0000;
}

.social-icons a[href*="wa.me"]:hover i,
.social-icons a[href*="wa.me"]:active i {
  background: #25d366;
}

.social-icons a[href*="t.me"]:hover i,
.social-icons a[href*="t.me"]:active i {
  background: #0088cc;
}

hr {
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}

.copyright {
  text-align: center;
}

.underline {
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}

.underline span {
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 700px) {
  footer {
    bottom: unset;
  }

  .col {
    flex-basis: 100%;
  }

  .col:nth-child(2),
  .col:nth-child(3) {
    flex-basis: 100%;
  }

  .copyright {
    font-size: 10px;
  }

  .pogo {
    width: 100px;
  }
}
