button,
a {
    all: unset;
}

p,
li {
    font-weight: 300;
}

.star_bullet {
    list-style: none;
}

.star_bullet>li {
    position: relative;
    margin-bottom: 12px;
}

.caveat {
    font-size: 13px;
    font-style: italic;
}

.quote {
    font-size: 20px;
}

.star_bullet>li::after {
    content: "";
    background-image: url(/study-at-ihna/domestic/diploma-nursing-brisbane/assets/star.svg);
    background-size: contain;
    position: absolute;
    width: 25px;
    aspect-ratio: 1 / 1;
    top: 0;
    left: -30px;
}

.logo_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 30px;
}

.ihna_logo {
    max-height: 80px;
}

.sub_logos {
    max-height: 60px;
}

.sub_logos_container {
    display: flex;
    gap: 1rem;
}

@media (max-width:500px) {
    .ihna_logo {
        max-height: 50px;
    }

    .sub_logos_container .enquire_button {
        display: block !important;
    }

    .sub_logos {
        display: none;
    }

    header {
        position: fixed;
        width: 100%;
        z-index: 40;
        background: white;
    }

    #hero_section {
        padding-top: 90px;
    }
}

#hero_section {
    background: var(--primary);
}

.hero_grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.badge {
    color: var(--secondary) !important;
    width: fit-content;
    padding: 10px 20px;
    background: #ffb70033;
    border-radius: 500px;
    font-size: 14px;
}

.hero_content {
    grid-column: span 3 / span 3;
    display: grid;
    gap: 0.5rem;
    padding-block: 3rem;
    align-content: start;
    align-items: center;
}

.hero_content h1 {
    font-weight: bold;
    color: var(--secondary);
}

.hero_content p {
    color: white;
}

.hero_content .funding_text {
    font-size: 20px;
    color: var(--secondary);
}

.hero_image,
.hero_form {
    grid-column: span 2 / span 2;
}

.hero_image .animation_container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    height: 100%;
}

.hero_image .common {
    /* background: #00000027; */
    width: 100%;
    height: 100%;
    border-radius: 12px;
    animation-name: to_full;
    position: relative;
    overflow: clip;
}

.hero_image .common img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px !important;
}

.hero_image .common:nth-child(1) {
    /* background: red; */
    flex-basis: 100%;
    aspect-ratio: 9/9.3;
}

.hero_image .common:nth-child(2) {
    background: green;
    flex-basis: 25%;
    animation-delay: 1.5s;
}

.hero_image .common:nth-child(3) {
    flex-basis: 25%;
    background: blue;
    animation-delay: 3s;
}

.overview_content button {
    background: #ffb700;
    border: 1px solid #ffb700;
    color: white;
    border-radius: 400px;
    width: fit-content;
    padding-block: 20px;
    padding-inline: 30px;
    display: flex;
    gap: 0.5rem;
    height: fit-content;
    align-items: center;
    transition: background 0.15s, transform 0.15s, border 0.15s;

}


.hero_content button {
    background: #ffffff10;
    border: 1px solid white;
    color: white;
    border-radius: 400px;
    width: fit-content;
    padding-block: 20px;
    padding-inline: 30px;
    display: flex;
    gap: 0.5rem;
    height: fit-content;
    align-items: center;
    transition: background 0.15s, transform 0.15s, border 0.15s;
}

.hero_content button:hover {
    background: var(--secondary);
    transition: background 0.15s, transform 0.15s, border 0.15s;
    transform: scale(103%);
    border: 1px solid var(--secondary);
}

.hero_content button:hover p {
    color: black;
}

.hero_content button:hover path {
    fill: black;
}

.hero_content button p {
    margin-bottom: 0;
    font-size: 16px;
}

.overview_content button p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.hero_form form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}

.hero_form .form_heading span {
    font-size: 14px;
    display: block;
}

.hero_form .form_heading h4 {
    text-align: center;
    font-weight: 500;
    color: var(--primary);
}

