body p,
li,
h1,
h2,
h3,
span,
div {
    color: #111 !important;
}

.caspian-about {
    --orange: #e25b3c;
    --orange-light: #ffb39f;
    --orange-dark: #a92f18;

    --dark: #111923;
    --dark-2: #1a2530;

    --text: #68727e;
    --white: #ffffff;

    position: relative;
    overflow: hidden;

    padding: 30px 0;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #fffaf8 48%,
            #fff2ed 100%);
}


/* 
   PREMIUM GRID
 */

.caspian-grid {
    position: absolute;
    inset: 0;

    opacity: .45;

    background-image:
        linear-gradient(rgba(226, 91, 60, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(226, 91, 60, .035) 1px,
            transparent 1px);

    background-size: 65px 65px;

    mask-image: linear-gradient(90deg,
            transparent,
            #000 18%,
            #000 82%,
            transparent);

    -webkit-mask-image: linear-gradient(90deg,
            transparent,
            #000 18%,
            #000 82%,
            transparent);
}


/* 
   AMBIENT LIGHT
 */

.caspian-light {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(80px);
}

.caspian-light-one {
    width: 350px;
    height: 350px;

    top: -180px;
    right: 5%;

    background: rgba(255, 179, 159, .18);

    animation: caspianLightMove 9s ease-in-out infinite;
}

.caspian-light-two {
    width: 280px;
    height: 280px;

    bottom: -150px;
    left: 15%;

    background: rgba(226, 91, 60, .08);

    animation: caspianLightMove2 11s ease-in-out infinite;
}


/* 
   CONTENT
 */

.caspian-content {
    position: relative;
    z-index: 3;

    padding-right: 35px;
}


/* 
   KICKER
 */

.caspian-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--orange-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}

.kicker-line {
    width: 32px;
    height: 2px;

    background: linear-gradient(90deg,
            var(--orange-dark),
            var(--orange));
}

.kicker-pulse {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 5px rgba(226, 91, 60, .09);

    animation: kickerPulse 2s infinite;
}


/* 
   HEADING
 */

.caspian-title {
    margin: 0;

    color: var(--dark);

    font-size: 50px;
    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2px;
}

.caspian-title span {

    background: linear-gradient(100deg,
            var(--orange-dark),
            var(--orange) 45%,
            var(--orange-light));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    position: relative;
}


/* 
   UNIQUE ACCENT
   NO COMMON UNDERLINE
 */

.caspian-accent {
    display: flex;
    align-items: center;
    gap: 6px;

    margin: 23px 0 27px;
}

.caspian-accent span:first-child {
    width: 42px;
}

.caspian-accent span {
    height: 3px;

    border-radius: 10px;

    background: var(--orange);
}

.caspian-accent span:last-child {
    width: 8px;
    background: var(--orange-light);
}

.caspian-accent i {
    width: 18px;
    height: 3px;

    display: block;

    border-radius: 10px;

    background: var(--orange-dark);
}


/* 
   TEXT
 */

.caspian-text {
    max-width: 630px;

    margin-bottom: 10px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
}


/* 
   HIGHLIGHTS
 */

.caspian-highlights {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    max-width: 630px;

    margin-top: 28px;
}

.caspian-highlight {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 16px;

    overflow: hidden;

    background: rgba(255, 255, 255, .65);

    border: 1px solid rgba(226, 91, 60, .09);

    border-radius: 12px;

    transition:
        .35s ease;

    backdrop-filter: blur(8px);
}

.caspian-highlight::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: linear-gradient(180deg,
            var(--orange-light),
            var(--orange-dark));

    transform: scaleY(0);

    transform-origin: bottom;

    transition: .35s ease;
}

.caspian-highlight:hover {
    transform: translateX(6px);

    background: #fff;

    border-color: rgba(226, 91, 60, .18);

    box-shadow:
        0 12px 35px rgba(226, 91, 60, .09);
}

.caspian-highlight:hover::before {
    transform: scaleY(1);
}

.highlight-number {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.highlight-info strong {
    display: block;

    color: var(--dark);

    font-size: 13px;
}

.highlight-info span {
    display: block;

    margin-top: 2px;

    color: #939ba5;

    font-size: 10px;
}


/* 
   BUTTON
 */

.caspian-button-wrap {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 32px;
}

.caspian-button {
    display: inline-flex;
    align-items: center;

    padding: 5px 6px 5px 22px;

    color: #fff !important;

    text-decoration: none;

    border-radius: 50px;

    background:
        linear-gradient(110deg,
            var(--orange-dark),
            var(--orange),
            #f07859);

    box-shadow:
        0 12px 30px rgba(226, 91, 60, .25);

    transition:
        .35s ease;
}

.caspian-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(226, 91, 60, .35);
}

.button-text {
    font-size: 14px;
    font-weight: 700;
}

.button-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 14px;

    color: var(--orange-dark);

    background: #fff;

    border-radius: 50%;

    transition: .35s ease;
}

.caspian-button:hover .button-icon {
    transform: rotate(45deg);
}

.button-note {
    color: #9a9fa6;

    font-size: 10px;

    letter-spacing: .5px;
}


/* 
   VISUAL AREA
 */

.caspian-visual {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* 
   IMAGE FRAME
 */

.caspian-image-frame {
    position: relative;

    width: 78%;

    z-index: 2;

    padding: 8px;

    transform: rotate(2deg);

    border-radius: 28px;

    background: #fff;

    box-shadow:
        0 35px 80px rgba(28, 35, 42, .14);

    transition:
        transform .6s cubic-bezier(.2, .8, .2, 1),
        box-shadow .6s ease;
}

.caspian-image-frame:hover {
    transform: rotate(0deg) translateY(-8px);

    box-shadow:
        0 45px 90px rgba(226, 91, 60, .18);
}


/* Gradient frame */

.image-gradient-border {
    position: absolute;

    inset: -2px;

    z-index: -1;

    border-radius: 31px;

    background:
        linear-gradient(135deg,
            var(--orange-light),
            transparent 35%,
            transparent 60%,
            var(--orange-dark));
}


/* Image */

.caspian-image {
    position: relative;

    overflow: hidden;

    border-radius: 22px;
}

.caspian-image img {
    display: block;

    width: 100%;

    transition:
        transform .8s cubic-bezier(.2, .8, .2, 1);
}

.caspian-image-frame:hover img {
    transform: scale(1.05);
}

.image-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(16, 25, 35, .22));

    pointer-events: none;
}


/* 
   INFO CARD
 */

.caspian-info-card {
    position: absolute;

    right: 0;
    bottom: 80px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 15px;


    background: rgba(255, 255, 255, .92);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 15px;

    box-shadow:
        0 20px 45px rgba(24, 30, 35, .14);

    backdrop-filter: blur(14px);

    animation:
        infoCardFloat 5s ease-in-out infinite;
}

.info-card-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 11px;

    background:
        linear-gradient(135deg,
            var(--orange),
            var(--orange-dark));
}

.info-card-content span {
    display: block;

    color: #a1a7ad;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.info-card-content strong {
    display: block;

    margin-top: 3px;

    color: var(--dark);

    font-size: 12px;
}

.info-card-arrow {
    margin-left: auto;

    color: var(--orange);

    font-size: 16px;
}


/* 
   VERTICAL LABEL
 */

.vertical-label {
    position: absolute;

    left: 0;
    top: 50%;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 8px;

    transform:
        translateY(-50%) rotate(-90deg);

    color: #a6abb0;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.vertical-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--orange);
}


/* 
   CU NUMBER
 */

.caspian-number {
    position: absolute;

    top: 35px;
    right: 8%;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--orange-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.caspian-number strong {
    color: rgba(226, 91, 60, .18);

    font-size: 48px;

    line-height: 1;

    letter-spacing: -3px;
}


/* 
   CORNER MARKS
 */

.corner {
    position: absolute;

    width: 25px;
    height: 25px;

    z-index: 5;

    border-color: rgba(226, 91, 60, .45);

    border-style: solid;
}

.corner-tl {
    top: 60px;
    left: 6%;

    border-width: 2px 0 0 2px;
}

.corner-tr {
    top: 60px;
    right: 3%;

    border-width: 2px 2px 0 0;
}

.corner-bl {
    bottom: 50px;
    left: 6%;

    border-width: 0 0 2px 2px;
}

.corner-br {
    bottom: 50px;
    right: 3%;

    border-width: 0 2px 2px 0;
}


/* 
   ANIMATIONS
 */

@keyframes caspianLightMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-35px, 35px);
    }
}

