body{
    background-color: #000;
}
a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none;
}

strong{
    color: #D8A303;
}
.site-footer{
  background:#0a0a0a;
  padding:20px 10px;
  font-family:Arial;
  text-align:center;
}

/* Top Section */
.footer-top{
  display:flex;
  justify-content:center;
  gap:30px;
  padding-bottom:15px;
}

.keywords-row a{
  color: #888;
}
.footer-box{
  color:#ffffff;
  font-size:15px;
}

.footer-box .icon{
  display:block;
  font-size:45px;
  margin-bottom:5px;
}

/* Middle Section */
.footer-middle{
  border-top:1px solid #222;
  border-bottom:1px solid #222;
  padding:15px 0;
}

.brand-row{
  display:flex;
  justify-content:center;
  gap:25px;
  margin-bottom:10px;
}

.brand-row p{
  color:#ccc;
  font-size:14px;
}

.keywords-row{
  color:#aaa;
  font-size:13px;
  word-spacing:6px;
}

/* Bottom Section */
.footer-bottom{
  padding-top:12px;
}

.footer-links{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:15px;
  padding:0;
  margin:0 0 8px 0;
}

.footer-links li a{
  text-decoration:none;
  color:#dddddd;
  font-size:13px;
}

.copyright{
  color:#888;
  font-size:12px;
}


/*<!-- Fixed Whatsapp -->*/

 .btwhatclick {
      position: fixed;
      bottom: 10px;
      right: 10px;
      background-color: #25D366;
      color: white;
      font-size: 24px;
      padding: 15px;
      border-radius: 10%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 9999;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    .btwhatclick:hover {
      background-color: #1eb955;
      color: white;
    }

    .btwhatclick i {
      pointer-events: none;
    }

/*<!-- Fixed Whatsapp -->*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background: #101012; /* Dark Black */
    border-bottom: 1px solid #222;
    position: relative;
}

/* Container */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
width: 40%;
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 5%;
}

.nav ul li a {
    text-decoration: none;
    color: #f5d27a; /* Gold look */
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: #ffffff;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    width: 26px;
    height: 3px;
    background: #f5d27a;
    margin: 4px 0;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* ===================== */
/* Responsive */
/* ===================== */

@media (max-width: 992px) {
    .logo img {
        width: 300px;
    }
}

@media (max-width: 768px) {

    .menu-icon {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        display: none;
        border-top: 1px solid #222;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .nav ul li {
        padding: 12px 0;
    }

    #menu-toggle:checked ~ .nav {
        display: block;
    }

    .logo img {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 180px;
    }
}




.hero {
    background:
        linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
        url("../images/casinoo.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* ✅ FIXED BACKGROUND */

    padding: clamp(0px, 6vw, 0px) 20px;
}

.hero-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    background: #f5d27a;
    color: #000;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.2;
    color: #222;
    margin-bottom: 14px;
}

.hero-content h1 span {
    color: #ffc107;
    font-weight: 800;
}
.hero-content h1 {
    color: #fff;
}
.hero-content p {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #fff;
    margin-bottom: 22px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.primary {
    background: #1a73e8;
    color: #fff;
}

.primarybtn:hover {
    background: #fff;
    color: #000;
}
.secondary {
    border: 1px solid #1a73e8;
    color: #1a73e8;
}

/* RIGHT IMAGE */
.hero-image {
    max-width: 420px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 340px;
    }
}

/* ⚠️ Mobile fix (background-attachment issue) */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}



/*=============== peragraph css code ===============*/

.content-section {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
  font-family: Arial, sans-serif;
  color: #fff;
}



/* Tablet */
@media (max-width: 992px) {
  .content-section {
    width: 90%;
  }

  .content-section h2 {
    font-size: 30px;
  }

  .content-section p {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .content-section {
    width: 92%;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section p {
    font-size: 16px;
  }
}


/*=============== peragraph css code ===============*/
.faq-section {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #fff;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  padding: 18px 40px 18px 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #fff;
}

.faq-item label::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 24px;
  transition: 0.3s;
}

.faq-item input:checked + label::after {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content p {
  padding: 0 10px 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

.faq-item input:checked ~ .faq-content {
  max-height: 300px;
}

/* Tablet */
@media (max-width: 992px) {
  .faq-section {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .faq-section {
    width: 92%;
  }

  .faq-section h2 {
    font-size: 26px;
  }

  .faq-item label {
    font-size: 16px;
  }

  .faq-content p {
    font-size: 15px;
  }
}

/* ================= Section ================= */
.features-section {
    background-color: #f1f1f1;
    padding: 40px 5%;
    font-family: Arial, sans-serif;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ================= Main Heading ================= */
.features-section h3 {
    grid-column: 1 / -1;
    font-size: 26px;
    font-weight: 700;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

/* ================= Cards ================= */
.content-wrapper {
    background-color: #fff;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover (Desktop only friendly) */
@media (hover: hover) {
    .content-wrapper:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        background-color: #fafafa;
    }
}

/* ================= Card Heading ================= */
.features-section h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* ================= Text ================= */
.features-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ================= Link ================= */
.home-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.home-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ================= Tablet ================= */
@media (max-width: 1024px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 6%;
    }

    .features-section h3 {
        font-size: 24px;
    }
}

/* ================= Mobile ================= */
@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
        padding: 30px 5%;
    }

    .features-section h3 {
        font-size: 22px;
    }

    .features-section h5 {
        font-size: 16px;
    }

    .features-section p {
        font-size: 13px;
    }
}

/* ================= Small Phones ================= */
@media (max-width: 480px) {
    .features-section {
        padding: 25px 15px;
    }

    .content-wrapper {
        padding: 18px;
    }

    .features-section h3 {
        font-size: 20px;
    }
}


/*========Text Box========*/


.support-mini {
  width: 80%;
  margin: 0 auto;
  padding: 35px 0;
  font-family: Arial, sans-serif;
}

.support-inner {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-text h3 {
  font-size: 20px;
  margin: 0 0 4px;
  color: #111827;
}

.support-text p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.support-actions {
  display: flex;
  gap: 12px;
}

.support-actions .btn {
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

/* WhatsApp */
.whatsapp {
  background: #16a34a;
  color: #fff;
}

.whatsapp:hover {
  background: #15803d;
}

/* Email */
.email {
  background: #2563eb;
  color: #fff;
}

.email:hover {
  background: #1d4ed8;
}

/* Tablet */
@media (max-width: 992px) {
  .support-mini {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .support-mini {
    width: 92%;
  }

  .support-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .support-actions {
    justify-content: center;
  }
}

/*=============== Banner Display None Css =============== */


.vip-banner {
  width: 100%;
}

/* Common Image Style */
.vip-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Default: Desktop Visible */
.banner-desktop {
  display: block;
}

.banner-mobile {
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  .banner-desktop {
    display: none;
  }

  .banner-mobile {
    display: block;
  }
}

/*=============== Banner Display None Css =============== */