.hero_form input,
.hero_form select {
    /* border: 1px solid var(--primary); */
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 63, 74, 0.10);
    background: #F6F6F6;
}

.hero_form .field_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.hero_form .field_grid .span_2 {
    grid-column: span 2 / span 2;
}

.hero_form p {
    color: var(--primary);
    font-size: 14px;
}

.hero_form button,
.hero_form input[type='submit'] {
    border-radius: 40px;
    background: #FFB700;
    padding: 15px 30px;
    width: fit-content;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: none;
    transition: transform 0.25s;
}

.hero_form button:hover,
.hero_form input[type='submit']:hover {
    transform: scale(103%);
    transition: transform 0.25s;
}

#quick_details_section {
    margin: 0;
    padding: 0;
}

.quick_details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick_details .detail_common {
    padding: 40px;
}

.quick_details .detail_1 {
    background: #E5ECED;
}

.quick_details .detail_2 {
    background: #CCD9DB;
}

.quick_details .detail_3 {
    background: #B2C5C9;
}

/* .quick_details .detail_4 {
    background: #d4dbdc;
} */

#quick_details_section .detail_container {
    display: flex;
    align-items: center;
    color: var(--primary);
    justify-content: center;
    height: 100%;
}

#quick_details_section .detail_container p {
    margin: 0;
}

#quick_details_section .detail_container .detail_heading {
    padding: 10px;
    border-right: 1px solid var(--primary);
    font-size: 13px;
}

#quick_details_section .detail_container .detail_content {
    padding: 10px;
    font-weight: 600;
    display: grid;
    gap: 5px;
}

.detail_content p {
    margin-bottom: 0;
}

.detail_content b {
    font-weight: 600;
}

#quick_details_section .detail_container .detail_content span {
    font-weight: normal;
    font-size: 14px;
    display: block;
}

@media (max-width: 992px) {
    #hero_section .hero_grid .hero_content {
        grid-column: span 7 / span 7;
    }

    #hero_section .hero_grid .hero_image {
        grid-column: span 4 / span 4;
    }

    #hero_section .hero_grid .hero_form {
        grid-column: span 3 / span 3;
    }
}

@media (max-width:650px) {
    #hero_section .hero_grid .hero_image {
        grid-column: span 7 / span 7;
        min-height: 400px;
    }

    #hero_section .hero_grid .hero_form {
        grid-column: span 7 / span 7;
    }

    #quick_details_section .detail_container {
        display: block;
    }

    #quick_details_section .detail_container .detail_heading {
        border: none;
        border-bottom: 1px solid var(--primary);
    }

    .quick_details {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .sub_logos.e4e {
        display: none;
    }
}

#highlights_section .container {
    /* text-align: center; */
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.28);
}

#highlights_section h2 {
    text-align: center;
}

#highlights_section .highlights_grid {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

#highlights_section .highlights_grid .highlight_item {
    /* max-width: 500px; */
    /* border: 1px solid rgba(0, 0, 0, 0.111); */
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 15px;
    display: grid;
    align-content: end;
    isolation: isolate;
    position: relative;
    overflow: clip;
}

.highlight_item_after::after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.601) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
}

.nurse_bg {
    background-image: url("/study-at-ihna/domestic/diploma-nursing-brisbane/assets/key_nurse.png");
    background-position: top center;
}

.facilities_bg {
    background-image: url("/study-at-ihna/domestic/diploma-nursing-brisbane/assets/key_room.png");
    background-position: top center;
}

/* #highlights_section .highlights_grid .highlight_item.card_align_bottom{
    align-content: end;
} */
#highlights_section .highlights_grid .highlight_item:nth-child(1) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

#highlights_section .highlights_grid .highlight_item:nth-child(2),
#highlights_section .highlights_grid .highlight_item:nth-child(6) {
    grid-column: span 2 / span 2;
    grid-row: span 1 / span 1;
}

#highlights_section .highlights_grid .highlight_item:nth-child(3),
#highlights_section .highlights_grid .highlight_item:nth-child(5) {
    grid-column: span 3 / span 3;
    grid-row: span 1 / span 1;
}