@keyframes caspianLightMove2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, -25px);
    }
}

@keyframes kickerPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 5px rgba(226, 91, 60, .08);
    }

    50% {
        transform: scale(1.3);
        box-shadow:
            0 0 0 8px rgba(226, 91, 60, .03);
    }
}

@keyframes infoCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* 
   RESPONSIVE
 */

@media (max-width: 1199px) {

    .caspian-title {
        font-size: 43px;
    }

    .caspian-content {
        padding-right: 10px;
    }

    .caspian-image-frame {
        width: 82%;
    }
}


@media (max-width: 991px) {

    .caspian-about {
        padding: 80px 0;
    }

    .caspian-content {
        padding-right: 0;
    }

    .caspian-visual {
        min-height: 530px;

        margin-top: 45px;
    }

    .caspian-image-frame {
        width: 75%;
    }

    .vertical-label {
        left: 5%;
    }
}


@media (max-width: 767px) {

    .caspian-about {
        padding: 65px 0;
    }

    .caspian-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .caspian-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .caspian-highlights {
        grid-template-columns: 1fr;
    }


    .caspian-visual {
        min-height: 430px;
    }

    .caspian-image-frame {
        width: 82%;
    }

    .caspian-info-card {
        right: 0;
        bottom: 50px;

        min-width: 220px;

        transform: scale(.9);
        transform-origin: right bottom;
    }

    .vertical-label {
        display: none;
    }

    .corner-tl {
        left: 0;
    }

    .corner-bl {
        left: 0;
    }

    .caspian-number {
        right: 0;
    }
}


@media (max-width: 480px) {

    .caspian-title {
        font-size: 29px;
    }

    .caspian-kicker {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .caspian-accent {
        margin: 18px 0 22px;
    }

    .caspian-visual {
        min-height: 350px;
    }

    .caspian-image-frame {
        width: 88%;
    }

    .caspian-info-card {
        min-width: 200px;

        padding: 10px;

        transform: scale(.8);
    }

    .caspian-number strong {
        font-size: 38px;
    }
}

/* 
   CASPIAN UNIVERSITY HIGHLIGHTS
   TSM INSPIRED IMAGE CARD EFFECT
 */

.cu-highlight-new {
    --orange: #e25b3c;
    --orange-light: #ffb39f;
    --orange-dark: #a92f18;
    --black: #111418;
    --muted: #92979c;

    position: relative;
    padding: 30px 0;
    overflow: hidden;
    background: #f7f7f5;
}


/* 
   HEADING
 */

.cu-heading {
    position: relative;
    margin-bottom: 45px;
    text-align: left;
    z-index: 2;
}

.cu-overline {
    display: block;
    margin-bottom: 10px;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 3px;
}

.cu-heading h2 {
    margin: 0;
    color: var(--black);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.cu-heading h2 em {
    color: var(--orange);
    font-style: normal;
}


/* 
   HEADING MARK
 */

.cu-heading-mark {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.cu-heading-mark b {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--black);
}

.cu-heading-mark b:last-child {
    width: 8px;
    background: var(--orange);
}

.cu-heading-mark span {
    display: block;
    width: 45px;
    height: 3px;
    background: var(--orange-light);
}


/* 
   INFORMATION PANEL
 */

.cu-info-panel {
    position: relative;
    padding: 22px 25px;
    background: #fff;
    border-radius: 6px;

    box-shadow:
        0 18px 50px rgba(20, 24, 28, .07);

    z-index: 2;
}

.cu-info-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 70px;
    height: 4px;

    background: var(--orange);
}


/* 
   INFO HEADER
 */

.cu-info-top {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 14px;
    padding-bottom: 12px;

    border-bottom: 1px solid #ededed;
}

.cu-info-top>span {
    color: var(--orange);
    line-height: 1;
    font-weight: 900;
}

.cu-info-top small {
    display: block;
    color: #999;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-info-top strong {
    display: block;
    margin-top: 3px;
    color: var(--black);
    font-weight: 800;
}


/* 
   FACT GRID
 */

.cu-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 30px;
    row-gap: 0;
}


/* 
   FACT
 */

.cu-fact {
    position: relative;

    min-height: 48px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 5px 0;

    border-bottom: 1px solid #eeeeee;

    transition:
        padding-left .3s ease;
}

.cu-fact::before {
    content: "";

    position: absolute;

    left: -9px;
    top: 50%;

    width: 3px;
    height: 0;

    background: var(--orange);

    transform: translateY(-50%);

    transition:
        height .3s ease;
}

.cu-fact:hover {
    padding-left: 7px;
}

.cu-fact:hover::before {
    height: 20px;
}

.cu-fact label {
    margin-bottom: 3px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.3;
}

.cu-fact>strong {
    color: var(--black);
    line-height: 1.35;
    font-weight: 700;
}

.cu-fact strong small {
    display: block;
    margin-top: 2px;
    color: #999;
    font-weight: 500;
}

.orange-text {
    color: var(--orange-dark) !important;
}

.cu-fact-wide {
    grid-column: span 2;
}


/* 
   IMAGE CARD
 */

.cu-image-story {

    position: relative;

    width: 100%;

    margin: 0;

    padding: 0;

    overflow: hidden;

    border-radius: 0;

    z-index: 2;

    cursor: pointer;
}


/* 
   IMAGE WRAPPER
 */

.cu-main-image {

    position: relative;

    width: 100%;

    height: auto;

    margin: 0;

    padding: 0;

    overflow: hidden;

    background: #111;

    border-radius: 0;

    box-shadow: none;

    transition: none;
}


/* 
   ACTUAL IMAGE
 */

.cu-main-image img {

    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit: cover;

    transform: scale(1.001);

    transform-origin: center center;

    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter .8s ease;
}


/* 
   TSM STYLE DARK OVERLAY
 */

.cu-main-image::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    opacity: 0;

    background:
        linear-gradient(180deg,
            rgba(17, 20, 24, 0) 25%,
            rgba(17, 20, 24, .12) 45%,
            rgba(17, 20, 24, .72) 100%);

    transition:
        opacity .6s cubic-bezier(.2, .7, .2, 1);
}


/* 
   HOVER — IMAGE MOVEMENT
 */

.cu-image-story:hover .cu-main-image img {

    transform: scale(1.10);

    filter:
        brightness(.88) saturate(1.05);
}


/* 
   HOVER — OVERLAY
 */

.cu-image-story:hover .cu-main-image::after {

    opacity: 1;
}


/* 
   TSM STYLE IMAGE REVEAL LINE
 */

.cu-main-image::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 4px;

    z-index: 4;

    background:
        linear-gradient(90deg,
            var(--orange-dark),
            var(--orange),
            var(--orange-light));

    transition:
        width .7s cubic-bezier(.2, .7, .2, 1);
}

.cu-image-story:hover .cu-main-image::before {

    width: 100%;
}


/* 
   CLEAN IMAGE
   REMOVE ALL OLD DECORATIVE ELEMENTS
 */

.cu-big-number,
.cu-editorial-box,
.cu-orange-cut,
.cu-location,
.cu-main-image-overlay {

    display: none !important;
}


/* 
   REMOVE OLD ANIMATIONS
 */

.cu-image-story,
.cu-main-image {

    animation: none !important;

    transform: none !important;
}


/* 
   IMPORTANT:
   OLD CSS OVERRIDES KO CANCEL KARNA
 */

.cu-image-story:hover .cu-main-image {

    transform: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;
}


/* 
   TABLET
 */

@media (max-width: 991px) {

    .cu-highlight-new {
        padding: 75px 0;
    }

    .cu-image-story {
        margin-top: 40px;
    }

    .cu-main-image {
        width: 100%;
    }
}


/* 
   MOBILE
 */

@media (max-width: 767px) {

    .cu-highlight-new {
        padding: 60px 0;
    }

    .cu-info-panel {
        padding: 20px 18px;
    }

    .cu-facts {
        column-gap: 20px;
    }

    .cu-fact {
        min-height: 52px;
    }

    .cu-image-story {
        margin-top: 30px;
    }

    /*
       Mobile par zoom thoda controlled
       rakha gaya hai.
    */

    .cu-image-story:hover .cu-main-image img {

        transform: scale(1.06);

        filter:
            brightness(.90) saturate(1.03);
    }
}


