   body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            position: relative; /* Establish stacking context */
            background-color: #1f1f1f; /* Set the background color to black */
            color: #ffffff; /* Set text color to white */
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 110vh; /* Increased height for the container */
            position: relative;
            max-width: 600px; /* Limit the maximum width of the container */
            margin: 0 auto; /* Center the container horizontally */
            z-index: 1; /* Ensure the container is above the background */
        }
       
        .site-title {
        color: #00ff00; /* Set font color to green */
        font-weight: bold; /* Make the font bold */
    }


        form {
            background-color: #333333; /* Change form background color */
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            animation: fadeIn 0.5s;
            margin-top: 20px;
            width: 100%; /* Make form width same as container */
            box-sizing: border-box; /* Include padding and border in the width */
        }

        label {
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
            color: #ffffff; /* Change label text color */
        }

        input[type="file"] {
            margin: 10px 0;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            box-sizing: border-box;
        }

        input[type="submit"] {
            background-color: #4caf50;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
      
  /* Result container CSS */
.result-container {
    background-color: #333333;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Increase box shadow for a more prominent effect */
    text-align: center;
    display: flex;
    flex-direction: column; /* Align content in a column */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%; /* Position at the vertical center */
    left: 50%; /* Position at the horizontal center */
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 400px;
    box-sizing: border-box;
    z-index: 2;
    overflow: hidden; /* Hide overflow content */
}

/* Close icon CSS */
.close-icon {
    position: absolute;
    top: 10px; /* Adjust position from top */
    right: 10px; /* Adjust position from right */
    cursor: pointer;
    color: red; /* Change color to red */
    font-size: 24px; /* Increase font size for the close icon */
    z-index: 1;
}

/* Result message CSS */
.result-message {
    margin-bottom: 15px; /* Add margin bottom for spacing */
}

/* Result image CSS */
.result-image {
    width: 100px; /* Set width for the image */
    height: 100px; /* Set height for the image */
    border-radius: 50%; /* Make the image circular */
    margin-bottom: 15px; /* Add margin bottom for spacing */
}

/* Result title CSS */
.result-title {
    font-size: 20px; /* Increase font size for the title */
    font-weight: bold; /* Make the title bold */
    margin-bottom: 10px; /* Add margin bottom for spacing */
}

/* Result description CSS */
.result-description {
    font-size: 16px; /* Set font size for the description */
    margin-bottom: 15px; /* Add margin bottom for spacing */
}

/* Result button CSS */
.result-button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove default button underline */
}

.result-button:hover {
    background-color: #45a049;
}



        .success {
            color: #4caf50;
        }

        .error {
            color: #f44336;
        }

        .download-button {
            display: inline-block;
            background-color: #4caf50;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 4px;
            margin-top: 10px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Style for tabs */
        .tab {
            display: flex;
            justify-content: center;
            background-color: #1f1f1f; /* Set tab background color to black */
            margin-top: 100px;
            width: 100%; /* Make tab width same as container */
            box-sizing: border-box; /* Include padding and border in the width */
            position: relative;
            z-index: 1; /* Ensure the tabs are above the background */
        }

        /* Style for tab buttons */
        .tab button {
            background-color: inherit;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 14px 16px;
            transition: 0.3s;
            color: #ffffff; /* Set tab button text color to white */
        }

        /* Change background color of active tab */
        .tab button.active {
            background-color: #333333; /* Set active tab background color to dark gray */
        }

        .tabcontent {
            display: none;
            padding: 20px;
            border: 1px solid #333333; /* Set tab content border color to dark gray */
            border-top: none;
            width: 100%; /* Make tab content width same as container */
            box-sizing: border-box; /* Include padding and border in the width */
        }


    /* Style for token input */
.token-input {
    margin-top: 20px;
    width: 100%; /* Adjusted to fit horizontally */
    text-align: center;
}

/* Token id input style */
.token-input input[type="text"],
#appname,
#packagename {
    padding: 10px;
    width: 100%; /* Adjusted to fit horizontally */
    box-sizing: border-box;
    border: none; /* Remove default border */
    border-bottom: 2px solid #2196F3; /* Add blue bottom border */
    background-color: transparent; /* Make the background transparent */
    color: #ffffff; /* Set text color to white */
    outline: none; /* Remove outline on focus */
    text-align: center; /* Center the text within the input box */
}

