/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #6F9BD1; /* Dark blue background for side menu */
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1100;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
      /* Enable scrolling inside the menu */
      overflow-y: auto;
      max-height: 100vh;
}

.side-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.side-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

body.no-scroll {
    overflow: hidden;
    height: 100vh; /* Prevents any scrolling on body */
}

@media (max-width: 768px) {
    header {
        flex-direction: row; /* Prevents column layout */
    }

    .menu-toggle {
        order: 1; /* Ensures menu stays on the left */
    }

    .logo-link {
        order: 2; /* Ensures logo stays on the right */
        margin-left: auto; /* Keeps it aligned to the right */
    }
}

.side-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.side-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}


.menu-logo {
    text-align: center;
    padding: 10px 0;
}

.side-menu a {
    color: white;
    padding: 15px;
    text-decoration: none;
    padding-top: 0px;
    text-align: left;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

.side-menu a img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.menu-logo a {
    display: inline-block; /* Ensure it's only as big as the logo */
    text-decoration: none; /* Remove any text decoration */
}

.menu-logo a img {
    width: 200px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Prevent the general side-menu a styles from affecting the logo link */
.side-menu .logo-link {
    padding: 0;
    background: none;
    display: block;
    text-align: center;
}

.logo-link {
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes the logo to the right */
}

/* Ensure it doesn't get the same hover effect */
.side-menu .logo-link:hover {
    background: none;
    color: inherit;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: #FFD700; /* Red color for the close button */
    cursor: pointer;
}

.close-btn:hover {
    color: #E6BE8A; /* Light purple on hover */
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay */
    display: none;
    transition: opacity 0.3s;
    z-index: 1000; /* Ensure overlay is on top */
    pointer-events: none; /* Initially disable interactions */
}

.overlay.active {
    display: block;
    pointer-events: all; /* Enable interactions when active */
}

/* Active side menu */
.side-menu.active {
    left: 0; /* Slide menu in */
}

/* Active overlay */
.overlay.active {
    display: block;
}

/* Menu Toggle Button */
.menu-toggle {
    position: absolute;
    left: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
}

body {
    /* background: linear-gradient(74deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 17%, rgba(0, 212, 255, 1) 100%); */
    background: linear-gradient(74deg, #DF3C5F 0%, #224193 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #f0f0f0; /* Changed from white to light gray for better visibility */
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

header {
    display: flex;
    justify-content: space-between; /* Ensures spacing between menu and logo */
    align-items: center;
    padding: 10px 20px;
    background: #6F9BD1;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: fixed; /* Makes the header stick at the top */
    top: 0; /* Positions it at the top */
    left: 0;
    width: 100%; /* Ensures it stretches across the screen */
    z-index: 1000; /* Ensures it stays above other elements */
}

.menu-toggle {
    margin-left: auto; /* Pushes logo to center */
}

.logo-img {
    max-width: 80px;
    height: auto;
    display: block;
    margin-left: auto;
    padding-right: 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo span {
    color: #E6BE8A; /* Soft gold for a lighter, luxurious touch */
}
.casino-image {
    width: 100%; /* Adjust width as needed */
    max-width: 500px; /* Set a maximum width */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #4ba614;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }
}

/* .swiper-container {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    overflow: hidden;
}

.game-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    max-width: 75%;
    margin: auto;
    margin-top: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.game-logo img {
    width: 180px;
    height: auto;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.game-buttons a {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    width: 100%;
    width: 350px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-button {
    background-color: #25D366;
}

.play-button {
    background-color: #24A1DE;
}

.button-icon {
    width: 20px;
    height: auto;
}


.swiper-button-next,
.swiper-button-prev {
    color: #000;
} */

.swiper-container {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    overflow: hidden;
    position: relative; /* Make sure the swiper container has relative positioning */
}

.game-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    max-width: 75%;
    margin: auto;
    margin-top: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative; /* Ensure the game-card is the reference for absolute positioning */
}

.game-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.game-logo img {
    width: 180px;
    height: auto;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.game-buttons a {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    width: 100%;
    width: 350px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-button {
    background-color: #25D366;
}

.play-button {
    background-color: #24A1DE;
}

.button-icon {
    width: 20px;
    height: auto;
}


/* @media (max-width: 600px) {
    .game-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .game-logo img {
        width: 100px; 
    }

    .game-buttons a {
        width: 250px; 
        font-size: 14px;
    }

    @media (max-width: 600px) {
        .game-card {
            max-width: 100%;
        }
    
        .game-buttons a {
            max-width: 80%;
        }
    }
} */

@media (max-width: 600px) {
    .game-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .game-logo img {
        width: 100px; /* Slightly bigger on mobile for better visibility */
    }

    .game-buttons a {
        width: 200px; /* Make buttons responsive on smaller screens */
        font-size: 14px;
    }

    .game-card {
        max-width: 100%; /* Makes it fully responsive */
    }

    .game-buttons a {
        max-width: 80%; /* Makes buttons better scaled on mobile */
    }
}

.download-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    max-width: 60%;
    margin: 40px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.download-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
}

.download-content {
    display: flex;
    justify-content: center; /* Centers the cards */
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap */
}

.download-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 230px; /* Slightly reduced width */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
}

.download-card img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.download-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: black;
}

.download-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.download-button {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    width: 60%;
    /* border: 2px solid black; */
}

.android-button {
    background: linear-gradient(73deg, rgba(151, 236, 168, 1) 5%, rgba(36, 199, 69, 1) 35%, rgba(16, 162, 45, 1) 96%);
}

.ios-button {
    background: linear-gradient(73deg, rgba(221, 104, 70, 1) 5%, rgba(216, 70, 30, 1) 43%, rgba(215, 46, 3, 1) 89%);
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .download-section {
        max-width: 70%;
    }

    .download-content {
        flex-direction: column;
        align-items: center;
    }

    .download-card {
        width: 90%;
    }
}

.review-section {
    background-color: #ffffff;
    padding: 20px;
    margin: 40px auto;
    max-width: 60%;
    text-align: center;
    border-radius: 20px;
}

.review-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.col-4 {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.review-header {
    font-size: 28px;
    font-weight: bold;
    color: black; /* Changed to black */
}

.review-footer {
    font-size: 18px;
    color: black; /* Changed to black */
}

.review-border-right {
    border-right: 2px solid #ddd;
    padding-right: 20px;
}

/* Remove border for the last item */
.col-4:last-child {
    border-right: none;
}

/* Gold Star Icon */
.gold-star {
    color: gold;
}

/* âœ… Responsive: Make all cards fit in a row */
@media (max-width: 600px) {
    .review-container {
        flex-wrap: wrap; /* Ensures cards fit */
        justify-content: center; /* Centers all cards */
    }

    .review-section{
        max-width: 70%;
    }

    .col-4 {
        flex: 1;
        min-width: 20%; /* Adjusts size to fit 3 items in a row */
        text-align: center;
    }

    .review-header {
        font-size: 20px; /* Adjust for small screens */
    }

    .review-footer {
        font-size: 14px;
    }
}

.about-section {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px 10px; /* Reduced padding */
    max-width: 60%;
    margin: 30px auto; /* Less space between sections */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-section h2 {
    color: black;
}

.about-content {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    /* max-width: 800px; */
    margin: 0 auto;
    text-align: center; /* Center the text */
}

#extra-text {
    display: none; /* Hide extra text by default */
}

#read-more-btn {
    display: block;
    margin: 10px auto; /* Less space between button and text */
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid black;
    background-color: #f0f0f0;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

#read-more-btn:hover {
    background-color: #ddd;
}

/* âœ… Responsive: Make section fit smaller screens */
@media (max-width: 600px) {
    .about-section {
        max-width: 75%;
        padding: 10px; /* Less padding for mobile */
    }

    .about-content {
        font-size: 14px;
    }
}

.table-of-content {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 15px;
    max-width: 60%;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.table-of-content h2 {
    color: black;
    margin-bottom: 10px;
}

.table-of-content ul {
    list-style-type: none;
    padding: 0;
}

.table-of-content ul li {
    margin: 8px 0;
}

.table-of-content ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.table-of-content ul li a:hover {
    color: #0056b3;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .table-of-content {
        max-width: 75%;
        padding: 10px;
    }

    .table-of-content ul li a {
        font-size: 14px;
    }
}

.mega888-section {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    max-width: 60%;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left */
}

.mega888-title1,
.mega888-title2,
.mega888-title3,
.mega888-title4,
.mega888-title5,
.mega888-title6,
.mega888-title7,
.mega888-title8,
.mega888-title {
    font-size: 20px;
    font-weight: bold;
    color: #0a347c;
    margin-bottom: 10px;
    text-align: left; /* Left-aligned title */
}


.mega888-description {
    font-size: 16px;
    color: #333; /* Changed from #4d4e4d to darker color for better visibility */
    line-height: 1.6;
    margin: 0 auto;
    padding: 5px;
}

.mega888-list {
    padding-left: 20px;
    margin-top: 5px;
    font-size: 16px;
    color: #333; /* Changed from black to darker color */
    line-height: 1.6;
}

.mega888-list li {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .mega888-section {
        max-width: 75%;
        padding: 10px;
        margin: 15px auto;
    }

    .mega888-title {
        font-size: 18px;
    }

    .mega888-description {
        font-size: 14px;
        line-height: 1.4;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
}

.mega888-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px; /* Ensures the table doesn't shrink too much */
}

/* .mega888-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
} */
 

.mega888-table th,
.mega888-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.mega888-table th {
    background-color: #152131;
    color: white;
}

.mega888-table td {
    background-color: white;
    color: black;
}

/* Responsive Table */
/* @media (max-width: 600px) {
    .mega888-table th, 
    .mega888-table td {
        font-size: 14px;
        padding: 8px;
    }
} */

/* Responsive Table */
@media (max-width: 600px) {
    .mega888-table {
        font-size: 12px; /* Reduce text size */
        min-width: unset; /* Allow full shrinking */
    }

    .mega888-table th, 
    .mega888-table td {
        padding: 6px; /* Reduce padding */
    }
}

.rating-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 60%;
    margin: auto;
}

.rating-left {
    text-align: left;
    flex: 1;
}

.rating-number {
    font-size: 36px;
    font-weight: bold;
    color: black;
}

.rating-stars span {
    font-size: 24px;
    color: gold;
}

.total-reviews {
    font-size: 14px;
    color: gray;
}

.rating-bars {
    flex: 2;
}

.rating-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.rating-bar-container span {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.rating-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.filled-rating-bar {
    height: 100%;
    background-color: gold;
}

/* Responsive */
@media (max-width: 600px) {
    .rating-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        max-width: 70%;
    }
    .rating-left {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .rating-bars {
        width: 100%;
    }
}

.gaming-license-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 60%;
}

.gaming-license-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gaming-license-images {
    display: flex;
    justify-content: center; /* Center the images */
    gap: 10px; /* Reduced gap between images */
    margin-bottom: 20px;
}

.gaming-license-img {
    flex: 1;
    text-align: center;
}

.gaming-license-img img {
    max-width: 50%;
    border-radius: 10px;
}

.gaming-license-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    /* max-width: 600px; */
}

.gaming-license-text p {
    margin: 0;
}

.gaming-license-img-2 img {
    max-width: 20%; /* Make the second image smaller */
}

.gaming-license-img-1 img {
    max-width: 80%; /* Make the second image smaller */
}

/* Responsive */
@media (max-width: 600px) {
    .gaming-license-card {
        max-width: 70%;
    }

    .gaming-license-images {
        flex-direction: column;
        align-items: center;
    }

    .gaming-license-img-1 img {
        max-width: 40%; /* Make the second image smaller */
    }

    .gaming-license-img-2 img {
        max-width: 30%; /* Make the second image smaller */
    }

    .gaming-license-img {
        margin-bottom: 10px;
    }

    .gaming-license-text {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

.gaming-license-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.gaming-license-img img {
    width: 50%;
    border-radius: 10px;
    height: auto;
}

.app-info-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    width: 60%;
    color: black;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.app-info-table th,
.app-info-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.app-info-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.app-info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.app-info-table tr:hover {
    background-color: #f1f1f1;
}

.head-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Responsive */
@media (max-width: 600px) {
    .app-info-card {
        width: 70%;
        padding: 15px;
    }

    .app-info-table {
        font-size: 14px;
    }

    .app-info-table th,
    .app-info-table td {
        padding: 8px;
    }
}

.contact-us-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    padding: 30px;
    width: 60%;
}

.contact-us-card .head-title {
    font-size: 24px;
    font-weight: bold;
    color: black; /* Ensuring the title is black */
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-item {
    width: 48%; /* This will take up 48% of the row, leaving space between the items */
    margin-bottom: 20px;
    text-align: left; /* Aligning content to the left */
}

.contact-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.contact-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .contact-us-card {
        width: 75%;
        padding: 15px;
    }

    .contact-title {
        font-size: 16px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-item {
        width: 100%; /* On smaller screens, the items will take up full width */
    }
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon img {
        width: 35px;
        height: 35px;
    }
}

.follow-us {
    margin-top: 30px;
}

.follow-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gaming-license-images {
        display: flex;
        flex-direction: row; /* Align images horizontally */
        justify-content: center; /* Center the images */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
        flex-wrap: nowrap; /* Prevent images from wrapping */
    }

    .gaming-license-img img {
        margin-right: 15px; /* Space between images */
    }
}

/* .whatsapp-floating-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    z-index: 9999;
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0); 
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-floating-button:hover {
    transform: translateX(-50%) scale(1.05);
}

.whatsapp-icon {
    width: 24px;
    height: auto;
}


@media (max-width: 768px) {
    .whatsapp-floating-button {
        bottom: 10px !important;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
    }
}

.whatsapp-icon {
    width: 24px;
    height: auto;
} */

.whatsapp-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 0;
    z-index: 9999; /* Ensures it stays on top */
}

/* WhatsApp Floating Button */
.whatsapp-floating-button {
    background-color: #25D366;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    max-width: 90%; /* Prevents overflow */
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Hides overflow text */
    text-overflow: ellipsis; /* Adds "..." if text overflows */
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* WhatsApp Icon */
.whatsapp-icon {
    width: 24px;
    height: auto;
}

/* Button Hover Effect */
.whatsapp-floating-button:hover {
    transform: scale(1.05);
    animation: none; /* Stops bouncing on hover for a smoother effect */
}

/* Mobile Version */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 10px; /* Adjusts position for mobile */
    }

    .whatsapp-floating-button {
        font-size: 14px;
        padding: 10px 15px; /* Reduces padding */
        gap: 5px; /* Reduces space between icon and text */
    }

    .whatsapp-icon {
        width: 20px; /* Makes icon smaller */
    }
}

/* Fix for Rating & Reviews heading */
.box .head-title[style*="color: white"] {
    color: #333 !important; /* Override the inline style with !important */
}

/* Fix for list items in mega888-section */
.mega888-section ul li,
.mega888-section ol li {
    color: #333; /* Ensure list items are visible */
    margin-bottom: 8px;
}

/* Fix for FAQ items */
.faq-item h3 {
    color: #333; /* Dark gray for FAQ headings */
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-item p {
    color: #555; /* Medium gray for FAQ text */
    font-size: 16px;
    line-height: 1.5;
}