/* 
   SMALL MOBILE
 */

@media (max-width: 480px) {

    .cu-facts {
        grid-template-columns: 1fr;
    }

    .cu-fact-wide {
        grid-column: span 1;
    }

    .cu-image-story:hover .cu-main-image img {

        transform: scale(1.045);
    }
}

/* 
   WHY CHOOSE TSMU
   EXPLORE STYLE IMAGE CARD
 */

.why-choose-section {

    --orange: #e25b3c;
    --orange-dark: #b93c22;
    --orange-light: #ffb09d;

    --black: #111418;
    --text: #444a50;
    --muted: #858b91;

    position: relative;

    padding: 20px 0;

    overflow: hidden;

    background: #f8f8f6;
}


/* 
   HEADING
 */

.why-heading {

    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.why-heading>span {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--orange);

    font-weight: 800;

    letter-spacing: 3px;
}

.why-heading h2 {

    margin: 0 0 15px;

    color: var(--black);

    font-weight: 800;

    line-height: 1.15;
}

.why-heading h2 em {

    display: inline;

    color: var(--orange);

    font-style: normal;
}

.why-heading p {

    max-width: 680px;

    margin: 0 auto;

    color: var(--muted);

    line-height: 1.7;
}


/* 
   IMAGE CARD
 */

.why-explore-card {

    position: relative;

    width: 100%;

    height: 630px;

    overflow: hidden;

    background: #111;

    cursor: pointer;
}


/* 
   IMAGE
 */

.why-explore-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1);

    transition:
        transform 1s cubic-bezier(.2, .65, .2, 1),
        filter .8s ease;
}


/* 
   DARK IMAGE OVERLAY
 */

.why-image-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 35px;

    background:
        linear-gradient(180deg,
            rgba(17, 20, 24, 0) 30%,
            rgba(17, 20, 24, .08) 48%,
            rgba(17, 20, 24, .88) 100%);

    transition:
        background .7s ease;
}


/* 
   IMAGE CONTENT
 */

.why-image-content {

    position: relative;

    width: 100%;

    transform: translateY(18px);

    opacity: .85;

    transition:
        transform .6s cubic-bezier(.2, .7, .2, 1),
        opacity .5s ease;
}

.why-image-content>span {

    display: inline-block;

    margin-bottom: 8px;

    color: var(--orange-light);

    font-weight: 800;

    letter-spacing: 3px;
}

.why-image-content h3 {

    max-width: 350px;

    margin: 0;

    color: #fff;

    line-height: 1.1;

    font-weight: 800;
}


/* 
   ARROW
 */

.why-arrow {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .5);

    border-radius: 50%;

    transform: translateX(-10px);

    opacity: 0;

    transition:
        transform .5s ease,
        opacity .5s ease,
        background .4s ease;
}


/* 
   IMAGE HOVER
 */

.why-explore-card:hover img {

    transform: scale(1.10);

    filter:
        brightness(.82) saturate(1.08);
}

.why-explore-card:hover .why-image-overlay {

    background:
        linear-gradient(180deg,
            rgba(17, 20, 24, .02) 15%,
            rgba(17, 20, 24, .20) 42%,
            rgba(17, 20, 24, .94) 100%);
}

.why-explore-card:hover .why-image-content {

    transform: translateY(0);

    opacity: 1;
}

.why-explore-card:hover .why-arrow {

    transform: translateX(0);

    opacity: 1;
}

.why-arrow:hover {

    color: #fff;

    background: var(--orange);

    border-color: var(--orange);
}


/* 
   ORANGE REVEAL LINE
 */

.why-explore-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 5px;

    z-index: 10;

    background:
        linear-gradient(90deg,
            var(--orange-dark),
            var(--orange),
            var(--orange-light));

    transition:
        width .8s cubic-bezier(.2, .7, .2, 1);
}

.why-explore-card:hover::after {

    width: 100%;
}


/* 
   CONTENT AREA
 */

.why-content {

    padding-left: 45px;
}


/* 
   FEATURE ITEM
 */

.why-feature {

    position: relative;

    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #e4e4e1;

    transition:
        padding-left .35s ease;
}

.why-feature:first-child {

    padding-top: 0;
}


/* 
   NUMBER
 */

.why-number {

    color: var(--orange);

    font-weight: 800;

    line-height: 1.2;

    transition:
        color .3s ease;
}


/* 
   FEATURE TITLE
 */

.why-feature h4 {

    margin: 0 0 7px;

    color: var(--black);

    font-weight: 750;

    line-height: 1.3;

    transition:
        color .3s ease;
}


/* 
   FEATURE DESCRIPTION
 */

.why-feature p {

    margin: 0;

    color: var(--muted);

    line-height: 1.55;
}


/* 
   FEATURE HOVER
 */

.why-feature::before {

    content: "";

    position: absolute;

    left: -15px;

    top: 50%;

    width: 3px;

    height: 0;

    background: var(--orange);

    transform: translateY(-50%);

    transition:
        height .35s ease;
}

.why-feature:hover {

    padding-left: 10px;
}

.why-feature:hover::before {

    height: 55%;
}

.why-feature:hover .why-number {

    color: var(--orange-dark);
}

.why-feature:hover h4 {

    color: var(--orange);
}


/* 
   TABLET
 */

@media (max-width: 991px) {

    .why-choose-section {

        padding: 20px 0;
    }

    .why-heading {

        margin-bottom: 45px;
    }

    .why-explore-card {

        height: 500px;
    }

    .why-content {

        padding-left: 0;

        margin-top: 45px;
    }
}


/* 
   MOBILE
 */

@media (max-width: 767px) {

    .why-choose-section {

        padding: 20px 0;
    }

    .why-heading {

        margin-bottom: 35px;
    }

    .why-explore-card {

        height: 420px;
    }

    .why-image-overlay {

        padding: 25px;
    }

    .why-content {

        margin-top: 35px;
    }

    .why-feature {

        grid-template-columns: 40px 1fr;

        gap: 12px;

        padding: 18px 0;
    }
}


/* 
   SMALL MOBILE
 */

@media (max-width: 480px) {

    .why-explore-card {

        height: 370px;
    }

    .why-image-overlay {

        padding: 20px;
    }

    .why-arrow {

        width: 42px;

        height: 42px;
    }

    .why-feature {

        grid-template-columns: 35px 1fr;

        gap: 10px;
    }
}

/* 
   CASPIAN UNIVERSITY STORY SECTION
 */

.cu-story-section {
    position: relative;
    padding: 20px 0;
    background: #f5f5f3;
    overflow: hidden;
}

.cu-story-section::before {
    content: "CASPIAN";
    position: absolute;
    top: 30px;
    right: -25px;
    font-size: 160px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(0, 0, 0, 0.025);
    pointer-events: none;
}


/* 
   HEADER
 */

.cu-story-header {
    position: relative;
    margin-bottom: 65px;
}

.cu-story-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #f47b20;
}

.cu-story-label span {
    width: 38px;
    height: 2px;
    background: #f47b20;
}

.cu-story-header h2 {
    margin: 0;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #151515;
}

.cu-story-header h2 em {
    display: block;
    font-style: normal;
    color: #f47b20;
}

.cu-story-intro {
    padding-left: 30px;
    border-left: 2px solid #f47b20;
}

.cu-story-intro span {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}

.cu-story-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #111;
}


/* 
   MAIN LEFT STORY
 */

.cu-main-story {
    position: relative;
    height: 100%;
    padding: 55px 55px 50px;
    background: #ffffff;
    border-top: 5px solid #f47b20;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.cu-story-index {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    color: rgba(244, 123, 32, 0.1);
}

.cu-story-content {
    position: relative;
    z-index: 1;
}

.cu-story-content>p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.95;
    color: #111;
}

.cu-story-content>p:last-of-type {
    margin-bottom: 35px;
}


/* IMPORTANT POINT */

.cu-important-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #fff6f0;
    border-left: 4px solid #f47b20;
}

.cu-point-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f47b20;
    color: #fff;
}

.cu-important-point p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}