/* Token id input placeholder style */
.token-input input[type="text"]::placeholder,
#appname::placeholder,
#packagename::placeholder {
    color: #ccc;
    text-align: center; /* Center the placeholder text */
}

/* Token id input label style */
.token-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Add a light red bottom border to appname and packagename */
#appname,
#packagename {
    border-bottom: 2px solid #FF0000; /* Add light red bottom border */
}


    
.horizontal-box {
    position: relative;
    width: 100%;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 3;
    overflow: hidden;
}

.horizontal-box-text {
    color: #00ff00;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    padding-right: 200px; /* Adjust this value to leave space for the link */
}

/* Add CSS for the link */
.horizontal-box a {
    color: #ffffff;
    text-decoration: none;
    
}

/* Animation for marquee effect */
@keyframes marquee {
    0% {
        transform: translateX(100%); /* Start from left */
    }
    100% {
        transform: translateX(-100%); /* End at right */
    }
}

/* Adjust marquee animation for smaller screens */
@media (max-width: 600px) {
    .horizontal-box-text {
        animation: marquee-mobile 20s linear infinite; /* Apply animation to text */
    }
}

/* Animation for marquee effect on mobile */
@keyframes marquee-mobile {
    0% {
        transform: translateX(100%); /* Start from right */
    }
    100% {
        transform: translateX(-100%); /* End at left */
    }
}

/* Adjust form size */
form {
    margin-bottom: 20px; /* Increase space below form */
}

/* Adjust tab style */
.tab {
    margin-top: 20px; /* Adjust margin top */
}

/* Adjust tab content style */
.tabcontent {
    display: block; /* Display the PlayProtect tab content */
}

/* Adjust tab button style */
.tab button {
    border-bottom: 2px solid #2196F3; /* Add blue bottom border to tab buttons */
}

/* Adjust tab button hover style */
.tab button:hover {
    background-color: #333333; /* Darken background color on hover */
}

/* Adjust active tab button style */
.tab button.active {
    background-color: #333333; /* Set active tab background color to dark gray */
    border-bottom: 2px solid #2196F3; /* Add blue bottom border to active tab button */
}

/* Adjust result container position */
.result-container {
    top: 70%; /* Position result container lower */
}



        .gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.gif-container img {
    border-radius: 10px; /* Optional: Add border radius for a nicer look */
}


.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Height of the loading bar */
    background-color: #2196F3; 
    animation: loading 10s linear forwards; /* Animation duration */
}

@keyframes loading {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}


@import url("https://fonts.googleapis.com/css?family=Raleway");

:root {
  --glow-color: hsl(186 100% 69%);
}

body {
  /* Removed background styling to avoid affecting the entire page */
}

.glowing-btn-wrapper {
  /* Optional wrapper to further isolate the glowing button's section */
  background: black; /* Keep the button's section black */
  padding: 20px; /* Add some padding to ensure spacing around the button */
}

.glowing-btn {
  position: relative;
  display: inline-block; /* Ensure it stays inline */
  color: var(--glow-color);
  cursor: pointer;
  padding: 0.35em 1em;
  border: 0.15em solid var(--glow-color);
  border-radius: 0.45em;
  background: none;
  perspective: 2em;
  font-family: "Raleway", sans-serif;
  font-size: 0.8em;
  font-weight: 900;
  letter-spacing: 1em;

  box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
              0px 0px 0.5em 0px var(--glow-color);
  animation: border-flicker 2s linear infinite;
}

.glowing-txt {
  float: left;
  margin-right: -0.8em;
  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
               0 0 0.45em var(--glow-color);
  animation: text-flicker 3s linear infinite;
}

.faulty-letter {
  opacity: 0.5;
  animation: faulty-flicker 2s linear infinite;
}

.glowing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.7;
  filter: blur(1em);
  transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
  background: var(--glow-color);
  pointer-events: none;
}

.glowing-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--glow-color);
  box-shadow: 0 0 2em 0.2em var(--glow-color);
  transition: opacity 100ms linear;
}

