@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=Raleway:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: linear-gradient(to right, #0f0517, #000000);
    background-size: 200% 100%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2; /* Ensures logo and status text are above the ticker */
    background-color: #000;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures space between items */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Hide overflow to create scrolling effect */
}
.navbar img {
    height: 70px;
    z-index: 3; /* Ensures logo is above the ticker */
    background-color: #000;
    margin-left: -10px; /* Push the logo to the edge */
}

.navbar p {
    z-index: 3; /* Ensures status text is above the ticker */
}

.navbar-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker 30s linear infinite; /* Adjust duration as needed */
    z-index: 1; /* Ensures ticker is below the logo and status text */
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.navbar-pill {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 5px 15px;
    border: 2px solid #fff;
    border-radius: 50px; /* Pill shape */
    position: relative;
}

.navbar-pill img {
    height: 30px;
    width: 30px;
    border-radius: 50%; /* Circle shape for the image */
    margin-right: 10px;
}

.status-dot .good {
    width: 10px;
    height: 10px;
    background-color: #0f0; /* Green color */
    border-radius: 50%; /* Circle shape */
    position: absolute;
    top: 5px;
    right: 5px;
    border: 2px solid #000; /* Border to add contrast */
}

.status-dot .service-change {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 217, 0); /* Green color */
    border-radius: 50%; /* Circle shape */
    position: absolute;
    top: 5px;
    right: 5px;
    border: 2px solid #000; /* Border to add contrast */
}

.status-dot .bad {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 51, 0); /* Green color */
    border-radius: 50%; /* Circle shape */
    position: absolute;
    top: 5px;
    right: 5px;
    border: 2px solid #000; /* Border to add contrast */
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
    height: calc(100vh - 60px);
}

.hero .newsletter {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    margin-right: 20px;
}

.hero .newsletter .content {
    max-width: 600px;
    margin: 10 auto;
}

.hero .newsletter .text-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD500;
    font-family: "Arapey", serif;
    font-weight: bold;
}

.hero .newsletter .text-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
}

.hero .newsletter .text-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #919191;
    font-family: "Arapey", serif;
    font-style: italic;
}

.hero .newsletter input[type="email"] {
    width: calc(100% - 24px);
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #987b06;
    font-size: 1em;
}

.hero .newsletter button {
    padding: 15px 10px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.hero .newsletter button:hover {
    background-color: #FDC500;
    color: #000000;
}

.hero .newsletter .multiselect-container {
    margin: 20px;
    height: 175px;
    overflow-y: auto;
}

.hero .newsletter .multiselect-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hero .newsletter .multiselect-item img {
    height: 24px;
    margin-right: 10px;
}

.hero .gif {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.hero .gif img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.hero, .benefits {
    margin-bottom: 50px; /* Adjust as needed */
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px; /* Same padding as .newsletter */
    border-radius: 10px;

}

.success-message {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

.success-message h2 {
    color: #FFD500;
    font-family: "Arapey", serif;
}

.submission-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.highlight {
    color: #FFD500;
    font-weight: bold;
}

.watch-list {
    list-style-type: none;
    padding: 0;
}

.watch-list li {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 10px;
    margin: 5px;
}

.next-steps {
    font-style: italic;
    color: #919191;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD500;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 213, 0, 0.3);
}

.section .section-title {
    text-align: left;
    flex: 1;
}

.section .section-title h2 {
    font-size: 2.5em;
    font-family: "Arapey", serif;
    color: #FDC500;
    margin-bottom: 10px;
}

.section .section-title p {
    font-size: 1.2em;
    color: #ffffff;
}

.section .section-content {
    flex: 2;
    padding-left: 20px;
    top: auto;
    left: auto;
    margin-top: 50px; /* Adjust as needed */
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonials .section-content {
    display: flex;
    flex-direction: column;
}

.testimonials .testimonial {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.testimonials .testimonial span {
    display: block;
    margin-top: 10px;
    color: #ff4500;
    font-size: 1em;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.5em;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #FDC500;
}

.faq-answer {
    display: none;
    font-size: 1.2em;
    margin-top: 10px;
    text-align: left;
    color: #fff;
}

.faq-answer.active {
    display: block;
}

@media (max-width: 768px) {
    .hero, .section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .hero .newsletter,
    .hero .gif,
    .section .section-title,
    .section .section-content {
        padding: 10px;
        margin: 10px 0;
    }

    .hero .newsletter,
    .section .section-title {
        margin-right: 0;
    }

    .section .section-title,
    .section .section-content {
        text-align: center;
    }

    .section-content {
        padding-left: 0;
    }
}