#highlights_section .highlights_grid .highlight_item:nth-child(4) {
    grid-column: span 1 / span 1;
    grid-row: span 2 / span 2;
}

#highlights_section .highlights_grid .highlight_item h3 {
    font-size: 18px;
    z-index: 2;
    /* color: white; */
}

#highlights_section .highlights_grid .highlight_item svg {
    width: 50px;
    z-index: 2;

}

#highlights_section .highlights_grid .highlight_item p {
    margin: 0;
    color: rgb(105, 105, 105);
    z-index: 2;
    /* color: white; */
}

.d-button {
    color: white;
    background-color: var(--primary);
    padding: 20px;
    border-radius: 10px;
    width: -webkit-fill-available;
}

.mobile_button_container {
    position: relative;
    width: 100%;
}

.icon_abs {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:1200px) {
    #highlights_section .highlights_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    #highlights_section .highlights_grid .highlight_item {
        grid-column: span 1 / span 1 !important;
        grid-row: span 1 / span 1 !important;
        padding-top: 100px;
        background-image: top center !important;
    }

    .key_awardees {
        object-position: top center !important;
    }
}

@media (max-width:768px) {
    #highlights_section .highlights_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
}

@media (max-width:450px) {
    #highlights_section .highlights_grid .mobile_full {
        grid-column: span 2 / span 2 !important;
    }
}

.tab_container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.tab_container .main.nav {
    grid-column: span 1 / span 1;
    background-color: var(--primary);
    border-radius: 20px;
    overflow: clip;
}

.tab_container .main.nav .nav-link {
    border-radius: 0;
    transition: padding 0.2s;
    padding-block: 1rem;
    font-weight: 200;
}

.tab_container .main.nav .nav-link[aria-selected="true"] {
    background: var(--secondary);
    padding-block: 1rem;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width:992px) {
    .tab_container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .tab_container .main.nav,
    .tab_container .tab-content {
        grid-column: span 1 / span 1;

    }
}

.enquiry_button_container {
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 10px;
}

.enquire_button {
    border-radius: 500px;
    width: 90%;
    text-align: center;
    padding-inline: 1rem;
    padding-block: 0.5rem;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    cursor: pointer;
}

a.enquire_button:hover {
    color: white;
}

a.enquire_button.top {
    background-color: var(--secondary);
    color: white;
    font-weight: 600;
}

a.enquire_button.top:hover {
    color: white;
    background-color: #dca006;
}

.tab_container .main.nav .nav-link[aria-selected="false"] {
    color: white;
}

.tab-content {
    grid-column: span 3 / span 3;
}

.fixed_menu_container .fixed_menu_content h2:not(.accordion *) {
    margin-bottom: 1rem;
}

.fixed_menu_content .fixed_menu_section {
    padding-bottom: 40px;
}

@media (max-width:992px) {
    .fixed_menu {
        display: none;
    }

    .fixed_menu_container .fixed_menu_content {
        grid-column: 1 / -1;
    }

    #enquiry {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 135px;
        scroll-margin-top: 135px;
    }

    #enq-form {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 135px;
        scroll-margin-top: 135px;
    }
}

#course_overview {
    border-bottom: 1px solid rgba(128, 128, 128, 0.287);
    margin-bottom: 50px;
}

#google_reviews {
    /* padding-top: 50px; */
}

#google_reviews .review_item {
    padding: 30px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.10);
    display: grid;
    gap: 1rem;
}

#google_reviews .owl-carousel .owl-stage-outer {
    padding-block: 20px;
}

#google_reviews .review_item .google_logo {
    width: 30px;
}

#google_reviews .review_item p {
    font-size: 15px;
    font-style: italic;
}

#google_reviews .review_item h3 {
    font-size: 15px;
    font-weight: 600;
}

#entry_requirements .nav {
    gap: 0.5rem;
}

#entry_requirements .nav-item button.nav-link {
    border: 1px solid var(--primary);
    font-size: 15px;
    color: var(--primary);
    border-radius: 10px;

}

