body {
    margin: 0;
    font-family: sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 1px 30px;
    color: white;
    position: relative;
}

/* Golden Gradient Bottom Border */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #d4af37, #ffd700, #ffed4e, #ffd700, #d4af37);
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.get-id-btn {
    background-color: #ffffff;
    color: #212121;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

.whatsapp-btn {
    color: #25d366;
    font-size: 30px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #212121;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        z-index: 1;
        text-align: left;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}



/*         <section class="hero-section"> */
body {
    margin: 0;
    background-color: #121212;
}

.hero-section {
    background: #000;
    color: white;
    padding: 1px 20px;
    overflow-x: hidden; /* This is important to prevent scrollbars during animation */
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    /* margin: -50px auto; */
    gap: 40px;
}

/* Corrected Animation for Image Column */
.image-column {
    flex: 1;
    opacity: 0;
    /* Starts off-screen to the LEFT */
    transform: translateX(-100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Corrected Animation for Text Column */
.text-column {
    flex: 1;
    opacity: 0;
    /* Starts off-screen to the RIGHT */
    transform: translateX(100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* This class is added by JavaScript when the section is visible */
.image-column.visible,
.text-column.visible {
    opacity: 1;
    /* Moves to the final position on the page */
    transform: translateX(0);
}

.image-column img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

.text-column h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 30px;
}

.join-btn {
    display: inline-block;
    background-color: #fbc02d;
    color: #1a0909;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: #fdd835;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .text-column {
        text-align: center;
    }

    .text-column h1 {
        font-size: 28px;
    }

    .text-column p {
        text-align: center;
        text-align: justify;
    }
}
/* end */





/* end */

/*  <section class="index_costumer_7"> */
/* --- Corrected Customer Service Section (index_costumer_7) --- */

.index_costumer_7 {
    background-color: #0d1a3c; /* Dark blue background */
    color: #fff;
    padding: 80px 20px;
    overflow-x: hidden;
}

/* Main content wrapper for the two columns */
.index_costumer_7 .main-content {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
}

/* Left Column with a single image */
.index_costumer_7 .image-column {
    flex: 1;
}

.index_costumer_7 .image-column img {
    max-width: 100%;
    border-radius: 10px;
}

/* Right Column with text */
.index_costumer_7 .text-column {
    flex: 1;
}

.index_costumer_7 .text-column h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    display: inline-block;
}

.index_costumer_7 .text-column p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ccc;
}

.index_costumer_7 .download-btn {
    display: inline-block;
    color: #fff;
    background-color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.index_costumer_7 .download-btn::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background: conic-gradient(from 180deg at 50% 50%, #ff00ea, #00b3ff, #4dff00, #ffc700, #ff0000, #ff00ea);
    border-radius: 50px;
    z-index: -1;
}

/* Footer Content Styling */
.index_costumer_7 .footer-content {
    max-width: 1100px;
    margin: 80px auto 0;
    text-align: center;
}

.index_costumer_7 .footer-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.index_costumer_7 .footer-content p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .index_costumer_7 .main-content {
        flex-direction: column;
    }
}


/* end */





/*  */
/* --- Attractive Site Footer Section --- */
/* --- Attractive Site Footer Section --- */

.site-footer-attractive {
    background: #0a0a0a linear-gradient(to top, #1a0909, #0a0a0a);
    color: #ccc;
    font-family: Arial, sans-serif;
    padding-top: 80px;
    border-top: 3px solid #fbc02d; /* Gold top border */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* General Column Styling */
.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Underline effect for headings */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fbc02d;
}

/* About Section Specifics */
.about-section .footer-logo {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.payment-icons img {
    height: 30px;
    margin-right: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Links Sections with Hover Arrow */
.links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-section li {
    margin-bottom: 15px;
}

.links-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.arrow-icon {
    color: #fbc02d; /* Yellow arrow color */
    font-size: 12px;
    margin-right: 10px;
    opacity: 0; /* Hidden by default */
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.links-section a:hover {
    color: #fbc02d;
}

.links-section a:hover .arrow-icon {
    opacity: 1; /* Show arrow on hover */
    transform: translateX(0);
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    background-color: #222;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #fbc02d;
    color: #000;
    transform: translateY(-5px);
}

/* Footer Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    background-color: #000; /* Darker bottom bar */
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}


/* --- REFINED RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        /* The text alignment is now handled by the column itself */
    }
    
    .footer-column {
        /* This ensures text within each column is left-aligned */
        text-align: left;
    }

    .footer-column h4::after {
        /* The underline will now correctly align left with the heading */
        left: 0;
        transform: none;
    }

    .social-icons, .payment-icons {
        /* While the text is left-aligned, the icons can still be centered for a better look */
        justify-content: center;
    }
}


/* end */

/* whatapp */
/* --- Fixed Centered WhatsApp Button --- */
/* --- Fixed & Pulsing WhatsApp Button --- */

.whatsapp-button-pulsing {
    position: fixed; /* Fixes the button to the viewport */
    
    /* Positioned near the bottom, centered horizontally */
    bottom: 30px; /* Instead of top: 93%, this is more reliable */
    left: 50%;
    transform: translateX(-50%);
    
    z-index: 1000; /* Ensures it stays on top of other content */

    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    
    padding: 15px 30px;
    border-radius: 50px;
    
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    
    /* The pulse animation is applied here */
    animation: pulse 2s infinite;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

/* Keyframes for the "vibration" or pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* Icon styling */
.whatsapp-button-pulsing .fa-whatsapp {
    font-size: 28px;
    margin-right: 12px;
}

/* Hover effect - stops the pulse and lifts the button */
.whatsapp-button-pulsing:hover {
    animation: none; /* Stop the pulsing animation on hover */
    transform: translateX(-50%) scale(1.05); /* Enlarge the button slightly */
}


/* --- Mobile View Adjustments --- */
@media (max-width: 600px) {
    .whatsapp-button-pulsing {
        /* Make the button smaller on mobile screens */
        padding: 12px 20px;
        font-size: 10px;
    }

    .whatsapp-button-pulsing .fa-whatsapp {
        font-size: 24px;
        margin-right: 10px;
    }
}

/* end */


/* <section class="trust-features-section"> */
/* --- Trust Features Section --- */

.trust-features-section {
    background-color: #000; /* Black background */
    padding: 60px 20px;
    overflow-x: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 4 columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Feature Card */
.feature-card {
    background-color: #fff; /* White background for cards */
    border-radius: 20px; /* Rounded corners matching the image */
    padding: 40px 20px;
    text-align: center;
    position: relative; /* This is crucial for the hover effect */
    overflow: hidden; /* Ensures the yellow background doesn't overflow */
    z-index: 1;
    transition: transform 0.3s ease;
}

/* The yellow background that slides up from the bottom */
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0; /* Start with no height */
    background-color: #fbc02d; /* Yellow color */
    border-radius: 20px; /* Match the card's border radius */
    transition: height 0.4s ease-out; /* Smooth animation */
    z-index: -1; /* Place it behind the content */
}

.feature-card:hover::before {
    height: 100%; /* Expand to full height on hover */
}

.feature-card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

/* Ensure content stays on top of the yellow background */
.feature-icon,
.feature-title {
    position: relative;
    z-index: 2;
}

/* Icon Container */
.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Feature Title */
.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 0;
    line-height: 1.3;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease; /* Smooth color transition if needed */
}


/* --- Responsive Design --- */

/* Tablet view: 2 columns */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile view: 1 column */
@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}