/* 
   MEDICAL CARD
 */

.cu-medical-card {
    position: relative;
    height: 100%;
    padding: 50px;
    background: #151515;
    overflow: hidden;
}

.cu-medical-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -130px;
    right: -130px;
    border-radius: 50%;
    border: 50px solid rgba(244, 123, 32, 0.12);
}

.cu-medical-card-top {
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cu-card-number {
    display: block;
    margin-bottom: 35px;
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
    color: #f47b20;
}

.cu-card-label {
    display: block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.cu-medical-card h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.cu-medical-card h3 em {
    display: block;
    font-style: normal;
    color: #f47b20;
}


/* 
   MEDICAL CONTENT
 */

.cu-medical-content {
    position: relative;
}

.cu-medical-content p {
    position: relative;
    margin: 0 0 25px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
}

.cu-medical-content p::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #f47b20;
}

.cu-medical-content p:last-child {
    margin-bottom: 0;
}


/* 
   STUDENT FOCUS SECTION
 */

.cu-student-focus {
    display: grid;
    grid-template-columns: 100px 1fr 1.5fr;
    align-items: center;
    gap: 40px;
    margin-top: 35px;
    padding: 45px 55px;
    background: #fff5ee;
    border-left: 2px solid #f47b20;
}

.cu-focus-number {
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.45);
}

.cu-focus-title {
    padding-right: 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.cu-focus-title span {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
}

.cu-focus-title h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    color: #fff;
}

.cu-focus-title h3 em {
    font-style: normal;
    color: #151515;
}

.cu-focus-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
}


/* 
   HOVER
 */

.cu-main-story,
.cu-medical-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cu-main-story:hover,
.cu-medical-card:hover {
    transform: translateY(-7px);
}

.cu-main-story:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-story-section {
        padding: 20px 0;
    }

    .cu-story-header {
        margin-bottom: 45px;
    }

    .cu-story-header h2 {
        font-size: 45px;
    }

    .cu-story-intro {
        margin-top: 30px;
    }

    .cu-main-story {
        margin-bottom: 25px;
    }

    .cu-student-focus {
        grid-template-columns: 70px 1fr;
    }

    .cu-focus-text {
        grid-column: 2;
    }

}


@media (max-width: 767px) {

    .cu-story-section {
        padding: 20px 0;
    }

    .cu-story-section::before {
        display: none;
    }

    .cu-story-header h2 {
        font-size: 34px;
    }

    .cu-story-intro {
        padding-left: 20px;
    }

    .cu-main-story {
        padding: 35px 25px;
    }

    .cu-story-index {
        top: 20px;
        right: 20px;
        font-size: 60px;
    }

    .cu-story-content>p {
        font-size: 14px;
        line-height: 1.85;
    }

    .cu-important-point {
        padding: 20px;
    }

    .cu-medical-card {
        padding: 35px 25px;
    }

    .cu-medical-card h3 {
        font-size: 26px;
    }

    .cu-student-focus {
        display: block;
        padding: 35px 25px;
    }

    .cu-focus-number {
        margin-bottom: 20px;
    }

    .cu-focus-title {
        padding: 0 0 25px;
        margin-bottom: 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }

    .cu-focus-title h3 {
        font-size: 23px;
    }

    .cu-focus-text p {
        font-size: 14px;
    }

}

/* 
   CASPIAN CHOICE + ELIGIBILITY SECTION
 */

.cu-choice-section {
    position: relative;
    padding: 20px 0;
    background: #f6f5f2;
    overflow: hidden;
}


/* 
   HEADING
 */

.cu-choice-heading {
    margin-bottom: 55px;
}

.cu-choice-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.cu-choice-tag::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #f47b20;
}

.cu-choice-heading h2,
.cu-eligibility-heading h2 {
    margin: 0;
    color: #151515;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
}

.cu-choice-heading h2 em,
.cu-eligibility-heading h2 em {
    font-style: normal;
    color: #f47b20;
}


/* 
   INTRO
 */

.cu-choice-intro {
    display: grid;
    grid-template-columns: 5px 1fr;
    gap: 35px;
    margin-bottom: 45px;
    padding: 45px;
    background: #fff;
    border-top: 4px solid #f47b20;
}

.cu-choice-intro-text p {
    margin: 0 0 18px;
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.9;
}

.cu-choice-intro-text p:last-child {
    margin-bottom: 0;
    color: #151515;
    font-weight: 600;
}


/* 
   REASONS GRID
 */

.cu-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cu-reason-card {
    position: relative;
    padding: 28px;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: 0.35s ease;
}

.cu-reason-card span {
    display: block;
    margin-bottom: 28px;
    color: #f47b20;
    font-size: 13px;
    font-weight: 800;
}

.cu-reason-card p {
    margin: 0;
    color: #444;
    line-height: 1.7;
}

.cu-reason-card:hover {
    transform: translateY(-8px);
    background: #717073;
    border-color: #717073;
}

.cu-reason-card:hover p {
    color: #fff;
}


/* 
   SIMULATION HIGHLIGHT
 */

.cu-simulation-highlight {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 35px;
    align-items: center;
    margin-top: 55px;
    padding: 55px;
    background: #151515;
}


.cu-simulation-content span {
    display: block;
    margin-bottom: 15px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-simulation-content p {
    max-width: 850px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.9;
}


/* 
   ELIGIBILITY WRAPPER
 */

.cu-eligibility-wrap {
    padding-top: 100px;
    border-top: 1px solid #ddd;
}

.cu-eligibility-heading {
    margin-bottom: 55px;
}

.cu-eligibility-heading>span {
    display: block;
    margin-bottom: 15px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* 
   ELIGIBILITY INTRO
 */

.cu-eligibility-intro {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    margin-bottom: 45px;
    padding: 45px;
    background: #fff;
}

.cu-eligibility-index {
    color: #f47b20;
    font-size: 58px;
    font-weight: 800;
}

.cu-eligibility-intro p {
    margin: 0 0 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.85;
}

.cu-eligibility-intro ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.cu-eligibility-intro li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: #151515;
    font-size: 16px;
    font-weight: 600;
}

.cu-eligibility-intro li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #f47b20;
}


/* 
   CORE ELIGIBILITY
 */

.cu-core-eligibility {
    padding: 55px;
    background: #fff;
    border-top: 5px solid #f47b20;
}

.cu-core-title {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.cu-core-title>span {
    color: #f47b20;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.cu-core-title small {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-core-title h3 {
    margin: 0;
    color: #151515;
    font-size: 28px;
    line-height: 1.3;
}


/* 
   CRITERIA GRID
 */

.cu-criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
}

.cu-criteria-item {
    padding: 10px;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.cu-criteria-item span {
    display: block;
    margin-bottom: 5px;
    color: #f47b20;
    font-size: 12px;
    font-weight: 800;
}

.cu-criteria-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}


/* 
   FINAL NOTE
 */

.cu-eligibility-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 35px;
    padding: 30px;
    background: #fff5ee;
    border-left: 4px solid #f47b20;
}

.cu-note-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: #f47b20;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.cu-eligibility-note p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}


/* 
   RESPONSIVE
 */

@media (max-width: 1199px) {

    .cu-reasons-grid,
    .cu-criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 991px) {

    .cu-choice-section {
        padding: 20px 0;
    }

    .cu-choice-heading h2,
    .cu-eligibility-heading h2 {
        font-size: 42px;
    }

    .cu-eligibility-wrap {
        padding-top: 70px;
    }

}


@media (max-width: 767px) {

    .cu-choice-section {
        padding: 20px 0;
    }

    .cu-choice-heading h2,
    .cu-eligibility-heading h2 {
        font-size: 31px;
    }

    .cu-choice-intro,
    .cu-eligibility-intro,
    .cu-simulation-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 22px;
    }

    .cu-choice-intro-number,
    .cu-eligibility-index,
    .cu-simulation-number {
        font-size: 45px;
    }

    .cu-choice-intro-text p,
    .cu-eligibility-intro p {
        font-size: 14px;
    }

    .cu-reasons-grid,
    .cu-criteria-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cu-simulation-content p {
        font-size: 15px;
    }

    .cu-core-eligibility {
        padding: 35px 22px;
    }

    .cu-core-title h3 {
        font-size: 23px;
    }

    .cu-eligibility-note {
        padding: 22px;
    }

}

