body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}


.hero-banner {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero-banner .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s;
}

.hero-banner .image:nth-child(1) {
    background-image: url('/img/eva\ \(4\).jpg');
    animation: fadeInOut 12s infinite; /* longer duration for priority image */
}

.hero-banner .image:nth-child(2) {
    background-image: url('/img/eva\ \(4\).jpg');
    animation: fadeInOut 12s 4s infinite; /* delayed start */
}

.hero-banner .image:nth-child(3) {
    background-image: url('/img/eva\ \(4\).jpg');
    animation: fadeInOut 12s 8s infinite; /* delayed start */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


.hero-banner h1 {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.buy-now-btn {
    background-color: #ffd700; /* Gold */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.quick-buy {
    padding: 20px;
    background-color: #fff;
}

.quick-buy-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.key-benefits {
    padding: 20px;
    background-color: #f7f7f7;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.social-proof {
    padding: 20px;
    background-color: #fff;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.featured-partners {
    padding: 20px;
    background-color: #f7f7f7;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Design */

@media only screen and (min-width: 768px) {
    .hero-banner {
        height: 80vh;
    }
    .quick-buy-options {
        justify-content: space-between;
    }
    .benefits-container {
        justify-content: space-between;
    }
    .testimonials-container {
        justify-content: space-between;
    }
    .partners-container {
        justify-content: space-between;
    }
}

.partner img {
    transition: transform 0.3s;
}

.partner img:hover {
    transform: scale(1.1);
}

.partner img {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (min-width: 1024px) {
    .hero-banner {
        height: 70vh;
    }
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.button-container {
    text-align: center;
    margin-top: 20px; /* Add some space between the text and button */
}

.row-fluid {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.buy-airtime-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Add this line */
    margin: 0 auto; /* Add this line to center the form */
}

.buy-airtime-form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.buy-airtime-form select, .buy-airtime-form input[type="number"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    transition: border-color 0.3s;
}

.buy-airtime-form select:focus, .buy-airtime-form input[type="number"]:focus {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.buy-airtime-btn {
    background-color: #ffd700;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.buy-airtime-btn:hover {
    background-color: #ffc700;
    transform: scale(1.05);
}

.buy-airtime-btn:active {
    transform: scale(0.95);
}

.submitted {
    animation: submitted 1s;
}

@keyframes submitted {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.quick-buy h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}



.why-choose-eva {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
}

.why-choose-eva h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    animation: fadeIn 2s;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.benefit i {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 10px;
}

.learn-more-btn {
    background-color: #ffd700;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    animation: pulse 2s infinite;
}

.learn-more-btn:hover {
    background-color: #ffc700;
}



@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.social-proof {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 2s;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 300px;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.testimonial {
    animation: slideIn 1s;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}