.sec1{
    margin:0;
    background:linear-gradient(135deg,#fdf6ff,#eef7ff);
    overflow-x:hidden;
}

/* Container */

.section{
    max-width:1100px;
    margin:auto;
    padding:30px 20px;
    text-align:center;
    position:relative;
    z-index:2;
}

.small-title{
    color:#ff4d4d;
    font-weight:700;
    margin-bottom:10px;
    font-size: 32px;
}

.main-title{
    font-size:40px;
    line-height: 54px;
    font-weight:800;
    color:#222;
    margin-bottom:15px;
}

.subtitle{
    color:#666;
    font-size:18px;
    margin-bottom:40px;
}

/* Cards */

.cards{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
}

.cardp{
    flex:1;
    min-width:280px;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:transform .4s ease, box-shadow .4s ease;
    animation:fadeUp 1s ease forwards;
}

.cardp:nth-child(1){
    background:#dce8f6;
}

.cardp:nth-child(2){
    background:#dff1df;
    animation-delay:.2s;
}

.cardp:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.cardp h3{
    margin-bottom:15px;
    font-size:20px;
}

.cardp p{
    color:#333;
    line-height:1.6;
}

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Particle Canvas */