/* 
   NEET + NMC REGULATION SECTION
 */

.cu-regulation-section {
    padding: 30px 0;
    background: #f6f5f2;
}


/* 
   SECTION HEADING
 */

.cu-regulation-heading {
    margin-bottom: 35px;
}

.cu-regulation-heading>span {
    display: block;
    margin-bottom: 10px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-regulation-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-regulation-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* 
   ROW LAYOUT
 */

.cu-regulation-row {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 25px;
}

.cu-regulation-row-reverse {
    grid-template-columns: 1fr 38%;
}

.cu-regulation-row-reverse .cu-regulation-image-card {
    order: 2;
}

.cu-regulation-row-reverse .cu-regulation-block {
    order: 1;
}


/* 
   IMAGE CARD
 */

.cu-regulation-image-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #717073;
    cursor: pointer;
}

.cu-regulation-image-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}


/* IMAGE OVERLAY */

.cu-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(to top,
            rgba(113, 112, 115, 0.9),
            rgba(113, 112, 115, 0.05));
    transition: 0.4s ease;
}

.cu-image-overlay span {
    margin-bottom: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ARROW */

.cu-image-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f47b20;
    color: #fff;
    font-size: 18px;
    transform: translateX(-70px);
    opacity: 0;
    transition: 0.4s ease;
}


/* IMAGE HOVER */

.cu-regulation-image-card:hover img {
    transform: scale(1.12);
}

.cu-regulation-image-card:hover .cu-image-overlay {
    background: linear-gradient(to top,
            rgba(113, 112, 115, 0.95),
            rgba(113, 112, 115, 0.2));
}

.cu-regulation-image-card:hover .cu-image-arrow {
    transform: translateX(0);
    opacity: 1;
}


/* 
   MAIN BLOCK
 */

.cu-regulation-block {
    padding: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: 0.35s ease;
}

.cu-regulation-block:hover {
    border-color: #d0d0d0;
}


/* 
   BLOCK TITLE
 */

.cu-regulation-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.cu-regulation-line {
    width: 35px;
    height: 3px;
    flex-shrink: 0;
    background: #f47b20;
}

.cu-regulation-title h3 {
    margin: 0;
    color: #717073;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}


/* 
   CONTENT
 */

.cu-regulation-content p {
    margin: 0 0 15px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.8;
}

.cu-regulation-content p:last-child {
    margin-bottom: 0;
}


/* 
   DARK NMC BLOCK
 */

.cu-regulation-dark {
    background: #fff;
    border-color: #fff;
}

.cu-regulation-dark .cu-regulation-title h3 {
    color: #f47b20;
}

.cu-regulation-dark .cu-regulation-content p {
    color: #5c5c5c;
}


/* 
   NMC POINTS
 */

.cu-nmc-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.cu-nmc-point {
    position: relative;
    padding: 13px 13px 13px 27px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(81, 80, 80, 0.16);
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.5;
    transition: 0.3s ease;
}

.cu-nmc-point::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 13px;
    width: 6px;
    height: 6px;
    background: #f47b20;
    border-radius: 50%;
}

.cu-nmc-point:hover {
    transform: translateY(-3px);
    background: rgba(244, 123, 32, 0.18);
    border-color: #f47b20;
}


/* 
   IMPORTANT NOTE
 */

.cu-regulation-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    padding: 18px;
    background: #fff5ee;
    border-left: 3px solid #f47b20;
}

.cu-regulation-note span {
    flex-shrink: 0;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cu-regulation-note p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-regulation-row,
    .cu-regulation-row-reverse {
        grid-template-columns: 1fr;
    }

    .cu-regulation-row-reverse .cu-regulation-image-card,
    .cu-regulation-row-reverse .cu-regulation-block {
        order: initial;
    }

    .cu-regulation-image-card {
        height: 300px;
    }

    .cu-regulation-heading h2 {
        font-size: 38px;
    }

}


@media (max-width: 767px) {

    .cu-regulation-section {
        padding: 20px 0;
    }

    .cu-regulation-heading h2 {
        font-size: 30px;
    }

    .cu-regulation-block {
        padding: 22px;
    }

    .cu-regulation-image-card {
        height: 240px;
    }

    .cu-image-overlay {
        padding: 20px;
    }

    .cu-regulation-title h3 {
        font-size: 20px;
    }

    .cu-regulation-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .cu-nmc-points {
        grid-template-columns: 1fr;
    }

    .cu-regulation-note {
        flex-direction: column;
        gap: 7px;
        padding: 16px;
    }

}

/* 
   CASPIAN UNIVERSITY DOCUMENTS SECTION
 */

.cu-documents-section {
    padding: 70px 0;
    background: transparent;
}


/* 
   HEADING
 */

.cu-documents-heading {
    margin-bottom: 30px;
}

.cu-documents-heading>span {
    display: block;
    margin-bottom: 10px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-documents-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-documents-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* 
   INTRO
 */

.cu-documents-intro {
    max-width: 900px;
    margin-bottom: 30px;
}

.cu-documents-intro p {
    margin: 0 0 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.cu-documents-intro p:last-child {
    margin-bottom: 0;
    color: #717073;
    font-weight: 600;
}


/* 
   DOCUMENTS GRID
 */

.cu-documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
}

.cu-document-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 22px;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    transition: all 0.3s ease;
}

.cu-document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #f47b20;
}

.cu-doc-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #f47b20;
    color: #f47b20;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cu-document-card:hover .cu-doc-check {
    background: #f47b20;
    color: #fff;
}

.cu-document-card p {
    margin: 2px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}


/* 
   CHECKLIST SECTION
 */

.cu-checklist-section {
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid #dedede;
}

.cu-checklist-heading {
    margin-bottom: 25px;
}

.cu-checklist-heading>span {
    display: block;
    margin-bottom: 8px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-checklist-heading h3 {
    margin: 0 0 10px;
    color: #717073;
    font-size: 30px;
    font-weight: 700;
}

.cu-checklist-heading p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* 
   CHECKLIST GRID
 */

.cu-checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 35px;
}

.cu-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.cu-checklist-item:hover {
    padding-left: 8px;
    border-color: #f47b20;
}

.cu-checklist-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid #f47b20;
    color: #f47b20;
    font-size: 12px;
    font-weight: 700;
}

.cu-checklist-item p {
    margin: 2px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-documents-heading h2 {
        font-size: 38px;
    }

}


