/*---------------------------------------------------- Hero Section CSS Start---------------------------------------------- */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 150vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
    background: #000;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
}

/* Content */
.hero-content {
    width: 100%;
    max-width: 850px;
    color: #fff;
}

/* Heading */
.hero-title {
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

/* Subtitle */
.hero-subtitle {
    margin-top: 18px;
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 500;
    opacity: 0.95;
}

/* Date Box */
.hero-date-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 18px 40px;
    background: rgba(32, 14, 14, 0.92);
    color: #fff;
    font-size: clamp(15px, 1.6vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Optional Glow Effect */
.hero-content::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 130px;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: rgba(255, 190, 90, 0.18);
    filter: blur(90px);
    z-index: -1;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 70px;
    }

    .hero-date-box {
        padding: 16px 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 16px 30px;
        align-items: flex-start;
    }

    .hero-title br {
        display: none;
    }

    .hero-title {
        line-height: 1.1;
    }

    .hero-subtitle {
        margin-top: 14px;
    }

    .hero-date-box {
        width: 100%;
        margin-top: 22px;
        padding: 14px 18px;
        line-height: 1.4;
    }

    .hero-content::after {
        width: 180px;
        height: 180px;
        top: 90px;
    }
}

/*---------------------------------------------------- Hero Section CSS End---------------------------------------------- */

/*---------------------------------------------------- Circle CSS Start---------------------------------------------- */

.workspace {
    justify-content: center;
    margin-top: 80px;
}

.workspace-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.workspace-box {
    width: 100%;
    padding: 60px 50px;
    background: rgb(255 246 246);
    border-radius: 30px;
}

.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    gap: 13px;
    aspect-ratio: 1;
    transition: all 0.4s ease;
}

.circle::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    top: -5%;
    left: -5%;
    border-top: 2px solid #e5e5e5;
    border-left: 0px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: none;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.circle .icon {
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.circle_num {
    font-size: 26px;
}

.circle:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.circle:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.circle:hover::before {
    border-top: 2px solid #1b2f6e;
    transform: scale(1.05);
    opacity: 0;
}

.circle:hover::before {
    opacity: 0;
}



/*---------------------------------------------------- Circle CSS End---------------------------------------------- */


/*---------------------------------------------------- MPC Title Start---------------------------------------------- */

.mpc-title .section-heading {
    font-weight: 800;
    color: var(--txt-secondary);
    letter-spacing: -1px;
    margin-top: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

/*---------------------------------------------------- MPC Title End---------------------------------------------- */


/*---------------------------------------------------- Jamshedji CSS Start---------------------------------------------- */

.quote-section {
    position: relative;
    overflow: hidden;
    background: #f7f4ef;
    padding: 80px 60px;
}

.quote-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.quote-content {
    width: 55%;
    position: relative;
}

.quote-content i {
    position: absolute;
    top: -40%;
    left: 0px;
    font-size: 70px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.1);
    font-weight: 700;
    pointer-events: none;
}

.quote-text {
    font-size: 24px;
    font-weight: 400;
    color: var(--txt-primary);
    position: relative;
    z-index: 2;
    margin: 0;
}

.quote-author-wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-line {
    width: 120px;
    height: 2px;
    background: #b28a52;
}

.quote-author {
    font-size: 20px;
    letter-spacing: 4px;
    color: #b28a52;
    font-weight: 600;
    margin: 0;
}

.quote-image {
    width: 30%;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
}

.quote-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: right;
    display: block;
    filter: grayscale(10%);
    transition: transform 0.6s ease;
}


.quote-image:hover img {
    transform: scale(1.05);
}


/*---------------------------------------------------- Jamshedji CSS End---------------------------------------------- */

/*---------------------------------------------------- MPC CSS Start---------------------------------------------- */

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-title .section-heading {
    font-weight: 800;
    color: var(--txt-secondary);
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-left {
    flex: 1;
}

.about-left img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.shape-box {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 80px;
}

#about-sec {
    padding: 60px 0;
}

.about-right {
    flex: 1.6;
}

.about-right .about-title {
    margin: 12px 0 18px;
}

.about-right .about-title span {
    display: block;
}

.about-text {
    color: var(--txt-primary);
    margin-bottom: 14px;
}

