header {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    position: sticky !important;
    top: 0;
    z-index: 99;
    background: white;
}

.sect_content {
    /* font-size: 1.2rem; */
    padding: 50px;
}


.sect_content.mx_width {
    max-width: 1400px;
    margin: auto;
}

.page_section > .heading {
    font-size: 1.5rem;
    text-align: center;
    /* text-decoration: underline; */
    margin-bottom: 3rem;
    margin-top: 2rem;
    background-color: #05916f;
    color: white;
    padding: 10px;
}


.logo {
    max-height: 120px;
}

.hero_image {
    width: 100%;
}

.hero_image.mobile {
    display: none;
}


@media (max-width: 500px) {
    .sect_content {
        padding: 5%;
        padding: 30px;
    }

    .page_section > .heading {
        font-size: x-large;
        margin-bottom: 2rem !important;
    }

    .hero_image.desktop {
        display: none;
    }

    .hero_image.mobile {
        display: block;
    }
}


.Program_Highlights ul {
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    /* Ensures the list style is a disc */
    list-style-type: none;
    /* Moves the bullets inside the content box */
    list-style-position: inside;
    padding: 0;
    gap: 20px;
}

.Program_Highlights ul > li {
    flex: 1 1 40%;
    padding: 20px 25px;
    font-size: 1rem;
    /* Custom bullet points */
    position: relative;
    padding-left: 1em;
    border: 1px solid #e9e9e9;
}

/* Customizing bullet points with pseudo-elements */
.Program_Highlights ul > li::before {
    content: "✔";
    background-color: #4CAF50;
    color: white;
    font-size: 1.2em;
    position: absolute;
    left: -18px;
    top: 1px;
    padding: 3px 8px;
    border-radius: 24px;
}

@media (max-width: 500px) {
    .Program_Highlights ul > li {
        flex: 1 1 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .Program_Highlights ul > li::before {
        left: -7px;
        top: -14px;
    }
}

.Program_Highlights ul > li:nth-child(1) {
    background-color: aliceblue;
}

.Program_Highlights ul > li:nth-child(2) {
    background-color: #f0fff1;
}

.Program_Highlights ul > li:nth-child(3) {
    background-color: #fffef0;
}

.Program_Highlights ul > li:nth-child(4) {
    background-color: #f6f0ff;
}

.Program_Highlights ul > li:nth-child(5) {
    background-color: #ecffef;
}

.Program_Highlights ul > li:nth-child(6) {
    background-color: #f5ffd7;
}

.Program_Highlights ul > li:nth-child(7) {
    background-color: #fff1fc;
}

.Program_Highlights ul > li:nth-child(8) {
    background-color: aliceblue;
}

/* ---------------------------------------------------- */

.first_CTA {
    background-color: #196313;
    padding: 50px;
}

.first_CTA > h3 {
    color: #faed3f;
    font-size: 1.5em;
    text-align: center;
}

.first_CTA > p {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.first_CTA .Highlight {
    background-color: #ffec47;
    color: #196313;
    font-weight: 700;
    padding: 2px 5px;
    /* border-radius: 30px; */
}

.first_CTA .button {
    text-decoration: none;
    max-width: fit-content;
    transition: transform 200ms;
    position: relative;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 2.25rem;
    background-color: white;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2fa133;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    margin: auto;
    margin-top: 30px;
    cursor: pointer;
}

.first_CTA .button .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.first_CTA .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.first_CTA .button:hover .icon {
    transform: translate(4px);
}

@media (max-width:500px) {
    .first_CTA {
        padding: 20px;
    }
}

/* ---------------------------------------------------- */
.Key_Benefits ul {
    list-style-type: none;
    padding: 0;
    padding-left: 30px;
}

.Key_Benefits ul > li {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid lightgray;
}

.Key_Benefits ul > li > img {
    max-width: 50px;
}

.Key_Benefits .columns > p {
    border-right: 1px solid lightgray;
    margin-bottom: 50px;
    padding-right: 20px;
}

@media (max-width:840px) {

    .Key_Benefits .columns ul {
        padding-left: 0;
    }

    .Key_Benefits .columns > p {
        border-left: 1px solid lightgray;
        border-right: none;
        margin-bottom: 50px;
        padding-left: 20px;
        padding-right: 0;
    }
}

/* ---------------------------------------------------- */
.Who_Should_Apply ul {
    padding-left: 20px;
}

.Who_Should_Apply ul > li {
    padding: 15px 0;
    list-style-type: none;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}

/* Customizing bullet points with pseudo-elements */
.Who_Should_Apply ul > li::before {
    content: "✔";
    background-color: #4CAF50;
    color: white;
    font-size: 1.2em;
    position: absolute;
    left: -50px;
    top: 20px;
    padding: 3px 8px;
    border-radius: 24px;
}

/* ---------------------------------------------------- */
.Eligibility ul {
    list-style-type: none;
}

.Eligibility ul > li {
    padding: 20px;
    border: 1px solid #e6e6e6;
}

.Eligibility b {
    font-size: 1.5rem;
    color: #0469fe;
}

/* ---------------------------------------------------- */
.Fees .column {
    list-style-type: none;
    padding: 20px 25px;
    border: 1px solid green;
}

.Fees .Highlight {
    background-color: #04a603;
    color: white;
    padding: 3px 6px;
}

.Fees .column > b:nth-child(1) {
    font-size: 1.5rem;
    color: #0469fe;
}

/* ---------------------------------------------------- */
.Scholarship .column {
    list-style-type: none;
    padding: 10px 20px 20px 20px;
    position: relative;
}

/* Customizing bullet points with pseudo-elements */
.Scholarship ul > li::before {
    content: "✔";
    background-color: #2196F3;
    color: white;
    font-size: 0.8em;
    position: absolute;
    left: -18px;
    top: 10px;
    padding: 2px 9px;
    border-radius: 24px;
}

/* ---------------------------------------------------- */
.LastDate {
    padding-top: 0;
    max-width: 1400px;
    margin: auto;
}

.LastDate h2 {
    background-color: #b90000 !important;
    border-radius: 50px;
    margin: 0 auto !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    max-width: 90%;
}

/* ---------------------------------------------------- */
.AboutGLF > h2 {
    display: flex;
    gap: 20px;
    padding: 0;
}

.AboutGLF > h2 > img {
    padding: 10px;
    background-color: #fff;
    max-height: 80px;
    border-radius: 8px;
}

/* ---------------------------------------------------- */
.KeyFocusAreas ul {
    list-style-type: decimal;
    /* font-size: 1.1rem; */
    padding-left: 35px;
}

.KeyFocusAreas ul > li {
    padding: 10px 0;
}

/* ---------------------------------------------------- */
footer {
    padding: 20px 10px;
    background-color: #04a603;
    margin: 0 !important;
}

footer > div:first-child {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

footer > div:nth-child(2) {
    height: 20px;
}


footer img {
    max-width: 25px;
    margin: 0 10px;
}

footer a {
    text-decoration: none;
    color: white;
}

footer .columns {
    margin: 0;
    padding: 0;
    color: white;
}

/* ---------------------------------------------------- */

.floating-Wa-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.floating-Wa-btn .wa {
    display: inline-block;
    width: 50px;
}

/* ---------------------------------------------------- */
.notice {
    font-size: 0.8rem;
    color: #bcbcbc;
    text-align: center;
    margin: auto;
    margin-top: 30px;
    max-width: 1400px;
    padding: 0 20px;
}

@media (max-width: 800px) {
    footer > div:nth-child(3) {
        padding-top: 10px;
        border-top: 1px solid #e9e9e9;
        color: #e9e9e9;
    }
}