* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

/* section{
    background-color: #ccc;
    height: 100%;
    width: 100%;
} */

.college_page {
    width: 100%;
    background: #fff;
}


/*================ HERO SECTION ================*/

.college_hero {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.college_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero_content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 70%;

    text-align: center;

    color: #fff;

}

.hero_content h1 {

    font-size: 56px;
    font-weight: 700;

    margin-bottom: 25px;

}

.hero_content p {

    width: 80%;

    margin: auto;

    font-size: 17px;

    line-height: 42px;

}



/*================ HERO STATS ================*/

.hero_stats {

    margin-top: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

    width: fit-content;

    margin-inline: auto;

    padding: 18px 40px;

    border-radius: 60px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

}

.stat_box {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    font-size: 16px;

    font-weight: 500;

}

.stat_box i {

    font-size: 22px;

    color: #fff;

}

.stat_box:not(:last-child) {

    border-right: 1px solid rgba(255, 255, 255, .4);

    padding-right: 20px;

}



/*================ ABOUT SECTION ================*/

.about_college {

    width: 88%;

    margin: 120px auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

.about_left {

    width: 48%;

}

.about_left small {
    font-weight: 600;
    border-bottom: 3px solid #ff8a00;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 30%;
    padding-bottom: 7px;

}

.section_tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #38b7b2;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.section_tag i {

    color: #ff8a00;

    font-size: 9px;

}

.about_left h2 {

    font-size: 50px;

    color: #243b68;

    margin: 22px 0 35px;

}

.about_left p {

    font-size: 21px;

    color: #555;

    line-height: 38px;

    margin-bottom: 25px;

}

.about_left a {

    margin-top: 20px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #1d63d0;

    border: 2px solid #1d63d0;

    border-radius: 50px;

    padding: 15px 38px;

    font-weight: 600;

    transition: .4s;

}

.about_left a .fa-arrow-right-long {

    font-size: 16px;

    transition: .3s;

}

.about_left a:hover {

    background: #1d63d0;

    color: #fff;

}

.about_left a:hover .fa-arrow-right-long {

    transform: translateX(5px);

}



/*================ ABOUT IMAGE ================*/

.about_right {

    width: 48%;

}

.about_right img {

    width: 100%;

    height: 650px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}

/*================ Quick Facts Section ================*/

.quick_facts {
    margin: 70px 45px;
}

/*================ Heading =================*/

.quick_facts_heading {
    display: flex;
    justify-content: center;
    margin-bottom: 65px;
}

.quick_facts_heading h1 {
    font-size: 35px;
    color: #243b68;
    font-weight: 700;
    position: relative;
    padding-bottom: 22px;
}

.quick_facts_heading h1::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 4px;
    background: #ff8a00;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
}

.quick_facts_heading h1::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ff8a00;
    border-radius: 50%;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
}

/*================ Cards =================*/

.quickfact_boxes {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.quickfact_box {

    position: relative;

    width: 320px;

    flex: 0 0 320px;

    height: auto;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    padding: 135px 25px 35px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);

    transition: .35s ease;
}

.quickfact_box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

/*================ Top Shape =================*/

.quickfact_box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 95px;

    background: #38b7b2;

    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
}

/*================ Icon =================*/

.quickfact_icon {

    position: absolute;

    top: 40px;
    left: 50%;

    transform: translateX(-50%);

    width: 115px;
    height: 115px;

    border-radius: 50%;

    background: #38b7b2;

    border: 12px solid #eef8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 5;
}

.quickfact_icon .icon {

    width: 58px;
    height: 58px;
    color: #fff;
}

/*================ Content =================*/

.quickfact_content {

    text-align: center;
}

.quickfact_content .head {

    font-size: 23px;

    color: #243b68;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 22px;
    margin-top: 20px;
}