@media (max-width: 767px) {

    .cu-documents-section {
        padding: 55px 0;
    }

    .cu-documents-heading h2 {
        font-size: 30px;
    }

    .cu-documents-grid {
        grid-template-columns: 1fr;
    }

    .cu-document-card {
        min-height: auto;
        padding: 10px 18px;
    }

    .cu-checklist-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .cu-checklist-heading h3 {
        font-size: 25px;
    }

    .cu-checklist-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* 
   CASPIAN UNIVERSITY MBBS FEES
 */

.cu-fees-section {
    background: transparent;
}


/* 
   HEADING
 */

.cu-fees-heading {
    max-width: 850px;
    margin-bottom: 28px;
}

.cu-fees-heading>span {
    display: block;
    margin-bottom: 9px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-fees-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-fees-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* 
   INTRO
 */

.cu-fees-intro {
    margin-bottom: 30px;
}

.cu-fees-intro p {
    margin: 0 0 12px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.8;
}

.cu-fees-intro p:last-child {
    margin-bottom: 0;
    color: #717073;
    font-weight: 600;
}


/* 
   FEE TABLE
 */

.cu-fee-table-wrap {
    width: 70%;
    margin: auto;
    overflow-x: auto;
    margin-bottom: 35px;
}

.cu-fee-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e2e2;
}

.cu-fee-table th {
    padding: 17px 20px;
    background: #717073;
    color: #fff;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cu-fee-table td {
    padding: 16px 20px;
    border: 1px solid #e5e5e5;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.25s ease;
}

.cu-fee-table td:first-child {
    width: 28%;
    color: #717073;
    font-weight: 700;
}

.cu-fee-table tbody tr {
    transition: all 0.25s ease;
}

.cu-fee-table tbody tr:hover {
    background: #fafafa;
}

.cu-fee-table tbody tr:hover td:first-child {
    color: #f47b20;
}


/* 
   TOTAL COST
 */

.cu-total-cost {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 30px;
    padding: 30px;
    border-top: 3px solid #f47b20;
    border-bottom: 1px solid #e2e2e2;
}

.cu-total-cost-title span {
    display: block;
    margin-bottom: 8px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-total-cost-title h3 {
    margin: 0;
    color: #717073;
    font-size: 25px;
    line-height: 1.35;
}

.cu-total-cost-content p {
    margin: 0 0 13px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.8;
}

.cu-total-cost-content p:last-child {
    margin-bottom: 0;
    color: #717073;
    font-weight: 600;
}


/* 
   FINAL NOTE
 */

.cu-fees-note {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 22px;
    padding: 17px 20px;
    border-left: 3px solid #f47b20;
}

.cu-fees-note span {
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cu-fees-note p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-fees-heading h2 {
        font-size: 38px;
    }

    .cu-total-cost {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


@media (max-width: 767px) {

    .cu-fees-section {
        padding: 50px 0;
    }

    .cu-fees-heading h2 {
        font-size: 30px;
    }

    .cu-fees-intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .cu-fee-table {
        min-width: 600px;
    }

    .cu-fee-table th,
    .cu-fee-table td {
        padding: 13px 15px;
    }

    .cu-total-cost {
        padding: 22px;
    }

    .cu-total-cost-title h3 {
        font-size: 21px;
    }

    .cu-total-cost-content p {
        font-size: 14px;
    }

    .cu-fees-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 15px;
    }

}

/* 
   CASPIAN COST + RANKING SECTION
 */

.cu-cost-ranking-section {
    padding: 65px 0;
    background: transparent;
}


/* 
   HEADING
 */

.cu-cost-ranking-heading {

    margin-bottom: 25px;
}

.cu-cost-ranking-heading>span {
    display: block;
    margin-bottom: 8px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cu-cost-ranking-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-cost-ranking-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* 
   INTRO
 */

.cu-cost-intro {
    max-width: 950px;
    margin-bottom: 28px;
}

.cu-cost-intro p {
    margin: 0 0 10px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.8;
}

.cu-cost-intro p:last-child {
    margin-bottom: 0;
    color: #717073;
    font-weight: 600;
}


/* 
   EXPENSE CARDS
 */

.cu-expense-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.cu-expense-card {
    padding: 24px;
    border: 1px solid #e2e2e2;
    transition: all 0.3s ease;
}

.cu-expense-card:hover {
    transform: translateY(-5px);
    border-color: #f47b20;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.cu-expense-card h3 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #717073;
    font-size: 20px;
    border-bottom: 2px solid #f47b20;
}

.cu-expense-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cu-expense-card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.6;
}

.cu-expense-card li:last-child {
    margin-bottom: 0;
}

.cu-expense-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #f47b20;
    border-radius: 50%;
}


/* 
   COST NOTE
 */

.cu-cost-note {
    margin-top: 20px;
    padding: 16px 20px;
    border-left: 3px solid #f47b20;
    color: #717073;
    font-size: 14px;
    font-weight: 600;
}


/* 
   COMMON CONTENT SECTION
 */

.cu-ranking-content-section {
    margin-top: 65px;
    padding-top: 45px;
    border-top: 1px solid #dedede;
}


/* 
   LIVING CONTENT
 */

.cu-living-content {
    max-width: 950px;
    margin-bottom: 22px;
}

.cu-living-content p {
    margin: 0 0 12px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.8;
}

.cu-living-content .cu-living-lead {
    margin-top: 18px;
    margin-bottom: 0;
    color: #717073;
    font-weight: 700;
}


/* 
   LIVING GRID
 */

.cu-living-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
}

.cu-living-grid div {
    padding: 15px;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    color: #555;
    font-size: 14px;
    transition: all 0.25s ease;
}

.cu-living-grid div:hover {
    color: #f47b20;
    padding-left: 20px;
}


/* 
   LIVING FINAL
 */

.cu-living-final {
    max-width: 950px;
    margin: 20px 0 0;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   RANKING HIGHLIGHT
 */

.cu-ranking-highlight {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 5px;
    padding: 28px;
    border-top: 3px solid #f47b20;
    border-bottom: 1px solid #ddd;
}

.cu-ranking-value {
    color: #717073;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
}

.cu-ranking-text strong {
    display: block;
    margin-bottom: 10px;
    color: #f47b20;
    font-size: 15px;
}

.cu-ranking-text p {
    margin: 0 0 10px;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.7;
}

.cu-ranking-text p:last-child {
    margin-bottom: 0;
}


/* 
   RANKING MEANING
 */

.cu-ranking-meaning {
    margin-top: 40px;
}

.cu-ranking-meaning h3,
.cu-quality-note h3 {
    margin: 0 0 12px;
    color: #717073;
    font-size: 27px;
    line-height: 1.3;
}

.cu-ranking-meaning>p {
    max-width: 950px;
    margin: 0 0 12px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.8;
}

.cu-ranking-meaning .cu-ranking-lead {
    color: #717073;
    font-weight: 700;
}


/* 
   MEDICAL FACTORS
 */

.cu-medical-factors {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.cu-medical-factors div {
    padding: 16px;
    border: 1px solid #e2e2e2;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    transition: all 0.25s ease;
}

.cu-medical-factors div:hover {
    transform: translateY(-3px);
    border-color: #f47b20;
    color: #f47b20;
}


/* 
   QUALITY NOTE
 */

.cu-quality-note {
    margin-top: 35px;
    padding: 25px;
    border-left: 3px solid #717073;
}

.cu-quality-note h3 {
    font-size: 24px;
}

.cu-quality-note p {
    max-width: 950px;
    margin: 0;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   RESPONSIVE
 */

@media (max-width: 1199px) {

    .cu-living-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cu-medical-factors {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 991px) {

    .cu-cost-ranking-heading h2 {
        font-size: 38px;
    }

    .cu-expense-grid {
        grid-template-columns: 1fr;
    }

    .cu-living-grid,
    .cu-medical-factors {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-ranking-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


@media (max-width: 767px) {

    .cu-cost-ranking-section {
        padding: 20px 0;
    }

    .cu-cost-ranking-heading h2 {
        font-size: 30px;
    }

    .cu-cost-intro p,
    .cu-living-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .cu-expense-card {
        padding: 20px;
    }

    .cu-ranking-content-section {
        margin-top: 45px;
        padding-top: 30px;
    }

    .cu-living-grid,
    .cu-medical-factors {
        grid-template-columns: 1fr 1fr;
    }

    .cu-ranking-highlight {
        padding: 22px;
    }

    .cu-ranking-value {
        font-size: 34px;
    }

    .cu-ranking-meaning h3,
    .cu-quality-note h3 {
        font-size: 22px;
    }

    .cu-quality-note {
        padding: 20px;
    }

}

.cu-expense-grid {
    align-items: stretch;
}

.cu-expense-card {
    display: flex;
    flex-direction: column;
}

.cu-expense-card p {
    margin-top: auto;
    padding-top: 18px;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}

.cu-subject-note {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cu-subject-note strong {
    color: #f47b20;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cu-subject-note span {
    color: #717073;
    font-size: 13px;
    line-height: 1.6;
}

.cu-hostel-section {
    padding: 55px 0;
}


/* 
   HEADING
 */

.cu-hostel-heading {
    max-width: 850px;
    margin-bottom: 30px;
}

.cu-hostel-heading>span {
    display: block;
    margin-bottom: 8px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cu-hostel-heading h2 {
    margin: 0 0 12px;
    color: #717073;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-hostel-heading h2 em {
    color: #f47b20;
    font-style: normal;
}

.cu-hostel-heading p {
    margin: 0;
    color: #717073;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   HOSTEL GRID
 */

.cu-hostel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* 
   HOSTEL CARD
 */

.cu-hostel-card {
    padding: 20px;
    border: 1px solid #e3e3e3;
    background: #fff;
    transition: all 0.3s ease;
}

.cu-hostel-card:hover {
    transform: translateY(-5px);
    border-color: #f47b20;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cu-hostel-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cu-hostel-card-top span {
    color: #f47b20;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.cu-hostel-card-top i {
    color: #717073;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cu-hostel-card:hover .cu-hostel-card-top i {
    color: #f47b20;
    transform: scale(1.1);
}

.cu-hostel-card h3 {
    margin: 0 0 8px;
    color: #717073;
    font-size: 19px;
    font-weight: 700;
}

.cu-hostel-card p {
    margin: 0;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}


/* 
   NOTE
 */

.cu-hostel-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 3px solid #f47b20;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.cu-hostel-note-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f47b20;
    color: #f47b20;
    font-size: 15px;
    font-weight: 700;
}

.cu-hostel-note strong {
    display: block;
    margin-bottom: 2px;
    color: #717073;
    font-size: 14px;
}

.cu-hostel-note p {
    margin: 0;
    color: #717073;
    font-size: 13px;
    line-height: 1.6;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-hostel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-hostel-heading h2 {
        font-size: 34px;
    }

}


@media (max-width: 575px) {

    .cu-hostel-section {
        padding: 40px 0;
    }

    .cu-hostel-grid {
        grid-template-columns: 1fr;
    }

    .cu-hostel-heading h2 {
        font-size: 29px;
    }

    .cu-hostel-card {
        min-height: auto;
    }

}

.cu-life-section {
    padding: 55px 0;
}


/* 
   HEADINGS
 */

.cu-life-heading {
    max-width: 900px;
    margin-bottom: 22px;
}

.cu-life-heading span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cu-life-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-life-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* 
   INTRO
 */

.cu-life-intro p,
.cu-life-block>p {
    margin: 0 0 12px;
    color: #717073;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   FOOD CARDS
 */

.cu-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.cu-life-card {
    padding: 10px;
    padding-left: 50px;
    border: 1px solid #e2e2e2;
    background: #fff;
    transition: .3s ease;
}

.cu-life-card:hover {
    transform: translateY(-5px);
    border-color: #f47b20;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.cu-life-card h3 {
    margin: 0 0 8px;
    color: #717073;
    font-size: 18px;
}

.cu-life-card p {
    margin: 0;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}


/* 
   NOTE
 */

.cu-life-note {
    margin-top: 18px;
    padding: 14px 17px;
    border-left: 3px solid #f47b20;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}


/* 
   BLOCKS
 */

.cu-life-block {
    margin-top: 55px;
    padding-top: 38px;
    border-top: 1px solid #e2e2e2;
}

.cu-life-subtitle {
    margin-top: 20px;
    margin-bottom: 12px;
    color: #717073;
    font-size: 14px;
    font-weight: 700;
}


/* 
   TAGS
 */

.cu-life-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cu-life-tags span {
    padding: 7px 12px;
    border: 1px solid #ddd;
    color: #717073;
    font-size: 12px;
    transition: .3s ease;
}

.cu-life-tags span:hover {
    border-color: #f47b20;
    color: #f47b20;
}


/* 
   LIST
 */

.cu-life-list {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.cu-life-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}

.cu-life-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f47b20;
}


/* 
   WARNING
 */

.cu-warning-note {
    margin-top: 20px;
    padding: 17px 19px;
    border: 1px solid #e2e2e2;
    border-top: 3px solid #f47b20;
}

.cu-warning-note strong {
    display: block;
    margin-bottom: 5px;
    color: #f47b20;
    font-size: 13px;
}

.cu-warning-note p {
    margin: 0;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}


/* 
   FACILITIES
 */

.cu-facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.cu-facility-card {
    padding: 15px 18px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e2e2;
    transition: .3s ease;
}

.cu-facility-card:hover {
    border-color: #f47b20;
    transform: translateY(-4px);
}

.cu-facility-card h3 {
    margin: 0;
    color: #717073;
    font-size: 16px;
    line-height: 1.4;
}


/* 
   SIMULATION
 */

.cu-simulation-box {
    margin-top: 55px;
    padding: 30px;
    border-left: 4px solid #f47b20;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.cu-simulation-content span {
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.cu-simulation-content h2 {
    margin: 7px 0 10px;
    color: #717073;
    font-size: 27px;
}

.cu-simulation-content h2 em {
    color: #f47b20;
    font-style: normal;
}

.cu-simulation-content p {
    max-width: 850px;
    margin: 0;
    color: #717073;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   PROS & CONS
 */

.cu-pros-cons-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e2e2;
}

.cu-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cu-pros-card,
.cu-consider-card {
    padding: 25px;
    border: 1px solid #e2e2e2;
    background: #fff;
    transition: .3s ease;
}

.cu-pros-card:hover,
.cu-consider-card:hover {
    border-color: #f47b20;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.cu-pros-title {
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.cu-pros-title span {
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cu-pros-title h3 {
    margin: 6px 0 0;
    color: #717073;
    font-size: 22px;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-life-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-pros-cons-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575px) {

    .cu-life-section {
        padding: 40px 0;
    }

    .cu-life-grid,
    .cu-facility-grid {
        grid-template-columns: 1fr;
    }

    .cu-life-heading h2 {
        font-size: 29px;
    }

    .cu-simulation-box {
        padding: 22px;
    }

    .cu-pros-card,
    .cu-consider-card {
        padding: 20px;
    }

}



/* 
   COMPARISON SECTION
 */

.cu-comparison-section {
    padding: 55px 0;
}


/* 
   HEADING
 */

.cu-comparison-heading {
    margin-bottom: 30px;
}

.cu-comparison-heading span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cu-comparison-heading h2 {
    margin: 0 0 12px;
    color: #717073;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.cu-comparison-heading h2 em {
    color: #f47b20;
    font-style: normal;
}

.cu-comparison-heading p {
    max-width: 800px;
    margin: 0;
    color: #717073;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   TABLE
 */

.cu-comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e4e4e4;
}

.cu-comparison-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.cu-comparison-table thead th {
    padding: 15px 18px;
    background: #717073;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.cu-comparison-table tbody td {
    padding: 12px 18px;
    color: #717073;
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid #e7e7e7;
}

.cu-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.cu-comparison-table tbody td:first-child {
    width: 34%;
    color: #f47b20;
    font-weight: 600;
}

.cu-comparison-table tbody tr {
    transition: .25s ease;
}

.cu-comparison-table tbody tr:hover {
    background: #fafafa;
}


/* 
   IMAGE
 */

.cu-comparison-image {
    position: relative;
    height: 100%;
    min-height: 510px;
    overflow: hidden;
}

.cu-comparison-image img {
    width: 100%;
    height: 510px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.cu-comparison-image:hover img {
    transform: scale(1.06);
}


/* IMAGE OVERLAY */

.cu-comparison-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 25px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .05));
}

.cu-comparison-image-overlay span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cu-comparison-image-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.3;
}

.cu-comparison-image-overlay h3 strong {
    display: block;
    color: #fff;
}


/* 
   BOTTOM NOTE
 */

.cu-comparison-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 25px;
    padding: 17px 0 0;
}

.cu-comparison-note-line {
    width: 3px;
    min-width: 3px;
    height: 48px;
    background: #f47b20;
}

.cu-comparison-note p {
    margin: 0;
    color: #717073;
    font-size: 13px;
    line-height: 1.8;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-comparison-table-wrap {
        margin-bottom: 25px;
    }

    .cu-comparison-image,
    .cu-comparison-image img {
        min-height: 350px;
        height: 350px;
    }

}


@media (max-width: 575px) {

    .cu-comparison-section {
        padding: 40px 0;
    }

    .cu-comparison-heading h2 {
        font-size: 28px;
    }

    .cu-comparison-table thead th,
    .cu-comparison-table tbody td {
        padding: 11px 13px;
        font-size: 12px;
    }

    .cu-comparison-image,
    .cu-comparison-image img {
        min-height: 300px;
        height: 300px;
    }

    .cu-comparison-image-overlay h3 {
        font-size: 22px;
    }

}

/* 
   CAREER SECTION
 */

.cu-career-section {
    padding: 20px 0;
}


/* 
   HEADING
 */

.cu-career-heading {
    margin-bottom: 30px;
}

.cu-career-heading>span,
.cu-worth-heading>span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cu-career-heading h2,
.cu-worth-heading h2 {
    margin: 0 0 12px;
    color: #717073;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
}

.cu-career-heading h2 em,
.cu-worth-heading h2 em {
    color: #f47b20;
    font-style: normal;
}

.cu-career-heading>p {
    margin: 0;
    color: #717073;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   CAREER CARDS
 */

.cu-career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cu-career-card {
    border: 1px solid #e2e2e2;
    background: #fff;
    transition: all .3s ease;
}

.cu-career-card:hover {
    transform: translateY(-5px);
    border-color: #f47b20;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}


/* 
   CARD TOP
 */

.cu-career-card-top {
    padding: 22px 24px 18px;
    border-bottom: 1px solid #e5e5e5;
}

.cu-career-card-top span {
    display: block;
    margin-bottom: 6px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.cu-career-card-top h3 {
    margin: 0;
    color: #717073;
    font-size: 23px;
    line-height: 1.3;
}


/* 
   CARD CONTENT
 */

.cu-career-card-content {
    padding: 22px 24px;
}

.cu-career-card-content p {
    margin: 0 0 12px;
    color: #717073;
    font-size: 13px;
    line-height: 1.8;
}

.cu-career-card-content ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.cu-career-card-content ul li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 20px;
    color: #717073;
    font-size: 13px;
    line-height: 1.7;
}

.cu-career-card-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f47b20;
}


/* 
   CARD NOTE
 */

.cu-career-note {
    margin-top: 18px;
    padding: 13px 15px;
    border-left: 3px solid #f47b20;
}

.cu-career-note p {
    margin: 0;
}


/* 
   WORTH SECTION
 */

.cu-worth-section {
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid #e2e2e2;
}

.cu-worth-heading {
    margin-bottom: 22px;
}


.cu-worth-content>p {
    margin: 0 0 13px;
    color: #717073;
    font-size: 14px;
    line-height: 1.8;
}


/* 
   STUDENT FACTORS GRID
 */

.cu-worth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.cu-worth-grid div {
    padding: 8px 17px;
    min-height: 55px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e2e2;
    color: #717073;
    font-size: 13px;
    transition: all .3s ease;
}

.cu-worth-grid div:hover {
    border-color: #f47b20;
    color: #f47b20;
    transform: translateY(-3px);
}


/* 
   FINAL NOTE
 */

.cu-final-note {
    margin-top: 25px;
    padding: 18px 20px;
    border-left: 4px solid #f47b20;
    border-top: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.cu-final-note span {
    display: block;
    margin-bottom: 5px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cu-final-note p {
    margin: 0;
    color: #717073;
    font-size: 13px;
    line-height: 1.8;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-career-grid {
        grid-template-columns: 1fr;
    }

    .cu-worth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 575px) {

    .cu-career-section {
        padding: 20px 0;
    }

    .cu-career-heading h2,
    .cu-worth-heading h2 {
        font-size: 28px;
    }

    .cu-career-card-top,
    .cu-career-card-content {
        padding: 18px;
    }

    .cu-career-card-top h3 {
        font-size: 20px;
    }

    .cu-worth-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* 
   COMMON MISTAKES SECTION
 */

.cu-mistakes-section {
    padding: 55px 0;
}


/* HEADING */

.cu-mistakes-heading {
    max-width: 850px;
    margin-bottom: 30px;
}

.cu-mistakes-heading span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cu-mistakes-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
}

.cu-mistakes-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* 
   MISTAKES LIST
 */

.cu-mistakes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cu-mistake-item {
    padding: 17px 18px;
    border: 1px solid #e2e2e2;
    background: #fff;
    transition: all .3s ease;
}

.cu-mistake-item:hover {
    border-color: #f47b20;
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.cu-mistake-content h3 {
    margin: 0 0 7px;
    color: #717073;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.cu-mistake-content p {
    margin: 0;
    color: #717073;
    font-size: 12px;
    line-height: 1.7;
}


/* 
   IMAGE
 */

.cu-mistakes-image {
    position: relative;
    height: 100%;
    min-height: 610px;
    overflow: hidden;
}

.cu-mistakes-image img {
    width: 100%;
    height: 610px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.cu-mistakes-image:hover img {
    transform: scale(1.06);
}


/* IMAGE OVERLAY */

.cu-mistakes-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .05));
}

.cu-mistakes-image-overlay span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cu-mistakes-image-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.25;
}

.cu-mistakes-image-overlay h3 strong {
    display: block;
    color: #fff;
}


/* 
   RESPONSIVE
 */

@media (max-width: 991px) {

    .cu-mistakes-list {
        grid-template-columns: 1fr;
    }

    .cu-mistakes-image {
        margin-top: 25px;
        min-height: 400px;
    }

    .cu-mistakes-image img {
        height: 400px;
    }

}


@media (max-width: 575px) {

    .cu-mistakes-section {
        padding: 40px 0;
    }

    .cu-mistakes-heading h2 {
        font-size: 28px;
    }

    .cu-mistakes-image {
        min-height: 300px;
    }

    .cu-mistakes-image img {
        height: 300px;
    }

    .cu-mistakes-image-overlay h3 {
        font-size: 23px;
    }

}

/* 
   FAQ SECTION
 */

.cu-faq-section {
    padding: 20px 0;
}


/* HEADING */

.cu-faq-heading {
    margin-bottom: 30px;
}

.cu-faq-heading span {
    display: block;
    margin-bottom: 7px;
    color: #f47b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cu-faq-heading h2 {
    margin: 0;
    color: #717073;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.cu-faq-heading h2 em {
    color: #f47b20;
    font-style: normal;
}


/* FAQ WRAPPER */

.cu-faq-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


/* FAQ ITEM */

.cu-faq-item {
    border: 1px solid #e4e4e4;
    background: #fff;
    transition: all .3s ease;
}

.cu-faq-item:hover {
    border-color: #f47b20;
}


/* QUESTION */

.cu-faq-question {
    width: 100%;
    padding: 16px 18px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
    cursor: pointer;
}

.cu-faq-question:hover {
    background-color: #fff5ee !important;
}

.cu-faq-question span {
    color: #717073;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.cu-faq-question i {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f47b20;
    border-radius: 50%;
    color: #f47b20;
    font-size: 12px;
    transition: all .3s ease;
}


/* ACTIVE FAQ */

.cu-faq-item.active {
    border-color: #f47b20;
}

.cu-faq-item.active .cu-faq-question i {
    background: #f47b20;
    color: #fff;
    transform: rotate(45deg);
}


/* ANSWER */

.cu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.cu-faq-answer p {
    margin: 0;
    padding: 0 18px 16px;
    color: #717073;
    font-size: 13px;
    line-height: 1.75;
}


/* ACTIVE ANSWER */

.cu-faq-item.active .cu-faq-answer {
    max-height: 2000px;
}


/* FINAL FAQ PATH */

.cu-faq-path {
    margin: 0 18px 16px;
    padding: 13px 15px;
    border-left: 3px solid #f47b20;
    background: #f7f7f7;
    color: #717073;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .cu-faq-wrap {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575px) {

    .cu-faq-section {
        padding: 20px 0;
    }

    .cu-faq-heading h2 {
        font-size: 28px;
    }

    .cu-faq-question {
        padding: 14px;
    }

    .cu-faq-question span {
        font-size: 14px;
    }

    .cu-faq-answer p {
        padding-left: 14px;
        padding-right: 14px;
    }

}

/* =========================
   LIFE / SCHOLARSHIP ROW
========================= */

.cu-life-row {
    display: flex;
    align-items: stretch;
    gap: 35px;
    margin-bottom: 50px;
}

.cu-life-row-reverse {
    flex-direction: row-reverse;
}


/* IMAGE */

.cu-life-image {
    width: 40%;
    min-height: 420px;
    overflow: hidden;
}

.cu-life-image:hover {
    border-bottom: 4px solid #f47b20;
}

.cu-life-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.cu-life-image:hover img {
    transform: scale(1.06);
    border-bottom: 4px solid #f47b20;
}


/* CONTENT */

.cu-life-content {
    width: 60%;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .cu-life-row,
    .cu-life-row-reverse {
        flex-direction: column;
        gap: 25px;
    }

    .cu-life-image,
    .cu-life-content {
        width: 100%;
    }

    .cu-life-image,
    .cu-life-image img {
        min-height: 350px;
        height: 350px;
    }

}


@media (max-width: 575px) {

    .cu-life-row {
        margin-bottom: 35px;
    }

    .cu-life-image,
    .cu-life-image img {
        min-height: 280px;
        height: 280px;
    }

}