/* TOP MESSAGE */
.ami{
    background:#0d47a1;
    padding:15px;
    color:#fff;
    text-align:center;
}

.par{
    font-size:13px;
}

/* CONTAINER */
.container{
    width:100%;
    padding:15px;
    text-align:center;
}

.sem{
    background:#fff;
    padding:12px;
    border-radius:10px;
    font-size:20px;
    font-weight:bold;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* HEADER */
.header{
    text-align:center;
    padding:25px 15px;
    background:#ffffff;
    margin:15px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.header h1{
    font-size:20px;
    color:#0d47a1;
    margin-bottom:10px;
}

.header p{
    font-size:18px;
    color:#444;
}

/* DOWNLOAD SECTION */
.download{
    background:#fff;
    margin:15px;
    padding:25px 20px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.download h2{
    color:#0d47a1;
    margin-bottom:10px;
    font-size:24px;
}

.download p{
    margin-bottom:20px;
    color:#555;
}

/* DOWNLOAD BUTTON */
.download-btn{
    display:inline-block;
    background:#0d47a1;
    color:#fff;
    padding:14px 22px;
    border-radius:8px;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;
    transition:0.3s;
}

.download-btn:hover{
    background:#08306b;
    transform:scale(1.03);
}

/* FOLLOW SECTION */
.follow{
    background:#fff;
    margin:15px;
    padding:20px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.follow-text{
    display:block;
    margin-bottom:15px;
    font-size:22px;
    font-weight:bold;
    color:#0d47a1;
}

.social{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.social a{
    text-decoration:none;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:bold;
    font-size:15px;
}

.insta{
    background:#e1306c;
}

.fb{
    background:#1877f2;
}

.yt{
    background:red;
}

.wa{
    background:#25d366;
}

/* DSC CARDS */
.more-dsc{
    padding:20px;
}

.dsc-card{
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:12px;
    padding:18px;
    margin-bottom:15px;
    text-align:center;
    transition:0.3s;
}

.dsc-card:hover{
    transform:translateY(-3px);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.dsc-card h3{
    margin-bottom:12px;
    color:#0d47a1;
    font-size:19px;
}

.dsc-card a{
    display:inline-block;
    background:#0d47a1;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

/* SYLLABUS */
.syllabus-section{
    margin-bottom:30px;
}

.syllabus-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:20px;
}

.syllabus-links a{
    background:#eef4ff;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
    color:#0d47a1;
    font-weight:bold;
    transition:0.3s;
}

.syllabus-links a:hover{
    background:#dbe8ff;
}

/* MOBILE */
@media(max-width:768px){

    .header h1{
        font-size:15px;
    }

    .header p{
        font-size:16px;
    }

    .download h2{
        font-size:20px;
    }

    .download-btn{
        width:100%;
        padding:14px;
        font-size:16px;
    }

    .social{
        flex-direction:column;
    }

    .social a{
        width:100%;
    }

    .syllabus-links{
        grid-template-columns:1fr;
    }

    .dsc-card h3{
        font-size:17px;
    }

    .par{
        font-size:14px;
    }
}