.about-badge{
    font-size: 20px;
    font-weight: 500;
}

.about-right .for_pro_str li {
    color: var(--txt-primary);
}

/*---------------------------------------------------- MPC CSS End---------------------------------------------- */

/*---------------------------------------------------- Programme Start---------------------------------------------- */

.pgm-hero {
    padding: 120px 20px 140px;
    background: #f4f6f9;
    position: relative;
    overflow: hidden;
}

.pgm-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(135deg, var(--tertiary));
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    z-index: 1;
}

.pgm-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    top: 40px;
    right: 60px;
    animation: floatBlob 8s ease-in-out infinite alternate;
}

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

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

.pgm-hero__container {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.pgm-hero__content {
    max-width: 650px;
    color: #1a1a1a;
}

.pgm-hero__title {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--txt-secondary);
}

.pgm-hero__content p {
    margin-bottom: 16px;
}

.pgm-hero__image-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pgm-hero__image {
    width: 650px;
    height: 380px;
    background: url("../images/iima-campus.jpg") center/cover no-repeat;
    border-radius: 12px;

    transform: rotate(-4deg);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.15);

    transition: 0.5s ease;
}

.pgm-hero__image:hover {
    transform: rotate(0deg) scale(1.03);
}

.pgm-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
}

/*---------------------------------------------------- Programme End---------------------------------------------- */


/*---------------------------------------------------- Programme Schedule Start---------------------------------------------- */

.schedule-section {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.schedule-sub {
    color: var(--txt-primary);
    margin-top: 10px;
}

.schedule-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.schedule-line {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.schedule-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.schedule-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.schedule-icon:hover {
    transform: translateY(-5px);
}

.schedule-item p {
    color: var(--txt-primary);
    line-height: 1.5;
}

.schedule-icon i {
    font-size: 24px;
    color: #fff;
}

.schedule-note i {
    margin-right: 8px;
}

.schedule-note {
    margin-top: 50px;
    display: inline-block;
    padding: 10px 20px;
    background: #fff3cd;
    color: var(--txt-primary);
    border-radius: 6px;
}

/*---------------------------------------------------- Programme Schedule End---------------------------------------------- */



/*---------------------------------------------------- Programme Experience CSS Start---------------------------------------------- */

.pgm-stack-pro {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.pgm-stack-pro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    min-height: 300vh;
}

.pgm-stack-pro__left {
    position: sticky;
    top: 140px;
}

.pgm-stack-pro__title {
    margin: 12px 0 18px;
}

.pgm-stack-pro__title span {
    display: block;
}


.pgm-stack-pro__desc {
    color: var(--txt-primary);
    max-width: 420px;
}

.pgm-stack-pro__right {
    position: sticky;
    top: 140px;
    height: 500px;
}

.pgm-stack-pro__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.pgm-stack-pro__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(180deg, #4f46e5, #06b6d4);
}

.pgm-stack-pro__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.pgm-stack-pro__card:nth-child(1) {
    z-index: 3;
    transform: translateY(0px) scale(1);
}

.pgm-stack-pro__card:nth-child(2) {
    z-index: 2;
    transform: translateY(40px) scale(0.96);
}

.pgm-stack-pro__card:nth-child(3) {
    z-index: 1;
    transform: translateY(80px) scale(0.92);
}

.pgm-stack-pro__icon {
    width: 55px;
    height: 55px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

.pgm-stack-pro__icon i {
    color: var(--primary);
    font-size: 28px;
}

.pgm-stack-pro__card span {
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.pgm-stack-pro__card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pgm-stack-pro__card p {
    color: var(--txt-primary);
}

/*---------------------------------------------------- Programme Experience CSS End---------------------------------------------- */

/*---------------------------------------------------- Features CSS start---------------------------------------------- */

.ppx-features {
    padding: 60px 0px;
    background: #f6f8fc;
}

.ppx-features__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.ppx-features__content {
    position: sticky;
    top: 100px;
}

.ppx-features__heading {
    margin-bottom: 20px;
}

.ppx-features__desc {
    color: var(--txt-secondary);
    margin-bottom: 30px;
    max-width: 320px;
}

.ppx-features__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    max-width: max-content;
}

.ppx-features__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ppx-card {
    position: relative;
    padding: 26px 22px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f1f4fb);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.35s ease;
}

.ppx-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary);
    opacity: 0.06;
    border-radius: 50%;
    top: -40px;
    right: -40px;
    transition: 0.4s;
}

