
    /* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Logo Container */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* Container */
.container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.container:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 20px;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
  40% { transform: translateX(-30px); }
  60% { transform: translateX(-15px); }
}

h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    margin-top: 10px;
    resize:none;
    border: none;
    font-size: 1.5rem;
    font-weight:bold;
    color: #333;
    text-align:center;
    animation: bounce 2s infinite;
}

textarea:focus {
    outline: none;
}

textarea::selection {
    color:white;
    background-color: green;
}

.button-group {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

button, .button2 {
    background-color: #ff6600;
    border: none;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    width: calc(50% - 10px);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button2 {
    background-color: #40c351;
    margin-right: 10px;

}

.button:hover, .button2:hover {
    background-color: #e65c00;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button2:hover {
    background-color: #35a144;
}

.button svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    fill: white;
}

/* Go to Activation Button */
.go-to-activation {
    background: linear-gradient(45deg, #ff6600, #e65c00);
    color: white;
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    display: inline-block;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.go-to-activation:hover {
    background: linear-gradient(45deg, #e65c00, #ff6600);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Alert Message Styles */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745; /* Green background */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it appears on top */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.alert.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.alert.hide {
    opacity: 0;
    transform: translateY(-20px);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        max-width: 100%;
    }

    textarea {
        height: 60px;
    }

    button, .button2, .go-to-activation {
        padding: 10px 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.2rem;
    }

    textarea {
        height: 50px;
    }

    button, .button2, .go-to-activation {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Background Balls */
.background-balls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensure balls do not interfere with user interaction */
    overflow: hidden; /* Hide balls that go outside the viewport */
    z-index: -1; /* Place balls behind all other content */
}

.ball {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 102, 0, 0.7); /* Semi-transparent orange color */
    opacity: 0.7;
    animation: moveBall 5s infinite linear;
}

.ball1 { width: 50px; height: 50px; animation-delay: 0s; }
.ball2 { width: 70px; height: 70px; background-color: rgba(255, 102, 0, 0.6); animation-delay: 1s; }
.ball3 { width: 40px; height: 40px; background-color: rgba(255, 102, 0, 0.8); animation-delay: 2s; }
.ball4 { width: 60px; height: 60px; background-color: rgba(255, 102, 0, 0.5); animation-delay: 3s; }
.ball5 { width: 80px; height: 80px; background-color: rgba(255, 102, 0, 0.9); animation-delay: 4s; }

@keyframes moveBall {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, 100px) scale(1.2);
    }
    50% {
        transform: translate(0, 200px) scale(1);
    }
    75% {
        transform: translate(-100px, 100px) scale(0.8);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Ensure the background-balls container is positioned behind all other content */
body {
    position: relative;
    overflow: hidden;
}

/* Technical Support Button Styles */
.tech-support {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000; /* Ensure it appears on top */
}

.tech-support-button {
    display: flex;
    align-items: center;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-support-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.tech-support-text {
    display: inline-block;
    vertical-align: middle;
}

/* YouTube Video Styles */
.youtube-video {
    margin-top: 20px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
