.itep {
    background: linear-gradient(135deg, #f8fffe, #eef8f7);
    position: relative;
    overflow: hidden;
}

.itep h1 {
    text-align: center;
    color: #226865;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.itep h1::after {
    content: '';
    width: 540px;
    height: 4px;
    background: #226865;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 10px;
}

.table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.table thead {
    background: linear-gradient(90deg, #226865, #2f8a84);
}

.table th {
    color: #fff;
    font-size: 17px;
    padding: 18px;
    letter-spacing: .5px;
}

.table td {
    padding: 16px;
    vertical-align: middle;
    transition: .4s;
}

.table tbody tr {
    opacity: 0;
    transform: translateY(50px);
}

.table tbody tr.show {
    opacity: 1;
    transform: translateY(0);
    transition: all .7s ease;
}

.table tbody tr:hover {
    background: #f3fbfa;
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(34, 104, 101, .15);
}

.table tbody tr:nth-child(even) {
    background: #fafdfd;
}

.table a {
    background: #226865;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.table a:hover {
    background: #3cb8bd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, .3);
}

.table td:first-child {
    font-weight: 700;
    color: #226865;
    text-align: center;
}

/* Background Floating Circles */



@keyframes float1 {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}

@keyframes float2 {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-40px);
    }
}







/* itep-program-objectives CSS */

.itep-program-objectives {
    background: #f8f9fa;
    padding: 10px 5px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.itep-program-objectives h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0A2342;
    text-align: center;
}

.itep-program-objectives .title-line {
    width: 120px;
    height: 4px;
    background: #D4AF37;
    margin: 15px auto 40px;
    border-radius: 20px;
}

.itep-program-objectives p {
    font-size: 18px;
    line-height: 34px;
    color: #444;
    text-align: justify;
    margin-bottom: 35px;
}

.itep-program-objectives .objective-box {
    background: #fff;
    border-left: 6px solid #D4AF37;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.itep-program-objectives ul {
    margin: 0;
    padding-left: 25px;
}

.itep-program-objectives li {
    font-size: 18px;
    line-height: 34px;
    color: #444;
    margin-bottom: 18px;
}

.itep-program-objectives li:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width:768px) {

    .itep-program-objectives {
        padding: 25px 20px;
    }

    .itep-program-objectives h2 {
        font-size: 28px;
    }

    .itep-program-objectives p,
    .itep-program-objectives li {
        font-size: 16px;
        line-height: 28px;
    }

    .itep-program-objectives .objective-box {
        padding: 10px;
    }

}




/* ITEP Important Updates */
.itep-important-updates {
    margin: 10px 0;
}

.itep-important-updates .card {
    border-radius: 15px;
    overflow: hidden;
}

.itep-important-updates .card-header {
    background: #226865;
    padding: 18px;
}

.itep-important-updates .card-header h3 {
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.itep-important-updates th {
    background: #f8f9fa;
    color: #09709c;
    padding: 15px;
    font-weight: 700;
}

.itep-important-updates td {
    padding: 15px;
    vertical-align: middle;
}

.itep-important-updates .btn {
    min-width: 100px;
}

/* Mobile */
@media (max-width:768px) {

    .itep-important-updates .card-header {
        padding: 14px;
    }

    .itep-important-updates .card-header h3 {
        font-size: 22px;
    }

    .itep-important-updates th,
    .itep-important-updates td {
        font-size: 14px;
        padding: 10px;
    }

    .itep-important-updates .btn {
        width: 100%;
        font-size: 14px;
        padding: 8px 12px;
    }

}





/* About Curriculum */
.itep-about-curriculum {
    background: #f8f9fa;
    padding: 60px 80px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.itep-about-curriculum h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0A2342;
    text-align: center;
}

.itep-about-curriculum .title-line {
    width: 120px;
    height: 4px;
    background: #D4AF37;
    margin: 15px auto 40px;
    border-radius: 20px;
}

.itep-about-curriculum p {
    font-size: 18px;
    line-height: 34px;
    color: #444;
    text-align: justify;
    margin-bottom: 35px;
}

.itep-about-curriculum .curriculum-box {
    background: #fff;
    border-left: 6px solid #D4AF37;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.itep-about-curriculum .curriculum-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 20px;
}

.itep-about-curriculum ul {
    margin: 0;
    padding-left: 25px;
}

.itep-about-curriculum li {
    font-size: 18px;
    line-height: 34px;
    color: #444;
    margin-bottom: 18px;
}

.itep-about-curriculum li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width:768px) {

    .itep-about-curriculum {
        padding: 25px 20px;
    }

    .itep-about-curriculum h2 {
        font-size: 28px;
    }

    .itep-about-curriculum .title-line {
        margin-bottom: 25px;
    }

    .itep-about-curriculum p,
    .itep-about-curriculum li {
        font-size: 16px;
        line-height: 28px;
    }

    .itep-about-curriculum .curriculum-box {
        padding: 20px;
    }

    .itep-about-curriculum .curriculum-box h5 {
        font-size: 18px;
    }

}