.glowing-btn:hover {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
  animation: none;
}

.glowing-btn:hover .glowing-txt {
  animation: none;
}

.glowing-btn:hover .faulty-letter {
  animation: none;
  text-shadow: none;
  opacity: 1;
}

.glowing-btn:hover:before {
  filter: blur(1.5em);
  opacity: 1;
}

.glowing-btn:hover:after {
  opacity: 1;
}

/* Keyframes */
@keyframes faulty-flicker {
  0%, 2%, 21% { opacity: 0.1; }
  4%, 19% { opacity: 0.5; }
  23%, 87% { opacity: 1; }
  80% { opacity: 0.5; }
  83% { opacity: 0.4; }
}

@keyframes text-flicker {
  0%, 8%, 12%, 25%, 72% { opacity: 0.1; }
  2%, 9%, 20%, 30%, 77%, 100% { opacity: 1; }
  70% { opacity: 0.7; }
}

@keyframes border-flicker {
  0%, 4%, 70% { opacity: 0.1; }
  2%, 8%, 100% { opacity: 1; }
}

@media only screen and (max-width: 600px) {
  .glowing-btn {
    font-size: 1em;
  }
}



/* Center and Style the Highlight Buy Section */
.highlight-buy-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 10px;
}

.highlight-text {
    font-size: 1em; /* Smaller text size */
    color: white;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background-color: transparent; /* Remove background color */
    padding: 10px 20px; /* Adjust padding as needed */
    border-radius: 15px; /* Optional: keep the border-radius if you want rounded corners */
    position: relative;
    max-width: 80%;
}

/* Remove the Glow effect */
.highlight-message {
    display: block;
}

/* Style for the Buy button */
.buy-link-btn {
    display: inline-block;
    margin-top: 10px;
    color: black;
    background-color: var(--glow-color); /* Use the defined glow color for background */
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2em;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* Hover effect for the Buy button */
.buy-link-btn:hover {
    background-color: black;
    color: var(--glow-color); /* Reverse the color on hover */
    transform: scale(1.1); /* Enlarge the button slightly on hover */
}




.footer {
            background-color: #1f1f1f;
            color: #ffffff;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .social-icons a {
            color: #ffffff;
            margin-right: 10px;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #00ff00;
        }

        .footer p {
            margin: 10px 0;
        }

        /* Style for the privacy policy and FAQ links */
        .footer-links {
            position: absolute;
            bottom: 10px;
            width: 100%;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            margin: 0 10px;
        }

        .footer-links a:hover {
            color: #00ff00;
        }
        
        .footer p a {
    color: #ffffff; /* Set font color to white */
    text-decoration: none; /* Remove underline */
}


        /* Adjust footer links position for mobile */
@media (max-width: 600px) {
    .footer-links {
        position: static; /* Change position to static */
        width: auto; /* Adjust width */
        margin-top: 10px; /* Add margin-top */
        text-align: center; /* Center align the links */
    }
}

@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);

/* Mixin for centering */
.loading {
    display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loading-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100px;
  line-height: 100px;
}

.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: 'Quattrocento Sans', sans-serif;
}

.loading-text span:nth-child(1) {
  filter: blur(0px);
  animation: blur-text 1.5s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(3) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(4) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.6s infinite linear alternate;
}

.loading-text span:nth-child(5) {
  filter: blur(0px);
  animation: blur-text 1.5s 0.8s infinite linear alternate;
}

.loading-text span:nth-child(6) {
  filter: blur(0px);
  animation: blur-text 1.5s 1s infinite linear alternate;
}

.loading-text span:nth-child(7) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}

.loading-text span:nth-child(8) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}

.loading-text span:nth-child(9) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}

.loading-text span:nth-child(10) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}

.loading-text span:nth-child(11) {
  filter: blur(0px);
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}

@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}

/* Loader Text & Circle Container */
.loading-wrapper {
    position: absolute;
    top: calc(50% + 40px); /* Adjust to place just below "CRYPTING..." */
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between loader and text */
    flex-direction: row; /* Keep circle and text aligned horizontally */
}