.quickfact_content .last {

    font-size: 18px;

    color: #555;

    font-weight: 600;

    line-height: 1.6;

    position: relative;

    display: inline-block;

    padding-bottom: 32px;
}

/* Teal Line */

.quickfact_content .last::before {

    content: "";

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: 14px;

    width: 70px;
    height: 4px;


    border-radius: 30px;
}

/* Orange Line */

.quickfact_content .last::after {

    content: "";

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: 0;

    width: 90px;
    height: 4px;

    background: #ff8a00;

    border-radius: 30px;
}


/*================ COURSE OFFERED SECTION ================*/

.course_offered_section {
    padding: 80px 0;
    background: #fff;
}

.course_offered {
    width: 92%;
    max-width: 1500px;
    margin: auto;
}

/*================ HEADING ================*/

.course_offered_heading {
    text-align: center;
    margin-bottom: 50px;
}

.course_offered_heading h1 {
    color: #243b68;
    font-size: 48px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.course_offered_heading h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background: #ff8a00;
    border-radius: 20px;
}

/*================ ROW ================*/

.courseoffered_rows {
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

/*================ CARD ================*/

.courseoffered_box {

    width: 340px;
    flex: 0 0 340px;

    background: #fff;

    border-radius: 18px;

    padding: 22px;

    height: auto;

    border: 1px solid #e7edf6;

    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;

    transition: .35s;
}

.courseoffered_box::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg, #38b7b2, #ff8a00);

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;
}

.courseoffered_box::after {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    right: -65px;
    bottom: -65px;

    background: rgba(56, 183, 178, .08);

    transition: .35s;
}

.courseoffered_box:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.courseoffered_box:hover::before {

    transform: scaleX(1);
}

.courseoffered_box:hover::after {

    right: -40px;
    bottom: -40px;
}

/*================ ICON ================*/

.courseoffered_icon {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 20px;
}

.courseoffered_icon .icon {

    width: 65px;
    height: 65px;

    padding: 14px;

    border-radius: 16px;

    background: #eefafa;

    color: #38b7b2;

    font-size: 34px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    transition: .35s;
}

.courseoffered_box:hover .icon {

    background: #38b7b2;
    color: #fff;
}

.courseoffered_icon .head {

    color: #243b68;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.35;

    display: flex;

    align-items: center;

    min-height: 65px;
}

/*================ CONTENT ================*/

.courseoffered_content {

    text-align: center;
}

.courseoffered_content .last {

    margin-top: 8px;

    border: 2px solid #243b68;

    border-radius: 14px;

    padding: 12px;

    font-size: 14px;

    line-height: 1.6;

    color: #555;

    background: #fff;

    transition: .35s;
}

.courseoffered_box:hover .last {

    border-color: #38b7b2;

    background: #f8ffff;
}







/*================ WHY CHOOSE SECTION ================*/

.whychoose {
    width: 92%;
    max-width: 1500px;
    margin: 80px auto;
}

/*================ Heading ================*/

.why_choose_heading {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.why_choose_heading h1 {
    color: #243b68;
    font-size: 35px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.why_choose_heading h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 170px;
    height: 4px;
    background: #ff8a00;
    border-radius: 30px;
}

/*================ Rows ================*/

.whychoose_rows {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
}

/*================ Card ================*/

.whychoose_box {

    width: 450px;
    flex: 0 0 450px;

    background: #fff;

    border-radius: 18px;

    padding: 25px;

    height: auto;

    border: 1px solid #e7edf6;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;

    transition: .35s;
}

.whychoose_box::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg, #38b7b2, #ff8a00);

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;
}

.whychoose_box::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -65px;

    background: rgba(56, 183, 178, .08);

    border-radius: 50%;

    transition: .35s;
}

.whychoose_box:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}

.whychoose_box:hover::before {

    transform: scaleX(1);
}

.whychoose_box:hover::after {

    right: -40px;
    bottom: -40px;
}

/*================ Icon ================*/

