
section {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}


.marquee {
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px 0;
    overflow: hidden; 
    white-space: nowrap;
}


.marquee p {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    
  
    animation: moveText 10s linear infinite;
}


@keyframes moveText {
    0% {
        transform: translateX(100%); 
    }
    100% {
        transform: translateX(-50%); 
    }
}


.container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.box {
    width: 100px;
    height: 100px;
    background-color: #e74c3c; 
    border-radius: 10px;        
    
   
    animation: rotateBox 3s linear infinite;
}


@keyframes rotateBox {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.product-container {
    display: flex;
    gap: 20px; 
    justify-content: center;
    padding: 20px;
}

.fade-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    
 
    opacity: 0;
    
  
    animation: fadeIn 2s ease forwards;
}

.fade-img:nth-child(1) { animation-delay: 0s; }
.fade-img:nth-child(2) { animation-delay: 0.5s; }
.fade-img:nth-child(3) { animation-delay: 1s; }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background-color: red; 
    
    
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        background-color: red;
        transform: scale(1);
        box-shadow: 0 0 0px rgba(255, 0, 0, 0);
    }
    100% {
        background-color: orange;
        transform: scale(1.1); 
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
    }
}