#entry_requirements .nav-item button.nav-link:not(.active):hover {
    background: #fff5d6;
}

#entry_requirements .nav-item button.nav-link.active {
    background-color: var(--primary);
    color: white;
}

#entry_requirements .tab-content {
    border: 1px solid var(--primary);
    padding: 30px;
    border-radius: 12px;
}

@media (max-width:500px) {
    #entry_requirements .tab-content {
        padding: 15px;
    }
}

#job_opportunities {
    padding: 30px;
    border-radius: 12px;
    background: var(--primary);
}

#job_opportunities {
    color: white;
}

#job_opportunities .stats_group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

#job_opportunities p {
    margin: 0;
}

#job_opportunities .stats_group h3 {
    color: var(--secondary);
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid white;
}

#job_opportunities .opportunities_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 30px;
}

#job_opportunities .jobs_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

#job_opportunities .jobs_grid p {
    font-weight: 500;
    font-size: 14px;
}

#job_opportunities .jobs_grid .job {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width:600px) {

    #job_opportunities .opportunities_grid,
    #job_opportunities .stats_group,
    #job_opportunities .jobs_grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

#faq .accordion .accordion-header button {
    /* width: calc(100% - ( 1.25rem *2 )); */
    padding: 1rem 0rem;
}

#faq .accordion .accordion-header {
    font-weight: normal;
}

#placements .placements_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

#placements .placements_grid .happy_students {
    background-image: url("/study-at-ihna/domestic/diploma-nursing-brisbane/assets/placement-students.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    position: relative;
    border-radius: 20px;
    isolation: isolate;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.placement_textbox {
    width: 50%;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.456);
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
}

/* .logos_marque_container{
    background: white;
    padding: 10px;
    display: flex;
    overflow: clip;
    width: 100%;
} */
/* .marquee{
    width: 100%;
 } */
.key_awardees {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeCycle 9s infinite;
}

@keyframes fadeCycle {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.logo-carousel .item img {
    height: 50px;
    object-fit: contain;
}

.logo_carousel_container {
    background: white;
    padding: 10px;
    border-radius: 12px;
}

.stats {
    margin-top: 50px;
}

.stats h3 {
    font-weight: bold;
    color: var(--primary);
}

.stats_grid {
    display: flex;
    gap: 1rem;
    align-items: start;

}

.states_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.state_item {
    border-radius: 12px;
    border: 1px solid var(--primary);
    padding: 12px;
}

.state_symbol {
    background: #DBF9FF;
    padding: 12px;
    border-radius: 12px;
    display: grid;
    place-content: center;
}

.state_item h4 {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 14px;
    color: var(--primary);
}

.state_item p {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: bold;
    color: var(--primary);
}

@media (max-width:1400px) {
    .state_item p {
        font-size: 30px !important;
    }
}

.state_item svg {
    height: 80px;
}

.average_time {
    background: #ffb70014;
    border-radius: 12px;
    border: 1px solid var(--secondary);
    padding: 20px;
}

.average_time p {
    font-weight: bold;
    text-align: center;
    color: var(--secondary);
}

.average_image_grid {
    display: grid;
    justify-content: center;
    gap: 1rem;
}


@media (max-width:767px) {
    .mob-footer-section {
        font-size: 1rem !important;
        margin-top: 1rem !important;
    }

}

@media (max-width:1200px) {
    .states_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

    }
}

@media (max-width:768px) {
    .stats_grid {
        flex-wrap: wrap;

    }
}

@media (max-width:500px) {
    .states_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .state_item p {
        font-size: 30px;
    }
}

#placements .partners_logo_box {
    /* display: grid; */
    gap: 1rem;
}

#placements .placements_grid .happy_students:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    inset: 0;
}

#placements .placements_grid .placement_hours {
    background: #ffb70015;
    border: 1px solid #ffb7006f;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    margin-bottom: 1rem;
}

