body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    position: relative;
    background-color: #ffffff; /* Adjust background color as needed */
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px; /* Adjust padding to ensure content is readable */
    /* Add your existing content styles here */
}


#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it is behind other content */
}

header {
    position: relative;
    z-index: 1;
}

.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(167, 227, 255, 0.9); /* Ensure the nav bar is visible */
    z-index: 3; /* Ensure it is above the Vanta background */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 60px; /* Add padding to move the content down */
}

.side-nav.show {
    transform: translateX(0);
}

.side-nav h2 {
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    font-size: 1.5em;
}

.side-nav ul {
    list-style: none;
    padding: 0;
}

.side-nav ul li {
    margin: 20px 0;
}

.side-nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px 20px;
    transition: background 0.3s;
}

.side-nav ul li a:hover {
    background: rgba(247, 220, 169, 0.2); /* Orange highlight */
}

.side-nav-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 4; /* Ensure the toggle button is above everything */
}

.content {
    margin-left: 0;
    padding: 20px;
    position: relative;
}

header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20px; /* Add padding at the top to create space */
}

.header-image {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image horizontally */
    display: block;
}

.header-content {
    margin-top: 20px; /* Add margin to push the content below the logo */
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

header {
    position: relative;
    z-index: 1;
}

.scroll-arrow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgb(0, 0, 0);
    animation: bounce 2s infinite;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(0, 0, 0); /* Adjust the color here */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

main {
    padding: 20px;
    overflow: hidden; /* Hide the inner scrollbar */
}

.section {
    margin: 50px 0;
    padding-left: 20px;
    text-align: center; /* Align the list to the left */
    animation: fadeInUp 2s;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, #dedeff, #93c0fc); /* Gradient background */
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(255, 248, 248, 0.2);
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h3 {
    margin: 10px 0;
    font-size: 24px;
    color: #000000; /* Add appropriate text color */
    text-align: center; /* Center-align the title */
}

.card ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left; /* Align the list to the left */
    color: #fff; /* Add appropriate text color */
}

.card ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}
.card li {
    text-align: left;
    margin-bottom: 10px; /* Add spacing between list items */
    margin-left: 20px; /* Adjust the margin as needed */
}

.card:hover {
    transform: translateY(-10px);
}

footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-icons a {
    color: rgb(140, 0, 255);
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-box {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animated-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: popIn 2s infinite; /* Apply the animation */
}

.whatsapp-icon img {
    width: 100%;
    height: auto;
}

.whatsapp-icon p {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: rgb(0, 0, 0);
    text-align: center;
}

@keyframes popIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}



.contact-form {
    background-color: #81bcca;
    padding: 60px 40px; /* Increase padding for larger form */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
    width: 100%; /* Ensure the form takes full width of the container */
    margin: auto; /* Center the form horizontally */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content horizontally */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px; /* Increase padding for input fields */
    margin-bottom: 15px; /* Increase margin for spacing */
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2e2e2e;
    color: white;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #6200ea;
    outline: none;
    box-shadow: 0 0 5px rgba(98, 0, 234, 0.5);
}

.contact-form button {
    width: 100%;
    padding: 15px; /* Increase padding for button */
    background-color: #18ac7f;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.contact-form button:hover {
    background-color: #1da851;
    transform: scale(1.05);
}

