@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
}





body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, rgba(0, 188, 212, 0.7), rgba(255, 64, 129, 0.7)), 
                url('jaar.jpg') no-repeat center center fixed;
    background-size: cover;
    background-blend-mode: overlay;
}

/* Glowing circular ring element */
.glowing-ring {
    position: absolute; /* Position the ring behind the content */
    left: 38%;
    width: 400px;  /* Fixed width of the glowing ring */
    height: 400px; /* Fixed height of the glowing ring */
    border-radius: 50%; /* Circular shape */
    border: 5px solid rgba(0, 188, 212, 0.8); /* Glowing border color */
    animation: glowing-ring 2s infinite alternate; /* Animation to make it pulse */
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.7), 0 0 30px rgba(255, 64, 129, 0.7); /* Initial glow effect */
    z-index: -1; /* Place behind the main content */
}

/* Glow animation for the ring */
@keyframes glowing-ring {
    0% {
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.7), 0 0 30px rgba(255, 64, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 188, 212, 1), 0 0 50px rgba(255, 64, 129, 1);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.7), 0 0 30px rgba(255, 64, 129, 0.7);
    }
}




.main {
    min-height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align to the top */
    
    
    padding-top: 50px;
}



.main .image-container {
    padding: 10px;
    text-align: center;
}

.main .image-container .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .image-container h1 {
    color: #00bcd4;
    font-size: 40px;
    margin-bottom: 10px;
}

.main .image-container p {
    color: #b0c4d8;
    margin-bottom: 40px;
}

.main .input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    background: #22a6a6;
    cursor: pointer;
    margin-top: 20px;
}

.main .input .talk {
    background: transparent;
    outline: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

.main .input .talk i {
    font-size: 20px;
    color: #ffffff;
}

.main .input .content {
    color: #000000;
    font-size: 15px;
    margin-right: 20px;
}

/* Output Section Styling */
.output {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.output .output-box {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px;
    width: 60%;
    max-width: 600px;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #333;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.main .teex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    background: #22a6a6;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px;
}

.main .input input {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}

.main .input .submit-btn {
    background: transparent;
    outline: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
}












/*gradient filler inside the circle*/

.main::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 4035;
    width: 25%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.5), rgba(255, 64, 129, 0.5)); /* Gradient fill */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s infinite alternate; /* Animation for the glowing effect */
    z-index: -2; /* Place behind the content */
}

/* Pulse animation for inner glow */
@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}