.ppx-card:hover::before {
    transform: scale(1.4);
}

.ppx-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.ppx-card--large {
    grid-column: span 2;
}

.ppx-card--wide {
    grid-column: span 2;
}

.ppx-card__icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.ppx-card:hover .ppx-card__icon {
    transform: rotate(-8deg) scale(1.1);
}

.ppx-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111;
    position: relative;
    z-index: 2;
}

.ppx-card p {
    font-size: 16px;
    color: var(--txt-primary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/*---------------------------------------------------- Features CSS End---------------------------------------------- */

/*---------------------------------------------------- Program Focus start---------------------------------------------- */

.program-focus {
    padding: 60px 0;
    background: #fff;
}

.focus-dark-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 50px;
    color: #fff;
    background: linear-gradient(135deg, #1b2f6e, #061c1c);

}

.focus-header p {
    color: #fff;
    margin-bottom: 40px;
}

.focus-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.focus-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.focus-item {
    padding: 14px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    gap: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.focus-item span {
    opacity: 0.4;
}

.focus-item.active,
.focus-item:hover {
    background: var(--tertiary);
    transform: translateX(8px);
    box-shadow: 0 10px 25px #5257138b;
}

.focus-content {
    display: none;
    gap: 30px;
    align-items: center;
}

.focus-content.active {
    display: flex;
}

.focus-image {
    width: 320px;
    height: 395px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.focus-info {
    width: calc(100% - 350px);
}

.focus-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.focus-info li {
    margin-bottom: 8px;
    color: #ddd;
}

.img1 {
    background: url('../images/inner-eng.jpg') center/cover;
}

.img2 {
    background: url('../images/leadership.jpg') center/cover;
}

.img3 {
    background: url('../images/strategic.jpg') center/cover;
}

.img4 {
    background: url('../images/market.jpg') center/cover;
}

.img5 {
    background: url('../images/financial.jpg') center/cover;
}

.img6 {
    background: url('../images/digital.jpg') center/cover;
}

.img7 {
    background: url('../images/visitors-sessions.jpg') center/cover;
}


@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

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

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

.focus-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: absolute;
}

.focus-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/*---------------------------------------------------- Program Focus End---------------------------------------------- */

/*---------------------------------------------------- Faculty Team Start---------------------------------------------- */

.faculty_team {
    padding: 60px 0;
    background: #f9fbff;
    position: relative;
    overflow: hidden;
}

.faculty_team::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0.08;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.faculty_team__header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.faculty_team__header h2 {
    margin-bottom: 20px;
}

.faculty_team__header p {
    color: var(--txt-primary);
    line-height: 1.6;
}

.faculty_team-wrapper .faculty_team__item{
    margin-bottom: 20px;
}

.faculty_team__card {
    display: flex;
    align-items: start;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.faculty_team__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.faculty_team__image {
    width: 200px;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1;
}

.faculty_team__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
}

.faculty_team__content {
    flex: 1;
}

.faculty_team__content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.faculty_team__content span {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: var(--txt-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.faculty_team__content p {
    color: var(--txt-primary);
    margin-bottom: 20px;
    overflow-wrap: anywhere;
}

.faculty_team__btn {
    display: inline-block;
    color: var(--primary);
    transition: 0.3s;
}

.faculty_team__btn:hover {
    color: var(--tertiary);
}

/*---------------------------------------------------- Faculty Team End---------------------------------------------- */

/* ---------------------------------------------- CEREMONY start ---------------------------------------------- */
.ceremony {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.ceremony-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ceremony-img img {
    width: 100%;
    border-radius: 12px;
}

.ceremony-text {
    align-content: center;
}

.ceremony-text .ceremony-title {
    margin-bottom: 30px;
}

.ceremony-text p {
    max-width: 70%;
}

/* ---------------------------------------------- CEREMONY end ---------------------------------------------- */


/* ---------------------------------------------- Video start ---------------------------------------------- */

.pgmVideo-wrap{
   width: 100%;
   margin-top: 80px;
}

.pgmVideo-wrap iframe{
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

@media (max-width: 767px){
 .pgmVideo-wrap{
  margin-top: 40px;
}

}

/* ---------------------------------------------- Video end ---------------------------------------------- */



/*---------------------------------------------------- Testimonial Start---------------------------------------------- */

.pgm-exp {
    padding: 80px 0 0;
    background: #f7f7f7;
}

.pgm-exp__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.pgm-exp__title {
    margin: 15px 0;
}

.pgm-exp__title span {
    display: block;
}

.pgm-exp__desc {
    color: var(--txt-primary);
    margin-bottom: 25px;
}

.pgm-exp__right {
    overflow: hidden;
}

.pgm-exp__card {
    padding: 25px;
    border-radius: 18px;
    margin: 0 20px;
    min-height: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pgm-exp__card.pink {
    background: #f5c2cc;
}

.pgm-exp__card.purple {
    background: #d4c4f7;
}

.pgm-exp__card.grey {
    background: #e0e0e0;
}

.pgm-exp__card.orange {
    background: #f3b562;
}

.pgm-exp__card.blue {
    background: #c9d7f8;
}

.pgm-exp__card h4 {
    margin: 0;
}

.pgm-exp__card span {
    font-size: 13px;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.pgm-exp__card p {
    font-size: 14px;
    line-height: 1.6;
}

/*---------------------------------------------------- Testimonial End---------------------------------------------- */

/* Program Apply start */
/* =========================
   PROGRAMME SECTION
========================= */

.programme-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

.programme-layout {
    background: var(--primary);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(4, 27, 109, 0.18);
}

.programme-info {
    position: relative;
}

.programme-image-wrap {
    padding: 26px 26px 0;
    position: relative;
}

.programme-image-wrap::after {
    content: '';
    position: absolute;
    top: 42px;
    right: 0;
    width: 18px;
    height: calc(100% - 42px);
    background: var(--tertiary);
    border-radius: 0 0 0 14px;
}

.programme-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 26px 26px 0 0;
    display: block;
}

.programme-content {
    padding: 26px 26px 0px;
    position: relative;
}

.programme-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--primary);
    border-radius: 100% 100% 0 0;
}

.programme-heading-wrap,
.admission-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.programme-icon,
.admission-icon {
    min-width: 38px;
    height: 38px;
    border-radius: 16px;
    background: var(--tertiary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.programme-title,
.admission-title {
    color: #fff;
}

.programme-list,
.admission-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.programme-list-item,
.admission-step {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    position: relative;
    padding-left: 26px;
    line-height: 1.5;
}

.programme-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tertiary);
}

.admission-step::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tertiary);
    font-size: 20px;
    font-weight: 700;
}

.admission-process {
    padding: 60px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admission-process::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 140px;
    height: 140px;
    background: radial-gradient(var(--tertiary) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.35;
}

.admission__cta {
    margin-top: 30px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    max-width: max-content;
    background: #fff;
    color: var(--primary);
}

.admission__cta i{
    background: var(--primary);
    color: #fff;
}

.admission__cta:hover i{
    color: var(--primary);
    background: #fff;
}

/*---------------------------------------------------- Video Popup ---------------------------------------------------- */

.video-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.85);

    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease,
                visibility .3s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup__content {
    position: relative;

    width: 100%;
    max-width: 900px;

    transform: translateY(20px);
    transition: transform .3s ease;
}

.video-popup.active .video-popup__content {
    transform: translateY(0);
}

.video-popup__iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-popup__iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-popup__close {
    position: absolute;
    top: -48px;
    right: 0;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #000;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .2s ease;
}

.video-popup__close:hover {
    transform: scale(1.08);
}

@media (max-width: 767px) {

    .video-popup {
        padding: 15px;
    }

    .video-popup__close {
        width: 36px;
        height: 36px;
        top: -42px;
        font-size: 24px;
    }
}




/* =========================
   RESPONSIVE
========================= */

/* Program Intro Start */

#program-intro {
    margin-top: 50px;
    margin-bottom: 50px;
}

#program-intro .program-intro-wrap {
    text-align: center;
    font-size: 18px;
    max-width: 1000px;
    margin: auto;
}

/* Program Intro End */