.whychoose_icon {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 20px;
}

.whychoose_icon .icon {

    width: 70px;
    height: 70px;

    padding: 8px;

    background: #eefbfb;

    color: #38b7b2;

    border-radius: 18px;

    font-size: 34px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    transition: .35s;
}

.whychoose_box:hover .icon {

    background: #38b7b2;

    color: #fff;
}

.whychoose_icon .head {

    color: #243b68;

    font-size: 22px;

    font-weight: 600;

    line-height: 1.4;
}

/*================ Content ================*/

.whychoose_content {

    margin-left: 88px;
}

.whychoose_content p {

    color: #555;

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;

    margin: 0;
}

/* =========================================================
   ADMISSION PROCESS
========================================================= */

.admission {
    margin: 80px 45px;
}


/* =========================================================
   ADMISSION HEADING
========================================================= */

.admission_heading {
    text-align: center;
    margin-bottom: 45px;
}

.admission_heading h1 {
    position: relative;

    display: inline-block;

    color: #243b68;

    font-size: 36px;
    font-weight: 700;

    margin: 0 0 12px;

    padding-bottom: 12px;
}


/* Orange underline */

.admission_heading h1::after {
    content: "";

    position: absolute;

    width: 195px;
    height: 4px;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    background: #ff8a00;

    border-radius: 20px;
}


.admission_heading span {
    display: block;

    color: #243b68;

    font-size: 20px;
    font-weight: 600;

    margin-top: 5px;
}


.admission_heading .steps {
    display: block;

    color: #4e74c0;

    font-size: 16px;

    margin-top: 6px;

    line-height: 1.6;
}


/* =========================================================
   ADMISSION BOX
========================================================= */

.admission_box {
    position: relative;

    width: 100%;

    min-height: 145px;

    background: #ffffff;

    border: 1px solid #e8edf5;

    border-radius: 16px;

    padding: 25px 30px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;

    box-shadow:
        0 5px 20px rgba(36, 59, 104, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
}


/* Left accent */

.admission_box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;
    bottom: 18px;

    width: 4px;

    background: #38b7b2;

    border-radius: 0 5px 5px 0;

    transition: 0.3s ease;
}


/* Card hover */

.admission_box:hover {
    transform: translateY(-5px);

    border-color: #d9e4f2;

    box-shadow:
        0 12px 30px rgba(36, 59, 104, 0.13);
}


.admission_box:hover::before {
    background: #ff8a00;

    top: 10px;
    bottom: 10px;
}


/* =========================================================
   ADMISSION BOX CONTENT
========================================================= */

.admission_box_content {
    display: flex;

    align-items: center;

    width: 100%;
}


/* =========================================================
   SERIAL NUMBER
========================================================= */

