*{
    margin: 0px;
    padding: 0px;
}
li{
    list-style: none;
}
h1{
    color: #000;
    font-size: 30px;
    text-align: center;
    font-weight: bolder;
}
h2{
    color: #000;
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}
h3{
    color: #FFD700;
    font-size: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px #433900;
}
p{
    color: #000;
    text-align: start;
    font-size: 15px;
    font-weight: 400;
}
.boss{
    background-color: #fff;
    padding-bottom: 10px;
}
.nav-link{
    color: #000;
    font-weight: bold;
}
.nav-link:hover{
    color: #000;
}
.navbar-toggler{
    background-color: #fff !important;
}
.get{
    background-color: red;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 6px 20px;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}
.login{
    background-color: green;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 6px 20px;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}
.log{
    background-color: gold;
    border: none;
    border-radius: 10px;
    padding: 6px 20px;
    color: #000;
    width: 100%;
    font-weight: 600;
    margin-top: 10px;
}
 .form-box {
    display: block;
  margin: 0 auto 20px; 
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
  }
  .form-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #000;
  }
.hope{
    background-image: linear-gradient(182deg, #75510E 0%, #1C604F 100%);
    padding-top: 50px;
    padding-bottom: 50px;
}
  /* Container styling */
.all-table {
  background: linear-gradient(to bottom, #000000, #FFD700); /* Black to golden */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

/* Table base styles */
.all-table table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  background-color: transparent;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
}

/* Table Head */
.all-table thead {
  background-color: rgba(255, 255, 255, 0.1);
}

.all-table th, 
.all-table td {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* Headings */
.all-table th {
  font-weight: bold;
  text-transform: uppercase;
  color: #FFD700;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Table Rows */
.all-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.all-table tbody tr:hover {
  background-color: rgba(255, 215, 0, 0.2); /* light golden hover */
  color: #fff;
}

/* Tick styling */
.all-table td:last-child {
  font-size: 20px;
  color: #00ff00;
}

/* Responsive on small screens */
@media (max-width: 768px) {
  .all-table table {
    font-size: 14px;
  }
}

.all-table {
  background: linear-gradient(to bottom, #000000, #FFD700); /* Black to golden */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

/* Table base styling */
.all-table table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
}

/* Table Head */
.all-table thead th.teble-head-color {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFD700; /* Golden */
  font-weight: bold;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

/* Table Body Rows */
.all-table tbody td {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* Left column style */
.teble-left-site-bd-color {
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  border-left: 4px solid #FFD700; /* Golden left border */
}

/* Row hover effect */
.all-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .all-table table {
    font-size: 14px;
  }
}
.faq-section {
    width: 100%;
    min-height: 100vh;
    padding: 40px;
    background: #fff;
    box-sizing: border-box;
    border-bottom: 2px solid #FFD700;
  }

  .faq-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #000;
  }

  .faq-item {
    background: #fff;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border: 2px solid #FFD700;
    background: #fff;
    color: #000;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }

/* Footer Background */
.footer-bg {
  background-color: #222 !important;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Payment Methods */
.payment-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.payment-img-box {
  width: 120px;
  height: auto;
  background-color: transparent;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-img-box img {
  max-width: 100%;
  height: auto;
}

/* Footer Columns */
.footer__logo p {
  margin-top: 10px;
  color: #ccc;
}
.footer__nav ul {
  list-style: none;
  padding-left: 0;
}
.footer__nav p {
  color: #fff;
  font-weight: bold;
}
.footer__nav ul li {
  margin-bottom: 10px;
  border-bottom:  1px solid #fff;
}
.footer__nav ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__nav ul li a:hover {
  color: #fff;
}

/* 18+ Section */
.website-is-only-section {
  background-color: transparent;
  padding: 40px 0;
  color: #fff;
}
.website-is-only {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Official Partners */
.official-partner {
  background-color: transparent;
  padding: 30px 0;
  color: #fff;
}
.official-partner-heading h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.official-partner-heading h2 span {
  color: #f4c10f;
}
.official-partner-img-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid gray;
}
.official-partner-img-box img {
  max-width: 100%;
  height: auto;
}
.official-partner-hr {
  border-color: #444;
}

/* Partner Logos */
.official-partner-img-box-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}
.footer-partners-logo img {
  max-height: 50px;
  transition: transform 0.3s;
}
.footer-partners-logo img:hover {
  transform: scale(1.05);
}

/* Android & Apple Icons */
.footer-android-logo {
  display: flex;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}
.footer-android-logo li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-android-logo img {
  height: 40px;
}

/* Copyright Section */
.footer-copyright {
  background-color: transparent;
  padding: 20px 0;
  color: #ccc;
}
.footer-copyright-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer-copyright-p-tag {
  margin: 10px 0;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-copyright-1 {
    flex-direction: column;
    gap: 20px;
  }
  .payment-box {
    gap: 15px;
  }
  .official-partner-heading h2 {
    font-size: 20px;
  }
  .website-is-only {
    font-size: 18px;
  }
}


     /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 


  @media (max-width: 767.98px) {
  .navbar-toggler {
    margin-left: 100px;
  }
}