.custom-tab-section {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.custom-tab-item.active {
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #AF251C;
    color: #FFF;
}

.custom-tab-item {
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.custom-tab-item:last-child {
    margin-bottom: 0;
}

.custom-tab-item span {
    font-size: 20px;
    font-weight: 400;
    color: #111;
}

.custom-content-section {
    padding: 30px;
}

.custom-content-section h1 {
    color: #111636;
    font-family: Charter;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.581%;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.custom-content-section p {
    color: #111636;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 180.558%;
    margin-bottom: 22px;
}
.custom-content-section .edge p
{
    line-height: 26px;
}

.custom-tab-section {
    min-height: 100%;
}

.row {
    display: flex;
    align-items: stretch;
}


.edge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.edge svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.edge1 {
    color: #111636;
    font-family: Charter;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.581%;
    /* 44.764px */
    text-transform: capitalize;
    margin-bottom: 33px;
}


.edge2 {
    color: #111636;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 180.558%;
}



.info-box {
    width: 418px;
    height: 80px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    border: 1px solid #B7B7B7;
    padding: 5px;
    background: #FFF;
}

.gif-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.gif-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-text {
    color: #111636;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 180.558%;
    margin-left: 22px;
}


@media (max-width: 768px) {
    .info-box {
        width: 350px;
        height: 70px;
        border-radius: 35px;
        padding: 5px;
    }

    .gif-container {
        width: 60px;
        height: 60px;
    }

    .info-text {
        font-size: 24px;
        margin-left: 15px;
    }
}

@media (max-width: 550px) {
    .info-box {
        width: 280px;
        height: 60px;
        border-radius: 30px;
        padding: 5px;
    }

    .gif-container {
        width: 50px;
        height: 50px;
    }

    .info-text {
        font-size: 18px;
        margin-left: 10px;
        line-height: 1.4;
    }
}


.curriculum-section {
    position: relative;
    padding: 40px 0;
}

.curriculum-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .curriculum-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.curriculum-title {
    color: #111636;
    font-family: Charter;
    font-size: 42px;
    font-weight: 400;
    line-height: 106.581%;
    text-transform: capitalize;
    margin: 0;
}

.year-navigation {
    display: flex;
    gap: 24px;
}

.year-tab {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #8B8B8B;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    background: #FFF;
    display: inline-block;
    text-align: center;
    margin: 5px;
}

@media (max-width: 500px) {
    .year-navigation {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .year-tab {
        display: block;
        width: 100%;
        text-align: center;
    }
}


.year-tab.active {
    background: #AF251C;
    color: #FFF;
}

.curriculum-table {
    display: none;
    border: 1px solid #9D9D9D;
    padding: 20px;
    border-radius: 10px;
    background: rgba(182, 202, 233, 0.30);
}

.curriculum-table.active {
    display: table-row;
}

.curriculum-data {
    margin-bottom: 40px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
}

.curriculum-data th {
    height: 60px;
    background: #111636;
    color: white;
    text-align: left;
    padding: 10px;
    border-right: 2px solid black;
}

.curriculum-data th:last-child {
    border-right: none;
}

.curriculum-data td {
    text-align: center;
    padding: 10px;
    border: 1px solid #9D9D9D;
    background: rgba(255, 255, 255, 0.58);
}

.curriculum-data td:last-child {
    border-right: none;
}

.graduate-image {
    position: absolute;
    inset-inline-end: 40px;
    bottom: 0;
    width: 300px;
    height: auto;
}


@media screen and (max-width: 1440px) {
    .graduate-image {
        inset-inline-end: -140px;
    }
}



.eligibility-section {
    width: 100%;
    background: #111636;
    padding: 50px;
    box-sizing: border-box;
    margin-bottom: 48px;
}


.eligibility-content h1 {
    color: #FFFFFF;
    font-family: Charter;
    font-size: 42px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.eligibility-content p {
    color: #FFFFFF;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.eligibility-content h2 {
    color: #FFFFFF;
    font-family: Charter;
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 10px 0 15px;
}


.fee-structure h3 {
    color: #111636;
    font-family: Charter;

    font-style: normal;
    font-weight: 400;
    line-height: 106.581%;
    text-transform: capitalize;
    margin-bottom: 40px;

}

.fee-structure h4 {
    color: #111636;
    font-family: Charter;
    /* font-size: 72px; */
    font-style: normal;
    font-weight: 400;
    line-height: 106.581%;
    /* 76.738px */
    text-transform: capitalize;
    margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
.curriculum-section {
    position: relative;
    padding: 10px;
    width: 100%;
    overflow-x: auto;
  }
}



@media (max-width: 768px) {
    .custom-content-section h1 {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .eligibility-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .eligibility-content h2 {
        font-size: 24px;
    }

    .custom-tab-section {
        background: rgba(255, 255, 255, 0.30);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        border: 1px solid #E8E8E8;
        position: relative;
        top: 20px;
        height: fit-content;
    }
}


.employment-box {
    width: 100%;
    height: auto;
    background: #EAF0F9;
    padding: 40px 20px;
}

