.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;
    height: auto;
}

.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%;
    /* height: 804px; */
    background: #111636;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    box-sizing: border-box;
    margin-bottom: 48px;
}

.eligibility-content {
    max-width: 100%;
}

.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 (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;
}

/* Page changes for bugs */
.custom-tab-item.active span {
    color: #ffffff;
}
.box1 h4 {
    color: #111636 !important;
}
.box1:hover {
    background: rgb(215 231 255) !important;
    transition: 0.3s ease all;
}
.custom-tab-item.active path {
    stroke: #ffffff;
}
.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px;
    place-self: flex-end;
    bottom: -100px;
    left: -50px;
}

a.dropts {
    color: #111636;
}
.outer-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px solid #111636;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 2px solid #111636;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-circle {
    width: 80%;
    height: 80%;
    background-color: #e53935;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow {
    color: white;
    font-size: 32px;
}

.text-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.char {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 12px;
    width: 6px;
    margin-top: -6px;
    margin-left: -3px;
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: bold;
    text-transform: uppercase;
}


@media screen and (max-width: 1199px){
.curriculum-section {
    position: relative;
    padding: 10px;
    width: 100%;
    overflow-x: auto;
}
.fee-structure
{
    padding-top: 10px !important;
}
.year-tab {
  padding: 10px 10px;
  font-size: 16px;
  }


}


@media screen and (max-width: 992px){
    .logo-container {
        transform: scale(0.7);
        left: 0;
        bottom: -50px;
    }
    .custom-content-section p
    {
        font-size: 17px;
    }
    
}
@media screen and (max-width: 600px){
.custom-content-section ,.eligibility-section,.curriculum-section{
    padding: 20px;
}
.custom-tab-section {
margin-bottom: 30px;
}
.year-navigation {
    display: flex;
    gap: 0px;
}
.edge {
    text-align: left;
}
}