/* Loader Circle (Left Side) */
.loading-circle {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #00ff00; /* Green top border */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Loading Message Text */
.loading-message {
    font-size: 8px; /* Match "CRYPTING..." font size */
    font-family: 'Quattrocento Sans', sans-serif; /* Use the same font */
    color: #ffffff; /* White text like "CRYPTING..." */
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.8; /* Similar opacity effect */
    letter-spacing: 3px; /* Match spacing */
}

/* Smooth Spinning Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Space below the success message */
    font-size: 18px; /* Adjust font size */
    color: #28a745; /* Green color for success message */
    font-weight: bold; /* Make the text bold */
}

.line-container {
    display: flex;
    justify-content: center; /* Center the line container */
    align-items: center; /* Vertically center align the items */
    margin-top: 20px; /* Space above the line container */
}

.blue-line {
    position: relative;
    width: 250px; /* Adjust width as needed */
    height: 8px; /* Thickness of the line */
    background: linear-gradient(90deg, #007bff 0%, #00d2ff 100%); /* Gradient color */
    border-radius: 5px; /* Rounded corners for the line */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

#apkCount {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* Center the number horizontally and vertically */
    color: white; /* Number color */
    font-size: 20px; /* Adjust font size */
    font-weight: bold; /* Make the number bold */
    background: rgba(0, 123, 255, 0.6); /* Blue transparent background */
    padding: 5px 10px; /* Padding around the number */
    border-radius: 15px; /* Rounded corners for the background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for the number */
    animation: pulse 1.5s infinite; /* Breathing effect animation */
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1); /* Start at normal size */
        background: rgba(0, 123, 255, 0.6); /* Initial background color */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1); /* Scale up slightly */
        background: rgba(0, 123, 255, 0.8); /* Slightly more opaque background */
    }
    100% {
        transform: translate(-50%, -50%) scale(1); /* Return to normal size */
        background: rgba(0, 123, 255, 0.6); /* Original background color */
    }
}



.testimonials-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.testimonial {
    display: none; /* Hide all testimonials by default */
}

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.dot:hover {
    background-color: #00ff00;
}




.photos-container {
    display: flex;
    justify-content: center; /* Center the photos horizontally */
    gap: 20px; /* Space between the photos */
    margin: 20px auto; /* Center container and add vertical margin */
}

.photo {
    width: 100px; /* Fixed width */
    height: 100px; /* Fixed height to match width for a square aspect ratio */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Optional: shadow effect */
    transition: transform 0.3s ease; /* Optional: smooth scaling on hover */
}

.photo-wrapper {
    text-align: center; /* Center align the check mark below the photo */
}

.photo:hover {
    transform: scale(1.1); /* Optional: zoom effect on hover */
}

/* Photo description */
.photo-description {
    margin: 10px 0; /* Space between photo and description */
    font-size: 14px; /* Font size for the description */
    color: #ffffff; /* Text color */
}

.checkmark {
    display: block; /* Display check mark as a block */
    font-size: 24px; /* Adjust size as needed */
    color: green; /* Set color to green */
    margin-top: 10px; /* Space between photo and check mark */
}



/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff; /* Change to your website's color */
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.toggle-label {
    font-weight: bold;
    color: #fff;
}
.modern-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}
.modern-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.modern-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border-radius: 30px;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(255, 65, 108, 0.5);
}
.modern-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
input:checked + .modern-slider {
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    box-shadow: 0 0 10px rgba(0, 219, 222, 0.5);
}
input:checked + .modern-slider:before {
    transform: translateX(30px);
}

/* Popup Overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup Container */
.popup-container {
    background: rgba(50, 50, 50, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    width: 90%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    animation: fadeIn 0.5s ease-in-out;
}

/* Title */
.popup-title {
    font-size: 22px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 10px;
}

/* Text */
.popup-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

/* Buttons */
.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}


.decline-btn {
    background: red;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.decline-btn:hover {
    background: darkred;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* WhatsApp Help Popup */
.whatsapp-popup {
    position: fixed;
    left: 90px; /* Positioned near the WhatsApp icon */
    bottom: 35px;
    background: #ffffff;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(-10px);
    z-index: 999;
}

/* Popup animation */
.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}