/* ===========================
   ITEP Credit Structure
=========================== */

.itep-credit-structure {
    background: #f8f9fa;
    padding: 10px 5px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.itep-credit-structure h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0A2342;
}

.itep-credit-structure .title-line {
    width: 120px;
    height: 4px;
    background: #D4AF37;
    margin: 15px auto 35px;
    border-radius: 20px;
}

.itep-credit-structure p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.itep-credit-structure table {
    background: #fff;
    min-width: 1400px;
}

.itep-credit-structure th {
    white-space: nowrap;
    vertical-align: middle;
}

.itep-credit-structure td {
    vertical-align: middle;
}

/* Mobile Responsive */

@media (max-width:768px) {

    .itep-credit-structure {
        padding: 25px 15px;
    }

    .itep-credit-structure h2 {
        font-size: 28px;
    }

    .itep-credit-structure p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .itep-credit-structure table {
        min-width: 1400px;
        /* Horizontal scroll */
    }

    .itep-credit-structure th,
    .itep-credit-structure td {
        font-size: 13px;
        padding: 8px;
    }

}



/* ==========================
   ITEP Welcome Section
========================== */

.itep-welcome-section {
    background: #f8f9fa;
    padding: 60px 80px;
    margin: 20px auto;
    border-radius: 12px;
}

.itep-welcome-section h2 {
    text-align: center;
    color: #0A2342;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.itep-welcome-section .title-line {
    width: 120px;
    height: 4px;
    background: #D4AF37;
    margin: 0 auto 40px;
    border-radius: 10px;
}

.itep-welcome-section p {
    font-size: 18px;
    line-height: 34px;
    color: #444;
    text-align: justify;
    margin-bottom: 25px;
}

.itep-welcome-section .itep-image-box {
    text-align: center;
    margin-top: 35px;
}

.itep-welcome-section .itep-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}

.itep-welcome-section .itep-image-box p {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    font-size: 17px;
}

/* Mobile */

@media (max-width:768px) {

    .itep-welcome-section {
        padding: 25px 20px;
    }

    .itep-welcome-section h2 {
        font-size: 28px;
    }

    .itep-welcome-section p {
        font-size: 16px;
        line-height: 28px;
    }

    .itep-welcome-section .itep-image-box p {
        font-size: 15px;
        line-height: 24px;
    }

}



/* =========================
   College Banner
========================= */

.college-bannerr {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    overflow: hidden;
}

.college-bannerr img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;


}

/* Tablet */

@media (max-width:992px) {

    .college-bannerr img {
        width: 100%;
        height: auto;
    }

}

/* Mobile */

@media (max-width:768px) {

    .college-bannerr {
        margin-bottom: 5px;
    }

    .college-bannerr img {
        width: 100%;
        height: auto;
        display: block;
    }

}



/* Admission Banner */

.admission-banner {
    width: 100%;
    height: 450px;
    /* Desktop height */
    margin: 10px 0;
    overflow: hidden;
}

.admission-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    /* Poori image dikhegi */
}

/* Tablet */

@media (max-width:992px) {
    .admission-banner {
        height: 350px;
    }
}

/* Mobile */

@media (max-width:768px) {
    .admission-banner {
        height: 220px;
    }
}



/* itep-credit-structure table heading css */

.creditss {
    background: #020024;
    background: radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 1%, rgba(0, 212, 255, 1) 100%);
}