.admission_box_content .serial_no {
    min-width: 72px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.admission_box_content .serial_no p {
    margin: 0;

    padding-right: 20px;

    color: #243b68;

    font-size: 28px;

    font-weight: 700;

    line-height: 1;

    border-right: 2px solid #e3e7ee;
}


/* =========================================================
   TEXT CONTENT
========================================================= */

.serial_no_content {
    flex: 1;

    margin-left: 25px;
}


.serial_no_content h3 {
    color: #243b68;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.35;

    margin: 0 0 8px;
}


.serial_no_content p {
    color: #596579;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   ICON
========================================================= */

.admission_box_icon {
    min-width: 85px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.admission_box_icon .ad_icon {
    width: 68px;
    height: 68px;

    padding: 15px;

    color: #38b7b2;

    background-color: #dcfcfb;

    border-radius: 50%;

    border: 5px solid #f4ffff;

    box-shadow:
        0 5px 15px rgba(56, 183, 178, 0.18);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Icon hover */

.admission_box:hover .ad_icon {
    transform: scale(1.08);

    box-shadow:
        0 8px 22px rgba(56, 183, 178, 0.25);
}


/* =========================================================
   ADMISSION BUTTON AREA
========================================================= */

.admission_button {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-top: 35px;

    flex-wrap: wrap;
}


.real_admission_button a {
    display: block;

    margin-bottom: 13px;
}


/* =========================================================
   ORIGINAL MAIN ADMISSION BUTTON
========================================================= */

.admission_button a {
    text-decoration: none;

    color: #fff;

    background-color: #243b68;

    padding: 15px 45px;

    font-size: 27px;

    font-weight: 600;

    border-radius: 35px;

    transition: .3s;
}


/* Original PG icon */

.admission_button .pg_icon {
    font-size: 27px;

    color: #ff8a00;

    transition: .3s;
}


/* Original hover */

.admission_button a:hover .pg_icon {
    transform: scale(1.2);
}


.admission_button a:hover {
    box-shadow: 0 5px 0 #ff8a00;
}


/* =========================================================
   CONSULTANCY BUTTON
   ORIGINAL STYLE — DO NOT CHANGE
========================================================= */

.admission_button .consult {
    background-color: orangered;

    color: #fff;
}


.admission_button .consult:hover {
    box-shadow: 0 5px 0 #243b68;
}


/*================ Part Of Legacy Section ================*/

.legacy {
    height: 300px;
    width: calc(100% - 90px);
    background: linear-gradient(190deg,
            #fff 50%,
            #ff8a00 100%);
    margin-top: 60px;
    margin-bottom: 0;
    margin-left: 45px;
    margin-right: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.legacy_box_image {
    height: 300px;
    width: 300px;

}

.legacy_box_image img {
    height: 300px;
    width: 300px;
}

.legacy_box_content h3 {
    color: #243b68;
    font-size: 31px;
    margin-bottom: 10px;
}

.legacy_box_content p {
    columns: #555;
    font-size: 18px;
}

.legacy_box_button a {
    text-decoration: none;
    color: #fff;
    background-color: orangered;
    padding: 12px 18px;
    font-size: 20px;

    border-radius: 25px;
    font-weight: 600;
}

.legacy_box_button .apply {
    transition: .3s;
}

.legacy_box_button a:hover .apply {
    transform: translateX(5px);
}


/*======================================================
                QUICK FACTS RESPONSIVE
======================================================*/


/*================ Laptop =================*/

@media screen and (max-width:1200px) {

    .quick_facts {
        margin: 70px 25px;
    }

    .quick_facts_heading h1 {
        font-size: 32px;
    }

    .quickfact_boxes {
        justify-content: center;
        gap: 25px;
    }

    .quickfact_box {

        width: 300px;
        flex: 0 0 300px;

    }

}



/*================ Tablet =================*/

@media screen and (max-width:992px) {

    .quick_facts {
        margin: 65px 20px;
    }

    .quick_facts_heading {
        margin-bottom: 50px;
    }

    .quick_facts_heading h1 {
        font-size: 30px;
    }

    .quick_facts_heading h1::before {
        width: 180px;
    }

    .quickfact_boxes {

        display: flex;

        flex-wrap: wrap;

        justify-content: space-between;

        gap: 20px;

    }

    .quickfact_box {

        width: calc(50% - 10px);

        flex: 0 0 calc(50% - 10px);

        min-width: 0;

        max-width: none;

        height: auto;

        min-height: 320px;

    }

}



/*================ Mobile =================*/

@media screen and (max-width:768px) {

    .quick_facts {
        margin: 60px 15px;
    }

    .quick_facts_heading {
        margin-bottom: 40px;
    }

    .quick_facts_heading h1 {
        font-size: 28px;
        text-align: center;
        padding-bottom: 18px;
    }

    .quick_facts_heading h1::before {
        width: 150px;
    }

    .quickfact_boxes {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 22px;

    }

    .quickfact_box {

        width: 100%;

        flex: 0 0 100%;

        max-width: none;

        min-width: 0;

        height: auto;

        min-height: 310px;

        padding: 125px 20px 30px;

    }

    .quickfact_box::before {
        height: 85px;
    }

    .quickfact_icon {

        width: 100px;
        height: 100px;

        top: 38px;

        border-width: 10px;
    }

    .quickfact_icon .icon {

        width: 50px;
        height: 50px;
    }

    .quickfact_content .head {

        font-size: 21px;

        margin-bottom: 18px;
    }

    .quickfact_content .last {

        font-size: 17px;

        line-height: 1.6;
    }

}



/*================ Small Mobile =================*/

@media screen and (max-width:480px) {

    .quick_facts {
        margin: 50px 10px;
    }

    .quick_facts_heading h1 {
        font-size: 24px;
    }

    .quick_facts_heading h1::before {
        width: 120px;
    }

    .quickfact_box {

        width: 100%;

        flex: 0 0 100%;

        padding: 115px 18px 25px;

        border-radius: 20px;

        min-height: 290px;
    }

    .quickfact_box::before {

        height: 80px;

        border-bottom-left-radius: 70px;
        border-bottom-right-radius: 70px;
    }

    .quickfact_icon {

        width: 90px;
        height: 90px;

        top: 35px;

        border-width: 8px;
    }

    .quickfact_icon .icon {

        width: 42px;
        height: 42px;
    }

    .quickfact_content .head {

        font-size: 19px;

        margin-top: 12px;

        margin-bottom: 15px;
    }

    .quickfact_content .last {

        font-size: 15px;

        line-height: 1.5;

        padding-bottom: 25px;
    }

    .quickfact_content .last::before {
        width: 55px;
    }

    .quickfact_content .last::after {
        width: 75px;
    }

}


/*================ Responsive Code =================*/

@media screen and (max-width:768px) {

    .college_hero {
        height: 550px;
    }

    .hero_content {
        width: 90%;
    }

    .hero_content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .hero_content p {
        width: 100%;
        font-size: 16px;
        line-height: 30px;
    }

    .hero_stats {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        border-radius: 20px;
        margin-top: 30px;
    }

    .stat_box {
        border: none !important;
        padding-right: 0 !important;
        justify-content: center;
    }

    /* About */

    .about_college {
        width: 90%;
        margin: 70px auto;
        flex-direction: column;
        gap: 40px;
    }

    .about_left,
    .about_right {
        width: 100%;
    }

    .about_left h2 {
        font-size: 30px;
        margin: 18px 0 20px;
    }

    .about_left p {
        font-size: 18px;
        line-height: 32px;
    }

    .about_left a {
        padding: 13px 25px;
        font-size: 16px;
    }

    .about_right img {
        height: auto;
    }


    /*================ Admission Box Mobile ================*/

    .admission_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 18px;
        padding: 25px 20px;
        height: auto;
    }

    .admission_box_icon {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .admission_box_icon .ad_icon {
        width: 65px;
        height: 65px;
        padding: 16px;
    }

    .admission_box_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .admission_box_content .serial_no {
        width: 100%;
    }

    .admission_box_content .serial_no p {
        font-size: 30px;
        border: none;
        padding: 0;
        margin: 0;
    }

    .serial_no_content {
        margin: 0;
        width: 100%;
    }

    .serial_no_content h3 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .serial_no_content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
    }

    /*================ Admission Button Mobile ================*/

    .admission_button {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 35px;
    }

    .real_admission_button {
        width: 100%;
        display: block;
    }

    .real_admission_button a {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;
        text-decoration: none;

        padding: 16px 20px;
        border-radius: 12px;

        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;

        box-sizing: border-box;
    }

    .admission_button .pg_icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .admission_button a:first-child {
        background: #243b68;
        color: #fff;
    }

    .admission_button .consult {
        background: orangered;
        color: #fff;
    }

    .admission_button a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, .15);
    }



    /* Legacy */

    .legacy {
        width: 90%;
        margin: 60px auto 0;
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .legacy_box_image,
    .legacy_box_image img {
        width: 180px;
        height: 180px;
    }

    .legacy_box_content h3 {
        font-size: 28px;
    }

    .legacy_box_content p {
        font-size: 16px;
        line-height: 28px;
    }

    .legacy_box_button a {
        font-size: 17px;
        padding: 12px 20px;
    }
}

/*================ Responsive =================*/

@media(max-width:1400px) {

    .quickfact_boxes {

        justify-content: center;
    }

}

/*================ LAPTOP ================*/

@media(max-width:1200px) {

    .courseoffered_rows {

        gap: 18px;
    }

    .courseoffered_icon .head {

        font-size: 19px;
    }

    .courseoffered_icon .icon {

        width: 60px;
        height: 60px;
        font-size: 30px;
    }

}

/*================ TABLET ================*/

@media(max-width:992px) {

    .courseoffered_rows {

        flex-wrap: wrap;
    }

    .courseoffered_box {

        width: calc(50% - 11px);
        flex: unset;
    }

    .course_offered_heading h1 {

        font-size: 40px;
    }

}

/*================ MOBILE ================*/

@media(max-width:768px) {

    .course_offered {

        width: 95%;
    }

    .courseoffered_rows {

        flex-direction: column;
        gap: 18px;
    }

    .courseoffered_box {

        width: 100%;
    }

    .course_offered_heading h1 {

        font-size: 34px;
    }

    .courseoffered_icon {

        align-items: center;
    }

    .courseoffered_icon .head {

        font-size: 22px;
    }

}

/*================ SMALL MOBILE ================*/

@media(max-width:480px) {

    .course_offered_heading h1 {

        font-size: 30px;
    }

    .courseoffered_box {

        padding: 18px;
    }

    .courseoffered_icon {

        flex-direction: column;
        text-align: center;
    }

    .courseoffered_icon .head {

        justify-content: center;
        min-height: auto;
        text-align: center;
    }

    .courseoffered_content .last {

        font-size: 14px;
    }

}


/* whychoose responsive code */



/*================ Laptop ================*/

@media (max-width:1200px) {

    .whychoose_rows {
        gap: 22px;
    }

    .whychoose_icon .head {
        font-size: 20px;
    }

}

/*================ Tablet ================*/

@media (max-width:992px) {

    .whychoose {

        width: 95%;
        margin: 70px auto;
    }

    .whychoose_rows {

        flex-wrap: wrap;

        gap: 22px;
    }

    .whychoose_box {

        width: calc(50% - 11px);

        flex: unset;
    }

    .why_choose_heading h1 {

        text-align: center;
        font-size: 38px;
    }

}

/*================ Mobile ================*/

@media (max-width:768px) {

    .whychoose {

        margin: 60px auto;
    }

    .whychoose_rows {

        flex-direction: column;

        gap: 20px;
    }

    .whychoose_box {

        width: 100%;

        padding: 22px;
    }

    .whychoose_icon {

        align-items: flex-start;
    }

    .whychoose_icon .icon {

        width: 60px;
        height: 60px;

        font-size: 30px;
    }

    .whychoose_icon .head {

        font-size: 21px;
    }

    .whychoose_content {

        margin-left: 0;

        margin-top: 15px;
    }

    .whychoose_content p {

        text-align: left;

        font-size: 15px;

        line-height: 1.7;
    }

    .why_choose_heading h1 {

        font-size: 34px;
    }

}

/*================ Small Mobile ================*/

@media (max-width:480px) {

    .whychoose {

        width: 95%;
    }

    .whychoose_box {

        padding: 18px;
    }

    .whychoose_icon {

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 15px;
    }

    .whychoose_icon .head {

        text-align: center;

        font-size: 20px;
    }

    .whychoose_content {

        margin: 15px 0 0;
    }

    .whychoose_content p {

        text-align: center;

        font-size: 14px;
    }

    .why_choose_heading h1 {

        font-size: 30px;
    }

}

/* Admission process section responsive code */


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .admission {
        margin: 65px 30px;
    }


    .admission_heading h1 {
        font-size: 32px;
    }


    .admission_box {
        padding: 22px 25px;

        min-height: 140px;
    }


    .admission_box_content .serial_no {
        min-width: 65px;
    }


    .admission_box_content .serial_no p {
        font-size: 25px;

        padding-right: 16px;
    }


    .serial_no_content {
        margin-left: 20px;
    }


    .serial_no_content h3 {
        font-size: 19px;
    }


    .admission_box_icon {
        min-width: 75px;
    }


    .admission_box_icon .ad_icon {
        width: 62px;
        height: 62px;

        padding: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .admission {
        margin: 50px 18px;
    }


    /* Heading */

    .admission_heading {
        margin-bottom: 30px;
    }


    .admission_heading h1 {
        font-size: 28px;

        padding-bottom: 10px;
    }


    .admission_heading span {
        font-size: 17px;
    }


    .admission_heading .steps {
        font-size: 14px;

        line-height: 1.6;
    }


    /* Card */

    .admission_box {
        min-height: auto;

        padding: 20px 15px;

        margin-bottom: 18px;

        border-radius: 14px;
    }


    /* Content */

    .admission_box_content {
        align-items: flex-start;
    }


    /* Serial */

    .admission_box_content .serial_no {
        min-width: 45px;

        padding-top: 3px;
    }


    .admission_box_content .serial_no p {
        font-size: 21px;

        padding-right: 10px;
    }


    /* Text */

    .serial_no_content {
        margin-left: 13px;

        padding-right: 5px;
    }


    .serial_no_content h3 {
        font-size: 17px;

        line-height: 1.4;

        margin-bottom: 7px;
    }


    .serial_no_content p {
        font-size: 14px;

        line-height: 1.6;
    }


    /* Icon */

    .admission_box_icon {
        min-width: 55px;
    }


    .admission_box_icon .ad_icon {
        width: 52px;
        height: 52px;

        padding: 11px;

        border-width: 4px;
    }


    /* Buttons */

    .admission_button {
        flex-direction: column;

        width: 100%;

        gap: 5px;

        margin-top: 30px;
    }


    .real_admission_button {
        width: 100%;
    }


    .real_admission_button a {
        width: 100%;

        text-align: center;
    }


    .admission_button a {
        width: 100%;

        font-size: 18px;

        padding: 14px 25px;
    }


    /*
       Consultancy remains orange/original.
       Only width is adjusted for mobile.
    */

    .admission_button .consult {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .admission {
        margin: 40px 12px;
    }


    .admission_heading h1 {
        font-size: 24px;
    }


    .admission_heading span {
        font-size: 16px;
    }


    .admission_heading .steps {
        font-size: 13px;
    }


    /* Smaller card */

    .admission_box {
        padding: 18px 12px;

        gap: 0;
    }


    .admission_box::before {
        width: 3px;
    }


    /* Serial */

    .admission_box_content .serial_no {
        min-width: 38px;
    }


    .admission_box_content .serial_no p {
        font-size: 18px;

        padding-right: 8px;
    }


    /* Text */

    .serial_no_content {
        margin-left: 9px;
    }


    .serial_no_content h3 {
        font-size: 15px;
    }


    .serial_no_content p {
        font-size: 13px;

        line-height: 1.55;
    }


    /* Icon */

    .admission_box_icon {
        min-width: 45px;
    }


    .admission_box_icon .ad_icon {
        width: 44px;
        height: 44px;

        padding: 9px;
    }


    /* Buttons */

    .admission_button a {
        font-size: 16px;

        padding: 13px 20px;
    }

}