#placements .placements_grid .partners_box {
    padding: 20px;
    /* width: 100%; */
    /* display: grid; */
    gap: 1rem;
    border-radius: 20px;
    background: var(--primary);
    color: white;
}

#placements .placements_grid .placement_hours .hours {
    font-size: 60px;
    font-weight: bolder;
    color: var(--secondary);
}


@media (max-width:768px) {
    #placements .placements_grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* 
#placements .nurse_image{
    border-radius: 12px;
}
#placements .highlighted_hours{
    font-size: 40px;
    font-weight: bold;
    color: var(--secondary);
}
#placements .placement_image_containers{
    max-width: 500px;
    margin-top: 30px;
}
@media (max-width:768px) {
    #placements .placements_grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        margin-bottom: 1rem;
    }
} */
.quote_before_footer {}

.quote_before_footer h2 {
    text-align: center;
}

footer {
    padding-block: 40px;
    background: var(--primary);
}

.footer_logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

}

.footer_logos .ihna_logos {
    display: flex;
    gap: 1rem;
}

.footer_logos .accreditation_box {
    background: white;
    display: flex;
    padding: 30px;
    border-radius: 12px;
    align-items: center;
    gap: 1rem;
}



footer h2 {
    color: white;
}

.horizontal_divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.359);
}

footer .legal_entity {
    text-align: center;
    margin-top: 20px;
    max-width: 900px;
    color: white;
    font-size: 13px;
    margin-inline: auto;
}

@media (max-width:992px) {
    .footer_logos {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .tab_container {
        padding-bottom: 0rem;
        border-bottom: none;
    }

    .tab_container .tab-content {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    section.tab-section,
    section.bottom-text {
        padding-block: 1rem;
    }

    section.bottom-text {
        padding-top: 0;
    }
}

@media (max-width:500px) {
    .footer_logos .ihna_logos svg {
        width: 150px;
    }

    .footer_logos .accreditation_box {
        flex-wrap: wrap;
    }

    .footer_logos .accreditation_box img,
    .footer_logos .accreditation_box p {
        flex-basis: 100%;
        max-width: 100px;
    }
}

.mb-n2 {
    margin-bottom: -2rem;
}

.sm-text {
    font-size: 14px !important;
}

.banner-ul {
    padding-left: 1rem;
}

/* New styles for adding AHPRA Recognised countries list */
.country-wrapper {
    position: relative;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 .375rem .375rem;
    display: none;
}

.country-dropdown.show {
    display: block;
}

.country-optgroup {
    font-weight: bold;
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    margin: 0;
}

.country-option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
}

.country-option:hover {
    background: #e9ecef;
}

.country-option:last-child {
    border-bottom: none;
}

.additional-select {
    display: none;
    margin-top: 10px;
}

.view-list-link {
    display: block;
    text-align: left;
    margin-top: 5px;
}

/* New styles for adding AHPRA Recognised countries list */
/* New styles for form wizard */
/* Wizard Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-next,
.btn-prev {
    background-color: #039892;
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    margin-top: 10px;
}

.btn-prev {
    background-color: #ccc;
    color: #000;
}

.btn-next:hover,
.btn-prev:hover {
    opacity: 0.9;
}

/* Conditional fields */
.hidden {
    display: none;
}

form label {
    font-size: 14px;
}

@media (max-width: 768px) {
    #hero_section {
        padding-top: 160px;
    }
}

@media (max-width: 500px) {
    #hero_section {
        padding-top: 160px;
    }
}

/* New styles for UI Change */
.hero_image .common:nth-child(1) {
    aspect-ratio: 9/12;
}

.yellow-bg {
    background-color: #ffb700;
}

.w-fit {
    width: fit-content;
}

.checklist-ul {
    list-style: none;
    padding-left: 0;
    color: #fff;
}

.checklist-ul li {
    background-color: #0c5b69;
    margin-bottom: 10px;
    padding: 1px 6px;
    border-radius: 6px;
}

.eligibility-checklist {
    border: 1px solid #fff2;
    padding: 1rem;
    border-radius: 12px;
}