/* Add media query for mobile screens */
@media (max-width: 600px) {
    .container {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .contact-form {
        padding: 30px 15px; /* Adjust padding for the form */
        width: 100%; /* Ensure the form takes full width of the container */
        margin-top: 10px; /* Adjust top margin */
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 8px; /* Reduce padding for input fields */
        width: 100%; /* Ensure input fields take full width */
    }

    .contact-form button {
        padding: 10px; /* Adjust button padding */
        font-size: 14px; /* Reduce font size for the button */
        width: 100%; /* Ensure button takes full width */
    }
}
.contact-buttons {
    margin-top: 10px;
}
.contact-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    margin: 5px;
    color: #fff;
    background-color: #25d366; /* WhatsApp color */
    border-radius: 5px;
    text-decoration: none;
}
.contact-buttons a i {
    margin-right: 8px;
}
.contact-buttons a.call {
    background-color: #007bff; /* Call button color */
}
.scroll-text {
    overflow: hidden;
    white-space: nowrap;
    color: red;
    position: relative;
    width: 100%; /* Ensure it spans the entire width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.scroll-text p {
    display: inline-block;
    padding-left: 100%; /* Start the text outside the visible area */
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.click-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.click-button:hover {
    background-color: darkred;
}

.review-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.review-track {
    display: flex;
    width: calc(200%); /* Twice the width to allow smooth looping */
    animation: scroll 20s linear infinite;
}

.review-card {
    flex: 0 0 20%;
    box-sizing: border-box;
    padding: 10px;
    transition: transform 0.5s ease-in-out;
}

.review-card img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

.review-card.center img {
    transform: scale(1.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.robot-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
} 

.robot {
    width: 100px; /* Adjust the size as needed */
    height: auto;
}

.robot-messages {
    background: rgba(175, 208, 247, 0.8);
    color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 10px;
    margin-left: 10px;
    position: relative;
    width: 300px; /* Set a fixed width for the message container */
    height: 30px; /* Adjust the height to fit your needs */
    overflow: hidden;
}

.message-wrapper {
    display: flex;
    flex-direction: column;
    animation: scrollMessages 10s linear infinite; /* Adjust the duration for speed control */
}

.message {
    margin: 0;
    white-space: nowrap;
    height: 30px; /* Ensure messages have the same height */
    display: flex;
    align-items: center;
}

@keyframes scrollMessages {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(-60px);
    }
    75% {
        transform: translateY(-90px);
    }
    100% {
        transform: translateY(-120px);
    }
}

.popup-container {
    max-width: 90%; /* Adjust as needed */
    overflow: auto;
    position: fixed; /* or absolute depending on your layout */
    left: 50%;
    transform: translateX(-50%);
    /* Add other necessary styles */
}

.popup-ad {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.9); /* Match the page color */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: 10px;
    text-align: center;
    color: #000000; /* White text color */
}


.popup-content {
    position: relative;
}

.ad-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.close-btn {
    position: relative;
    margin-top: 10px;
    background: rgba(173, 173, 173, 0.788);
    color: #000000;
    font-weight: bold; /* Bold text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.close-btn i {
    margin-right: 10px;
}

#countdown-timer {
    display: block;
    margin-top: 10px;
    color: rgb(255, 0, 0); /* Red text color */
    font-weight: bold; /* Bold text */
}

.contact-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: space-around; /* Ensure buttons are properly spaced */
}

.contact-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    background-color: #25d366; /* WhatsApp color */
    border-radius: 5px;
    text-decoration: none;
    flex-grow: 1; /* Allow buttons to grow to fill available space */
    justify-content: center; /* Center content inside buttons */
}

.contact-buttons a i {
    margin-right: 8px;
}

.contact-buttons a.call {
    background-color: #007bff; /* Call button color */
}

.offer-list {
    text-align: left;
    margin: 10px 0;
    padding: 0;
    list-style-type: none;
}

.offer-list li {
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #000000; /* White text color */
}

.offer-list li:before {
    content: '✓'; /* Change the bullet point to a checkmark */
    color: #25d366; /* Checkmark color */
    position: absolute;
    left: 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.slide {
    display: none;
}

.ad-image {
    width: 50%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Additional styling for slideshow navigation (optional) */

.background-image {
    background-image: url('BG ANIMATED.gif'); /* Replace with the path to your image */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust the height as needed */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure the background image is behind other content */
}

#fixed-buttons-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px; /* Adjust the gap between buttons */
    margin-top: 20px; /* Adjust top margin as needed */
}

.fixed-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 25px; /* Rounded corners */
    color: white; /* Text color */
    text-decoration: none;
    font-size: 8px;
    transition: background-color 0.3s ease;
}

.fixed-button.whatsapp {
    background-color: #25D366; /* WhatsApp green */
}

.fixed-button.telegram {
    background-color: #0088cc; /* Telegram blue */
}

.fixed-button.instagram {
    background-color: #e4405f; /* Instagram pink */
}

.fixed-button i {
    margin-right: 10px;
}

.fixed-button:hover {
    opacity: 0.9;
}

.fixed-button:hover i {
    transform: scale(1.2); /* Example of icon scaling on hover */
}
