body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #1a1a1a; /* Professional dark background */
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu li {
    position: relative;
}

.menu li a {
    color: #ffffff;
    text-decoration: none; /* Removed underline */
    font-size: 18px;
    padding: 10px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
}

.menu li a:hover {
    color: #ff9800; /* Orange */
    background-color: rgba(255, 152, 0, 0.1);
    border-color: #ff9800;
    transform: scale(1.2);
}

/* Hide the menu toggle button on desktop and tablet */
.menu-toggle {
    display: none;
}

/* Hide the close menu button on desktop */
.close-menu {
    display: none;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    /* Show the menu toggle button only on mobile */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 30px;
        color: #ecf0f1;
        cursor: pointer;
        z-index: 1001;
    }

    /* Show the close menu button only on mobile */
    .close-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 30px;
        color: #ffffff;
        cursor: pointer;
    }

    /* Initial state of the menu: hidden off-screen */
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        text-align: left;
        padding: 60px 20px;
        gap: 15px;
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
    }

    .menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .menu li {
        margin: 10px 0;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow: hidden; /* Ensure icons stay within the section */
}

.hero-icons i {
    position: absolute;
    font-size: 40px;
    color: #ffffff;
    animation: fall 10s linear infinite;
    opacity: 0.7;
}

.hero-icons i:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
}

.hero-icons i:nth-child(2) {
    left: 25%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.hero-icons i:nth-child(3) {
    left: 40%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.hero-icons i:nth-child(4) {
    left: 55%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.hero-icons i:nth-child(5) {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 3s;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-text {
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
    text-align: center;
    z-index: 1; /* Make sure text is above icons */
}

.hero-catchy-heading {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: slideInLeft 2s ease-in-out;
    color: #ff9800; /* Bold, eye-catching color */
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    animation: slideInLeft 1.8s ease-in-out;
}

.hero button {
    padding: 15px 40px;
    background-color: #ff9800; /* Orange */
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 30px;
    text-transform: uppercase;
    animation: slideInLeft 2s ease-in-out;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none; /* Remove underline */
}

.hero button:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
}

/* Rotating Color Effect */
@keyframes colorRotate {
    0% {
        color: #ff9800;
    }
    25% {
        color: #e67e22;
    }
    50% {
        color: #3498db;
    }
    75% {
        color: #e74c3c;
    }
    100% {
        color: #ff9800;
    }
}

.color-effect-text {
    animation: colorRotate 5s linear infinite;
}

/* Call to Action Section */
.cta {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cta-button {
    padding: 15px 40px;
    background-color: #3498db; /* Blue color */
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none; /* Remove underline */
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

.services {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services i {
    font-size: 40px;
    margin: 15px;
    color: #3498db;
}

.services i:hover {
    color: #2980b9;
}

.services p {
    font-size: 14px;
    margin-top: 10px;
}

/* Styling for the Fancy Button */
.fancy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background-color: #e67e22;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Remove underline */
}

.fancy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.fancy-button:hover::before {
    left: 100%;
}

.fancy-button:hover {
    background-color: #d35400;
    transform: translateY(-5px);
}

.fancy-button:active {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.faq {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.faq-item.active {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.faq-question {
    background: none;
    border: none;
    outline: none;
    font-size: 24px;
    color: #333;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #3498db;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    font-size: 20px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.about-us {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.about-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-us p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

footer a {
    color: #ff9800;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #ecf0f1;
}

.footer-text-effect {
    font-size: 18px;
    animation: fadeEffect 3s infinite;
}

@keyframes fadeEffect {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Crypto Icons in Footer */
.crypto-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.crypto-icons i {
    font-size: 28px;
    color: #fff;
}

.crypto-icons i:hover {
    color: #ff9800;
}

/* Cool Effect for the Telegram Icon */
.telegram-float {
    position: fixed;
    bottom: 60px; /* Moved up */
    left: -100px; /* Start off-screen */
    background-color: #0088cc;
    color: #fff;
    padding: 20px; /* Larger padding for desktop */
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, left 1s ease;
    animation: jump 1.5s infinite, pop 1.5s infinite alternate, slideIn 1s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
}

.telegram-float:hover {
    transform: scale(1.2);
    background-color: #005f8a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.telegram-float i {
    font-size: 28px; /* Larger icon size for desktop */
}

/* Animation for Telegram Icon */
@keyframes pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    0% {
        left: -100px;
    }
    100% {
        left: 20px;
    }
}

/* Adjustments for mobile view */
@media (max-width: 768px) {
    .telegram-float {
        bottom: 30px;
        left: 15px; /* Adjust for mobile */
        padding: 12px; /* Smaller padding for mobile */
        animation: jump 1.5s infinite, pop 1.5s infinite alternate, slideInMobile 1s ease forwards;
    }

    .telegram-float i {
        font-size: 24px; /* Smaller icon size for mobile */
    }
}

@keyframes slideInMobile {
    0% {
        left: -100px;
    }
    100% {
        left: 15px;
    }
}