.mt-n2 {
    margin-top: -1.75rem;
}

.tick-text {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: var(--primary);
    padding-left: 5px;
    padding-right: 5px;
}

.checklist-icon {
    width: 20px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    #highlights_section .highlights_grid .highlight_item {
        padding-top: 20px;
    }
}

/* new hero-section */

.nurse-hero-wrap {
    /* background: url("https://www.ihna.edu.au/study-at-ihna/domestic/diploma-nursing-melbourne/img/don-mel-banner.webp") no-repeat center center; */
    background-size: cover;
    padding: 60px 0;
    color: #ffffff;
    /* height: 800px; */
}


.nurse-hero-wrap .nurse-badge-pill {
    background-color: #2d6b4f;
    color: #ffc107;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
}

.nurse-hero-wrap .form-control:focus,
.nurse-hero-wrap .form-select:focus {
    background-color: #e9ecef !important;
    /* keep grey background */
    border-color: #000000 !important;
    /* black border on click */
    box-shadow: none !important;
    /* remove blue glow */
    outline: none !important;
    /* remove default outline */
}


.nurse-hero-wrap .nurse-title-main {
    color: #ffc107;
    font-weight: 700;
    margin-top: 15px;
}

.nurse-hero-wrap .nurse-desc-text {
    margin-top: 15px;
    line-height: 1.6;
}

.nurse-hero-wrap .nurse-highlight-chip {
    background-color: #ffc107;
    color: #000000;
    display: inline-block;
    padding: 6px 12px;
    font-weight: 500;
    margin: 15px 0;
}

.nurse-hero-wrap .nurse-evening-note {
    color: #ffc107;
    font-weight: 600;
    width: fit-content;

}

.nurse-hero-wrap .nurse-form-card {
    background-color: white;
    border-radius: 14px;
    padding: 25px;
    max-width: 420px;
    width: 100%;
}

.nurse-hero-wrap .nurse-form-heading {
    text-align: center;
    color: #0b4f53;
    margin-bottom: 20px;
    font-weight: 600;
}

.nurse-hero-wrap .nurse-next-btn {
    background-color: #ffb400;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 10px 32px;
    font-weight: 600;
}

.nurse-hero-wrap .nurse-next-btn:hover {
    background-color: #e0a100;
    color: #ffffff;
}

.nurse-hero-wrap .form-control,
.nurse-hero-wrap .form-select {
    background-color: #e9ecef;
    /* light grey */
    border: 1px solid #ced4da;
    color: #495057;
}

.nurse-hero-wrap .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.nurse-hero-wrap .form-control:focus,
.nurse-hero-wrap .form-select:focus {
    background-color: #e9ecef;
    border-color: #86b7fe;
    /* optional focus border */
    box-shadow: none;
}

/* @media (max-width: 772px) {
        .var-height{
            height: auto !important;
        }
        .container-mob{
            max-width: 444px !important;
        }
    } */
@media (max-width: 500px) {
    .container-mob {
        margin-top: 7.3rem !important;
        margin-bottom: 2rem !important;
    }

    .nurse-form-card {
        height: auto;
        padding: 15px;
    }

    .ahpra-tooltip-content {
        position: static;
        display: block !important;
        margin-top: 10px;
        max-width: 100%;
    }

    .field_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 759px) {
    .var-height {
        background: url("https://www.ihna.edu.au/study-at-ihna/domestic/diploma-nursing-melbourne/img/mel-ban-mob.webp") no-repeat center center !important;
        background-size: cover !important;
    }
}


/* floating widget css */
:root {
    --brand-teal: #009791;
    --brand-orange: #f7941d;
    --white: #fff;
}

.flex-widget-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.flex-widget-content {
    display: flex;
    align-items: center;
    background: var(--brand-teal);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--brand-orange);
    position: relative;
    min-width: 210px;
    transition: transform 0.3s ease;
}

.flex-widget-content:hover {
    transform: translateY(-5px);
}

