/* Overview Section */
.overview { padding: 60px 0; }
.overview-text-wrapper { max-width: 900px; margin: 0 auto; text-align: left; }

/* Eligibility Section */
  .eligibility { padding: 60px 0; background-color: var(--secondary-blue); }
.eligibility-card {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}
.eligibility-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon-circle {
    width: 100px;
    height: 100px;
    background: var(--secondary-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.icon-circle img {
    width: 50px;
    height: 50px;
    filter:invert(46%) sepia(117%) saturate(640%) hue-rotate(-18deg) brightness(90%) contrast(135%);
}
.cp-tab-nav {
    background: #F8F8F8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 10px 0;
}
.cp-tab-nav .container {
    display: flex;
    justify-content: center;
}
.cp-tab-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 10px;
    margin: 0 auto;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}
.cp-tab-nav ul::-webkit-scrollbar {
    display: none;
}
.cp-tab-nav ul li {
    white-space: nowrap;
    margin: 0;
}

.cp-tab-nav ul li a {
    text-decoration: none;
    color:#000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
}

.cp-tab-nav ul a.active,
.cp-tab-nav ul a:hover {
    font-weight: 500;
    color: var(--primary-dark);
    border-bottom: 4px solid var(--primary-dark);
}
/* Highlights */
.highlights {
    padding: 50px 0;
    background-color: var(--primary-blue);
}
.highlights h2 {
    color: white;
}
.highlight-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
    height: 180px;
}
.highlight-card img{
    height: 50px;
    width: 50px;
    margin-bottom: 10px;
    filter: invert(46%) sepia(117%) saturate(640%) hue-rotate(-18deg) brightness(90%) contrast(135%);
}
.highlight-card:hover {
    background: white;
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
/* course-content */
.course-content {
    padding: 40px 0;
    color: #FFF;
}
.course-content ul {
    list-style: none;
    padding: 0;
  }
.course-content li {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 15px;
    background: url('../images/check.png') no-repeat left;
    background-size: 20px;
    padding: 0 0 0 30px;
}
.accordian_content {
    padding: 20px 10px 10px 20px;
    border-top: 1px solid #fff;
}
.accordian_head {
    cursor: pointer;
    padding: 15px 30px 15px 20px;
    position: relative;
    font-weight: 500 !important;
    border-radius: 5px;
}
.accordian_box {
    margin: 0 0 15px;
    box-shadow: 1px 2px 3px 1px #00000029;
    background: var(--primary-blue);
    border-radius: 5px;
}
.accordian_head::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 15px;
    width: 25px;
    height: 25px;
    transition: all 0.2s ease-in-out;
    background: url('../images/arrow.png') no-repeat center center;
    background-size: 25px;
}
.course-content p {
    color: var(--text-dark);
}
.accordian_head.active::before {
    transform: rotate(90deg);
    transition: all 0.2s ease-in-out;
}

/* ==========================================
CERTIFICATE SECTION
========================================== */
.certificate-section {
    background: var(--gradient-blue);
    padding: 50px 0;
}
.certificate-frame img{
    border-radius: 10px;
    width: 500px;
    height: auto;
    margin: 0 0 20px;
}
.certificate-section p {
    font-size: 16px;
    color: var(--white);
}
/* ==========================================
FACULTY SECTION
========================================== */
.faculty {
    padding: 50px 0;
}
.faculty-card {
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
}

.faculty-image-container {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--secondary-blue);
    flex-shrink: 0;
}

.faculty-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.faculty-info h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.faculty-designation {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.faculty-bio {
    line-height: 24px;
    font-size: 16px;
}
.admission {
    padding: 20px 0 40px;
}
.admission ul {
    list-style: none;
    padding: 0;
}
.admission li {
    background: url('../images/blue-check.png') no-repeat left;
    background-size: 20px;
    padding: 0 0 0 30px;
    text-align: left;
    background-position-y: 5px;
}
footer {
    padding: 40px 0 20px;
    text-align: center;
}
footer a {
    cursor: pointer;
    color: var(--primary-dark);
}

footer a:hover {
    color: var(--primary-blue);
}
.schedule {
    padding: 40px 0 20px;
    text-align: center;
}
.schedule .card-item {
    border: 1px solid var(--primary-blue);
    padding: 20px;
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    margin: 0 auto;
}
.schedule .card-item img {
    margin-right: 20px;
    height: 60px;
}
.swiper {
  padding-bottom: 70px;
}

@media (max-width: 991px) {
    /* Overview Section */
    .overview { padding: 30px 0; }
    
    /* Eligibility Section */
    .eligibility { padding: 30px 0; }
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    .icon-circle img {
        width: 40px;
        height: 40px;
    }
    .cp-tab-nav {
        padding: 5px 10px;
        margin: 0 0 20px;
    }

    .cp-tab-nav ul li a {
        font-size: 14px;
        line-height: 18px;
    }
    .highlights {
        padding: 40px 0;
    }
    .highlight-card {
        padding: 15px 10px;
        height: 180px;
    }
    .highlight-card img{
        height: 40px;
        width: 40px;
    }
    .highlight-card:hover, .eligibility-card:hover {
        transform: none;
        box-shadow: none;
    }
    .course-content {
        padding: 40px 0;
    }
    .course-content li {
        font-size: 12px;
        line-height: 20px;
        margin: 0 0 8px;
        padding: 0 0 0 25px;
        background-size: 15px;
        background-position-y: 5px;
    }

    .accordian_content {
        padding: 15px 10px 1px 15px;
    }
    .accordian_head {
        padding: 10px 20px 10px 15px;
        font-size: 14px;
        line-height: 20px;
    }
    .accordian_box {
        margin: 0 0 10px;
    }
    .accordian_head::before {
        background-size: 20px;
        top: 10px;
    }
    .certificate-section {
        padding: 40px 0;
    }
    .certificate-frame img{
        width: 90%;
    }
    .certificate-section p {
        font-size: 14px;
    }
    .faculty-image-container {
        width: 100px;
        height: 100px;
    } 
    .faculty {
        padding: 40px 0;
    }
    .faculty-card {
        padding: 20px;
    }
    .faculty-card h3 {
        font-size: 16px;
    }
    .faculty-designation {
        font-size: 14px;
    }
    .admission {
        padding: 0 0 40px;
    }
    .admission li {
        padding: 0 0 0 25px;
        background-size: 15px;
    }
    footer {
        padding: 0 0 10px;
        text-align: center;
    }
    footer img{
        height: 80px;
    }
    .schedule {
        padding: 30px 0 0;
    }
    .schedule .card-item {
        padding: 15px 25px;
    }
    .schedule .card-item img {
        height: 50px;
        margin-right: 10px;
    }
}
