/* ==================================================
   CSE DEPARTMENT SECTION
================================================== */

.department-section{
    padding:80px 20px;
    background:linear-gradient(135deg,#f8f9fc,#eef4ff);
}

.department-section .container{
    max-width:1200px;
    margin:auto;
}

.department-header{
    text-align:center;
    margin-bottom:40px;
}

.department-header h1{
    font-size:40px;
    color:#7a0019;
    margin-bottom:15px;
    font-weight:700;
    position:relative;
}

.department-header h1::after{
    content:'';
    width:100px;
    height:4px;
    background:#f4b400;
    display:block;
    margin:15px auto 0;
    border-radius:5px;
}

.intake-badge{
    display:inline-block;
    background:#7a0019;
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
    font-weight:600;
    font-size:16px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.department-content{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.department-content p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
    text-align:justify;
}

/* Infrastructure Box */

.highlight-box{
    background:#f8f9ff;
    border-left:5px solid #7a0019;
    padding:25px;
    margin:35px 0;
    border-radius:12px;
}

.highlight-box h3{
    color:#7a0019;
    margin-bottom:15px;
    font-size:24px;
}

.highlight-box ul{
    list-style:none;
    padding:0;
}

.highlight-box ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#444;
}

.highlight-box ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#28a745;
    font-weight:bold;
}

/* Activities */

.activities-box{
    margin-top:50px;
}

.activities-box h2{
    text-align:center;
    color:#7a0019;
    margin-bottom:30px;
    font-size:32px;
}

.activity-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.activity-card:hover{
    transform:translateY(-5px);
}

.activity-card span{
    min-width:60px;
    height:60px;
    background:#7a0019;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.activity-card p{
    margin:0;
    font-size:17px;
    font-weight:500;
    color:#333;
}

/* Mobile Responsive */

@media(max-width:768px){

    .department-header h1{
        font-size:28px;
    }

    .department-content{
        padding:25px;
    }

    .activities-box h2{
        font-size:24px;
    }

    .activity-card{
        flex-direction:column;
        text-align:center;
    }
}