/* --- Re-use the Fade-Up Animation --- */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* end */

/* <section class="faq-section"> */
.faq-section {
  background: #000000;
  padding: 10px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 50px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* FAQ Question/Title - Centered */
.faq-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}

/* FAQ Answer - Equal Left-Right Margins */
.faq-item p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: justify;
  padding-left: 80px;
  padding-right: 80px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .faq-item h2 {
    font-size: 1.8rem;
  }

  .faq-item p {
    font-size: 1.05rem;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-item {
    margin-bottom: 40px;
  }

  .faq-item h2 {
    font-size: 1.5rem;
  }

  .faq-item p {
    font-size: 1rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-item {
    margin-bottom: 35px;
  }

  .faq-item h2 {
    font-size: 1.3rem;
  }

  .faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* end */


/* <section class="experience-section"> */
/* Cricket Games Experience Section */
.experience-section {
  background: #000000;
  padding: 10px 20px;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading - Golden and Centered */
.experience-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Paragraphs - White text with equal margins */
.experience-container p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
  padding-left: 80px;
  padding-right: 80px;
}

.experience-container p:last-child {
  margin-bottom: 0;
}

/* Bold Keywords - Keep white but bold */
.experience-container strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .experience-container h2 {
    font-size: 2rem;
  }

  .experience-container p {
    font-size: 1.05rem;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .experience-section {
    padding: 60px 20px;
  }

  .experience-container h2 {
    font-size: 1.7rem;
  }

  .experience-container p {
    font-size: 1rem;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .experience-section {
    padding: 50px 15px;
  }

  .experience-container h2 {
    font-size: 1.4rem;
  }

  .experience-container p {
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* end */

/* <section class="why-pick-section"> */
/* Why Pick Reddy Anna Book Section */
.why-pick-section {
  background: #000000;
  padding: 80px 20px;
}

.why-pick-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Golden Heading - Centered */
.why-pick-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Content Paragraphs */
.why-pick-container p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
  padding-left: 80px;
  padding-right: 80px;
}

.why-pick-container strong {
  font-weight: 700;
}

/* Circular Stats Badges */
.stats-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 60px 0 50px 0;
  flex-wrap: wrap;
}

.badge-circle {
  width: 200px;
  height: 200px;
  border: 4px solid #FFD700;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000000;
  padding: 20px;
}

.badge-icon {
  margin-bottom: 15px;
  color: #4CAF50;
}

.badge-icon svg {
  stroke: #4CAF50;
}

.badge-circle h3 {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.4;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-demo,
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-demo {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-demo:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-demo:hover svg {
  stroke: #000000;
}

.btn-demo svg {
  stroke: #FFFFFF;
}

.btn-contact {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-contact:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-contact:hover svg {
  stroke: #000000;
}

.btn-contact svg {
  stroke: #FFFFFF;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .why-pick-container h2 {
    font-size: 2rem;
  }

  .why-pick-container p {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 1.05rem;
  }

  .stats-badges {
    gap: 40px;
  }

  .badge-circle {
    width: 180px;
    height: 180px;
  }

  .badge-icon svg {
    width: 50px;
    height: 50px;
  }

  .badge-circle h3 {
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-pick-section {
    padding: 60px 20px;
  }

  .why-pick-container h2 {
    font-size: 1.7rem;
  }

  .why-pick-container p {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1rem;
  }

  .stats-badges {
    gap: 30px;
    margin: 50px 0 40px 0;
  }

  .badge-circle {
    width: 160px;
    height: 160px;
  }

  .badge-icon svg {
    width: 45px;
    height: 45px;
  }

  .badge-circle h3 {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .btn-demo,
  .btn-contact {
    /* width: 100%; */
    max-width: 320px;
    padding: 14px 30px;
    font-size: 1rem;
    justify-content: center;
  }

  .btn-demo svg,
  .btn-contact svg {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .why-pick-section {
    padding: 50px 15px;
  }

  .why-pick-container h2 {
    font-size: 1.4rem;
  }

  .why-pick-container p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.95rem;
  }

  .badge-circle {
    width: 140px;
    height: 140px;
  }

  .badge-icon svg {
    width: 40px;
    height: 40px;
  }

  .badge-circle h3 {
    font-size: 0.9rem;
  }
}
/* end */


/* <section class="enjoy-gaming-section"> */
/* Enjoy Gaming Section */
.enjoy-gaming-section {
  background: #000000;
  padding: 10px 20px;
}

.enjoy-gaming-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Golden Heading - Centered */
.enjoy-gaming-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Content Paragraphs */
.enjoy-gaming-container p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
  padding-left: 80px;
  padding-right: 80px;
}

.enjoy-gaming-container strong {
  font-weight: 700;
}

/* Feature Boxes Wrapper */
.feature-boxes-wrapper {
  margin: 60px 0 50px 0;
}

/* Feature Row */
.feature-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

/* Second Row - Centered */
.feature-row-centered {
  justify-content: center;
}

/* Feature Box */
.feature-box {
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  width: 280px;
}

/* Hover Effect - Yellow Background + White Icon */
.feature-box:hover {
  background: #FFD700;
  border-color: #FFD700;
  transform: translateY(-5px);
}

.feature-box:hover h3 {
  color: #000000;
}

.feature-box:hover .feature-icon svg {
  stroke: #FFFFFF;
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-icon svg {
  stroke: #FFD700;
  transition: stroke 0.3s ease;
}

.feature-box h3 {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* CTA Wrapper */
.cta-wrapper-gaming {
  text-align: center;
  margin-top: 50px;
}

.btn-blogs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
}

.btn-blogs:hover {
  background: #FFD700;
  color: #000000;
}

.btn-blogs:hover svg {
  stroke: #000000;
}

.btn-blogs svg {
  stroke: #FFD700;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .enjoy-gaming-container h2 {
    font-size: 2rem;
  }

  .enjoy-gaming-container p {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 1.05rem;
  }

  .feature-row {
    gap: 20px;
  }

  .feature-box {
    width: 260px;
    padding: 28px 18px;
  }

  .feature-icon svg {
    width: 42px;
    height: 42px;
  }

  .feature-box h3 {
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .enjoy-gaming-section {
    padding: 60px 20px;
  }

  .enjoy-gaming-container h2 {
    font-size: 1.7rem;
  }

  .enjoy-gaming-container p {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1rem;
  }

  .feature-boxes-wrapper {
    margin: 50px 0 40px 0;
  }

  .feature-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-box {
    width: 100%;
    max-width: 350px;
    padding: 25px 20px;
  }

  .feature-icon svg {
    width: 45px;
    height: 45px;
  }

  .feature-box h3 {
    font-size: 1rem;
  }

  .btn-blogs {
    /* width: 100%; */
    max-width: 300px;
    padding: 14px 30px;
    font-size: 1rem;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .enjoy-gaming-section {
    padding: 50px 40px;
  }

  .enjoy-gaming-container h2 {
    font-size: 1.4rem;
  }

  .enjoy-gaming-container p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.95rem;
  }

  .feature-box {
    padding: 22px 18px;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-box h3 {
    font-size: 0.95rem;
  }
}
/* end */

/* <section class="get-started-section"> */

/* How to Get Started Section */
.get-started-section {
  background: #000000;
  padding: 10px 20px;
}

.get-started-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* Main Golden Heading - Centered */
.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* Step Block */
.step-block {
  margin-bottom: 40px;
}

.step-block:last-child {
  margin-bottom: 0;
}

/* Yellow Step Heading */
.step-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* White Paragraph with Bold Keywords */
.step-block p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: justify;
}

.step-block strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .get-started-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .step-heading {
    font-size: 1.6rem;
  }

  .step-block p {
    font-size: 1.05rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .get-started-section {
    padding: 60px 20px;
  }

  .get-started-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .main-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .step-block {
    margin-bottom: 35px;
  }

  .step-heading {
    font-size: 1.4rem;
  }

  .step-block p {
    font-size: 1rem;
    text-align: left;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .get-started-section {
    padding: 50px 15px;
  }

  .get-started-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .step-heading {
    font-size: 1.2rem;
  }

  .step-block p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* end  */


/* <section class="deposit-withdraw-section"> */

/* Depositing & Withdrawing Section */
.deposit-withdraw-section {
  background: #000000;
  padding: 80px 20px;
}

.deposit-withdraw-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* Main Golden Heading - Left Aligned */
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  text-align: left;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* Info Block */
.info-block {
  margin-bottom: 45px;
}

.info-block:last-child {
  margin-bottom: 0;
}

/* Yellow Numbered Heading */
.block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* White Paragraph with Bold Keywords */
.info-block p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-block strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .deposit-withdraw-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .block-heading {
    font-size: 1.6rem;
  }

  .info-block p {
    font-size: 1.05rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .deposit-withdraw-section {
    padding: 60px 20px;
  }

  .deposit-withdraw-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .main-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .info-block {
    margin-bottom: 40px;
  }

  .block-heading {
    font-size: 1.4rem;
  }

  .info-block p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .deposit-withdraw-section {
    padding: 50px 15px;
  }

  .deposit-withdraw-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .block-heading {
    font-size: 1.2rem;
  }

  .info-block p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* end */

/* <section class="benefits-section"> */
.benefits-section {
  background: #000;
  padding: 10px 20px;
}
.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.benefits-container h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 50px;
  line-height: 1.2;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
  text-align: center;
  padding: 30px 18px 28px 18px;
  transition: color 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #FFD700;
  z-index: 1;
  border-radius: 14px;
  transition: height 0.35s cubic-bezier(.56,.19,.3,1.36);
}
.benefit-card:hover::after {
  height: 100%;
}
.benefit-icon {
  display: block;
  margin: 0 auto 22px auto;
  height: 56px;
  position: relative;
  z-index: 2;
}
.benefit-icon svg {
  display: block;
  margin: 0 auto;
  stroke: #FFD700;
  transition: stroke 0.3s;
  z-index: 2;
}
.benefit-card p {
  font-size: 1.08rem;
  color: #111;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}
/* HOVER EFFECT: yellow flows up, icon and text turn black */
.benefit-card:hover p,
.benefit-card:hover .benefit-icon svg {
  color: #111;
  stroke: #111;
}
.benefit-card:hover p {
  color: #111;
}
.benefit-card:hover .benefit-icon svg {
  stroke: #111;
}
/* Above text and icon appear above the yellow overlay */
.benefit-card p,
.benefit-card .benefit-icon svg {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .benefits-section {
    padding: 60px 12px;
  }
  .benefits-container h2 {
    font-size: 1.4rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* end */

/* <section class="easy-cricket-section"> */
.easy-cricket-section {
  background: #000;
  padding: 10px 15px 35px 15px;
}
.easy-cricket-container {
  max-width: 1100px;
  margin: 0 auto;
}
.easy-cricket-container h2 {
  color: #FFD700;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.2;
}
.easy-cricket-container p {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.68;
  text-align: left;
  margin-bottom: 13px;
  font-weight: 400;
}
.easy-cricket-container strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 900px) {
  .easy-cricket-container h2 {
    font-size: 1.4rem;
  }
  .easy-cricket-container {
    padding: 0 5px;
  }
}
@media (max-width: 600px) {
  .easy-cricket-container h2 {
    font-size: 1.1rem;
  }
  .easy-cricket-container p {
    font-size: .98rem;
  }
}
/* end */

/* <section class="payment-section"> */
.payment-section {
  background: #111;
  padding: 80px 20px 65px 20px;
}
.payment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.payment-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.12;
}
.payment-description {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 35px;
}
.payments-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 34px 0;
}
.payments-carousel {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  padding: 10px 12px 10px 12px;
  scroll-behavior: smooth;
  min-width: 0;
  max-width: 900px;
  scrollbar-width: none;
}
.payments-carousel::-webkit-scrollbar { display: none; }
.payment-card {
  flex: 0 0 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgb(0 0 0 / 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  min-height: 100px;
  min-width: 170px;
  font-size: 1.18rem;
  font-weight: 600;
  gap: 7px;
}
.payment-card img {
max-width: 144px;
    max-height: 128px;
  display: block;
  margin: 0 auto;
}
.carousel-arrow {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 2.4rem;
  width: 48px;
  height: 96px;
  cursor: pointer;
  border-radius: 8px;
  user-select: none;
}
.carousel-arrow:hover {
  background: #FFD700;
  color: #111;
}
.cta-wrapper {
  margin-top: 38px;
  text-align: center;
}
.cta-yellow {
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.22rem;
  border-radius: 2rem;
  padding: 18px 45px;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(200,170,4,0.14);
  border: none;
  display: inline-block;
}
.cta-yellow:hover {
  background: #ecc900;
  color: #fff;
}
@media (max-width: 1000px) {
  .payments-carousel { max-width: 700px; }
  .payment-card { min-width: 125px; padding: 14px 6px; }
}
@media (max-width: 700px) {
  .payment-container h2 { font-size: 1.5rem; }
  .payment-description { font-size: 1rem; margin-bottom: 20px; }
  .payments-carousel { max-width: 390px; gap: 12px;}
  .payment-card { padding: 11px 2px; min-width: 80px; }
  .cta-yellow { font-size: 1rem; padding: 11px 22px; }
}
/* end */