
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f7fb;
}

/* SECTION */
.info-section{
    width:100%;
    padding:80px 20px;
    background:#f4f7fb;
}

.info-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* BOX */
.info-box{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.info-box:hover{
    transform:translateY(-5px);
}

/* HEADER */
.box-header{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    padding:20px;
    text-align:center;
}

.box-header h2{
    color:white;
    font-size:26px;
    font-weight:700;
}

/* SCROLL AREA */
.scroll-box{
    height:420px;
    overflow:hidden;
    position:relative;
    padding:20px;
}

/* AUTO SCROLL */
.scroll-content{
    display:flex;
    flex-direction:column;
    gap:20px;
    animation:scrollUp 18s linear infinite;
}

/* PAUSE ON HOVER */
.scroll-box:hover .scroll-content{
    animation-play-state:paused;
}

/* ITEM */
.item{
    background:#f8fafc;
    padding:18px;
    border-radius:15px;
    border-left:5px solid #2563eb;
    transition:0.3s;
}

.item:hover{
    background:#eff6ff;
    transform:translateX(5px);
}

.item span{
    display:inline-block;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.item p{
    color:#444;
    font-size:16px;
    line-height:1.6;
}

/* ANIMATION */
@keyframes scrollUp{

    0%{
        transform:translateY(100%);
    }

    100%{
        transform:translateY(-100%);
    }
}

/* RESPONSIVE */
@media(max-width:992px){

    .info-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .info-container{
        grid-template-columns:1fr;
    }

    .box-header h2{
        font-size:22px;
    }

    .scroll-box{
        height:350px;
    }
}