.flex-icon-wrapper {
    position: relative;
    margin-right: 6px;
    color: var(--brand-teal);
    font-size: 20px;
}

/* Modern Pulse Effect */
.flex-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    top: 11px;
    right: 8px;
    border: 2px solid var(--brand-teal);
}

.flex-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.flex-text-content {
    display: flex;
    flex-direction: column;
}

.flex-label {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.2;
}

.flex-subtext {
    font-size: 0.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flex-close-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.flex-close-btn:hover {
    color: var(--brand-orange);
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .flex-widget-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .flex-widget-content {
        width: fit-content;
    }
}

/* Utility class for hiding elements */
.hidden {
    display: none !important;
}

/* Checkbox label color */
.form-check-label {
    color: black !important;
}

/* Tooltip icon styling */
.tooltip-icon {
    cursor: help;
    margin-left: 5px;
    font-weight: bold;
    position: relative;
}

.tooltip-icon:hover::after {
    content: attr(title);
    position: absolute;
    background-color: #333;
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    white-space: normal;
    word-wrap: break-word;
    max-width: 350px;
    line-height: 1.5;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
}

/* Custom AHPRA Tooltip */
/* .ahpra-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.ahpra-tooltip-icon {
    margin-left: 5px;
    font-weight: bold;
    cursor: help;
}

.ahpra-tooltip-content {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 264px !important;
    line-height: 1.6;
}

.ahpra-tooltip:hover .ahpra-tooltip-content {
    display: block;
}

.ahpra-tooltip-content h3 {
    margin: 0 0 15px 0;
    color: #003f4a;
    font-size: 16px;
    font-weight: 600;
}

.ahpra-tooltip-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.ahpra-tooltip-content li {
    padding-left: 25px;
    position: relative;
    font-weight: 500;
    color: #003f4a;
}

.ahpra-tooltip-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #ffb700;
    font-size: 18px;
}

.ahpra-tooltip-content p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.ahpra-tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
} */



/* top 5 css */
:root {
    --ihna-teal: #007e7a;
    --ihna-orange: #ff8c66;
    /* Approximate coral/orange from image */
    --ihna-bg-light: #f8f9fa;
}

.text-primary-custom {
    color: var(--ihna-teal) !important;
}

.bg-primary-custom {
    background-color: var(--ihna-teal) !important;
}

.text-accent {
    color: var(--ihna-orange) !important;
}

.section-header h2 {
    color: var(--ihna-teal);
    font-weight: 700;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #fff0eb;
    /* Very light orange background */
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.icon-box i {
    font-size: 1.3rem;
}

/* Styling for the last highlight card */
.bg-primary-custom.card {
    color: white;
}

.bg-primary-custom .icon-box {
    background-color: rgba(255, 255, 255, 0.15);
    /* Transparent white for teal bg */
    color: white !important;
}

.bg-primary-custom .card-text {
    color: rgba(255, 255, 255, 0.9) !important;

}

.card-text {
    font-size: 1rem !important;
}

.text-warning {
    color: #ffc107 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.fa-trophy {
    margin-right: 4px;
}



/* Banner highlight points */
.offer-banner {
    width: fit-content;
    max-width: 100%; /* full width of column */
    padding: 15px 20px;
    background: linear-gradient(145deg, #fffae6, #fff1cc);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid #ffd700;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.25);
    transform: rotate(25deg);
    pointer-events: none;
}

.offer-content {
    display: flex;
    align-items: center;
}

.offer-icon {
    font-size: 35px; /* smaller icon */
    color: #ff8c00;
    margin-right: 15px;
    flex-shrink: 0;
}

.offer-text {
    flex: 1;
}

.highlight {
    font-size: 18px; /* smaller font */
    font-weight: 700;
    color: #d35400;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

.price {
    font-size: 16px;
    color: #222;
    margin: 0 0 4px 0;
}

.price .previous {
    text-decoration: line-through;
    color: #888;
    margin-left: 6px;
    font-size: 14px;
}

.validity {
    font-size: 14px;
    color: #555;
}

.offer-banner:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}