﻿.welcome-container {
    width : 90% ;/*Takes 90% of viewport width on small screens*/
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #101a33;
    border-radius: 20px;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
    color: #fff;

}
.icon img {
    width: 115px; /* Adjust this to make it smaller or bigger */
    height: auto; /* Maintain aspect ratio */
    animation: bounce 1.5s infinite; /* Keep your bounce effect */
    display: block;
    margin: 0 auto;
}
.h2{
    color: #F5B333;
    font-weight: bold;
}
.btn-rate{
    background : #3E8F43;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    cursor:pointer;
    transition: background 0.3s ease;
    width:100%

}
.btn-rate:hover{
    background:#2e6a33;
}
@media(max-width: 576px){
    .welcome-container{
        margin: 15px;
        padding: 15px;
    }
    h2{
        font-size:22px;
    }
    .btn-rate{
        font-size:165px;
        padding: 12px 20px;
    }
}
@keyframes bounce{
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}
.thumbnail {
    width: 80px; /* control size */
    height: 80px; /* keep square */
    object-fit: cover; /* crop nicely */
    border-radius: 12px; /* rounded corners */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* subtle shadow */
    font-size: 70px;
    animation: bounce 1.5s infinite;
}