body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #0d7ef0;
    padding: 20px;
    text-align: center;
}

.logo img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

h1 {
    color: #333;
    margin: 0;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.customer-care {
    position: relative;
}

.cloud {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 20px;
}

.speech-bubble {
    width: 200px;
    padding: 10px;
}

.speech-bubble p {
    margin: 0;
}

.agent {
    /* Add animation styles for the agent */
}

.continue-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.continue-button:hover {
    background-color: #0056b3;
}

/* Image Slider */
.main-content::after {
    content: "";
    background-image: url('images/img1.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: -1;
    animation: slide 15s infinite linear;
}


