/* Tablet */

@media (max-width:991px) {

    .mcn-campus-section {
        padding: 0px 0;
    }

    .mcn-campus-wrapper {
        flex-direction: column;
    }

    .mcn-campus-large {
        width: 100%;
    }

    .mcn-campus-large .rs-campus-life-bg-thumb {
        height: 420px;
    }

    .mcn-campus-thumbs {
        width: 100%;
        margin-top: 20px;
    }

    .mcn-thumb-btn img {
        height: 90px;
    }

}

/* Mobile */

@media (max-width:767px) {

    .mcn-campus-section {
        padding: 0px 0;
    }

    .mcn-campus-heading {
        margin-bottom: 30px;
    }

    .mcn-campus-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .mcn-campus-large .rs-campus-life-bg-thumb {
        height: 280px;
    }

    .mcn-campus-thumbs {
        width: 100%;
        margin-top: 15px;
    }

    .mcn-thumb-btn img {
        height: 70px;
        border-radius: 10px;
    }

}

/* Small Mobile */

@media (max-width:575px) {

    .mcn-campus-section {
        padding: 0px 0;
    }

    .mcn-campus-heading h2 {
        font-size: 26px;
    }

    .mcn-campus-large .rs-campus-life-bg-thumb {
        height: 220px;
    }

    .mcn-thumb-btn img {
        height: 60px;
    }

}

/*====================================
    Maria College Footer Contact
=====================================*/

.mcn-footer-contact-wrap {
    margin-top: 25px;
}

.mcn-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    transition: all .4s ease;
}

.mcn-footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f4b400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.mcn-footer-contact-icon i {
    font-size: 16px;
    color: #fff;
}

.mcn-footer-contact-content {
    flex: 1;
    display: flex;
}

.mcn-footer-contact-content p {
    margin: 0;
    color: #ffffff;
    line-height: 30px;
    font-size: 16px;
}

.mcn-footer-contact-content a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    line-height: 30px;
    transition: all .3s ease;
}

.mcn-footer-contact-content a:hover {
    color: #f4b400;
    padding-left: 8px;
}

.mcn-footer-contact-item:hover {
    transform: translateX(8px);
}

.mcn-footer-contact-item:hover .mcn-footer-contact-icon {
    background: #fff;
    transform: rotate(360deg);
}

.mcn-footer-contact-item:hover .mcn-footer-contact-icon i {
    color: #08254d;
}

/* Common Button Style */

.mcahs-admission-btn {
    margin-bottom: 12px;
}

.mcahs-admission-btn a {
    display: block;
    padding: 8px 10px;
    border-radius: 12px;
    color: #fff !important;
    font-size: 13px !important;
    ;
    font-weight: 700 !important;
    ;
    text-decoration: none;
    transition: .4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.mcahs-admission-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .18);
    transition: .45s;
}

.mcahs-admission-btn a:hover::before {
    left: 100%;
}

.mcahs-admission-btn a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
}

/* Individual Colors */

.btn-overview a {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
}

.btn-eligibility a {
    background: linear-gradient(135deg, #00897B, #26A69A);
}

.btn-process a {
    background: linear-gradient(135deg, #EF6C00, #FFA726);
}

.btn-fee a {
    background: linear-gradient(135deg, #6A1B9A, #AB47BC);
}

.btn-scholarship a {
    background: linear-gradient(135deg, #2E7D32, #66BB6A);
}

/* Hover */

.btn-overview a:hover {
    background: linear-gradient(135deg, #0D47A1, #1E88E5);
}

.btn-eligibility a:hover {
    background: linear-gradient(135deg, #00695C, #00897B);
}

.btn-process a:hover {
    background: linear-gradient(135deg, #E65100, #FB8C00);
}

.btn-fee a:hover {
    background: linear-gradient(135deg, #4A148C, #8E24AA);
}

.btn-scholarship a:hover {
    background: linear-gradient(135deg, #1B5E20, #43A047);
}

/*====================================
 Sticky Apply Button
=====================================*/

.mcahs-sticky-apply {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* Button */

.mcahs-sticky-apply .rs-btn {
    background: linear-gradient(135deg, #00228F, #0048d8);
    color: #fff;
    border-radius: 50px;
    padding: 16px 28px;
    box-shadow: 0 12px 35px rgba(0, 34, 143, .35);
    border: 3px solid #FFC107;
    transition: .35s;
}

/* Hover */

.mcahs-sticky-apply .rs-btn:hover {
    background: #FFC107;
    color: #00228F;
    transform: scale(1.06);
    box-shadow: 0 18px 40px rgba(255, 193, 7, .45);
}

/* Icon Rotate */

.mcahs-sticky-apply .icon-box {
    animation: mcahsRotate 3s linear infinite;
}

.mcahs-sticky-apply .icon-box svg {
    fill: #fff;
}

.mcahs-sticky-apply .rs-btn:hover .icon-box svg {
    fill: #00228F;
}

/* Floating Animation */

@keyframes mcahsFloat {

    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-58%);
    }

    100% {
        transform: translateY(-50%);
    }

}

/* Rotate Animation */

@keyframes mcahsRotate {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

/* Mobile */

@media(max-width:768px) {

    .mcahs-sticky-apply {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .mcahs-sticky-apply .rs-btn {
        padding: 14px 22px;
        font-size: 14px;
    }

}

/* Sticky Button */
.mcahs-sticky-btn {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* Up & Down Animation */
.mcahs-sticky-btn .rs-btn {
    animation: mcahsMoveTopBottom 2s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0, 34, 143, .30);
}

@keyframes mcahsMoveTopBottom {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

.float {
    position: fixed;
    top: calc(40%);
    right: 45px;
    z-index: 20000;
    white-space: nowrap;
    height: 20px;
    font-weight: 700;
    font-size: 18px;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
}

.rs-course-info {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.rs-course-info li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.rs-course-info li strong {
    color: #051435;
    font-weight: 600;
}

/* Facilities Gallery */
.gallery-white-card {
    margin-bottom: 30px;
}

.gallery-white-card .rs-gallery-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e9eef5;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: all .4s ease;
}

.gallery-white-card .rs-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.gallery-white-card .rs-gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-white-card .rs-gallery-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .5s ease;
}

.gallery-white-card:hover .rs-gallery-thumb img {
    transform: scale(1.08);
}

.gallery-white-card .rs-gallery-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: .35s;
}

.gallery-white-card:hover .rs-gallery-btn {
    opacity: 1;
}

.gallery-white-card .rs-btn-circle {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00272e;
    border-radius: 50%;
    font-size: 22px;
    transition: .3s;
}

.gallery-white-card .rs-btn-circle:hover {
    background: #0b5ed7;
    color: #fff;
    transition: .3s;
}

.amcn-course-section {
    background: #f8fbff;
}

.amcn-section-title span {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 22px;
}

.amcn-section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 15px;
}

.amcn-section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.amcn-course-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.amcn-course-image img {
    width: 100%;
    display: block;
    transition: .5s;
    height: 870px;
    object-fit: cover;
}

.amcn-course-image:hover img {
    transform: scale(1.05);
}

.amcn-course-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.amcn-course-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.amcn-course-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 20px;
}

.amcn-course-duration {
    display: inline-block;
    background: #edf5ff;
    color: #0d6efd;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
}

.amcn-course-duration i {
    margin-right: 8px;
}

.amcn-course-card h5 {
    color: #08254d;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.amcn-course-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.amcn-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-course-list li {
    padding: 10px 0;
    color: #555;
    font-weight: 500;
}

.amcn-course-list li:last-child {
    padding-bottom: 0;
}

.amcn-course-list li i {
    color: #0d6efd;
    margin-right: 10px;
}

@media(max-width:991px) {

    .amcn-course-card {
        margin-top: 30px;
        padding: 30px;
    }

    .amcn-section-title h2 {
        font-size: 32px;
    }

    .amcn-course-card h3 {
        font-size: 30px;
    }

}

.amcn-eligibility-section {
    background: #ffffff;
}

.amcn-eligibility-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-eligibility-image img {
    width: 100%;
    display: block;
    transition: .5s;
    height: 530px;
    object-fit: cover;
}

.amcn-eligibility-image:hover img {
    transform: scale(1.05);
}

.amcn-eligibility-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.amcn-eligibility-card h3 {
    color: #08254d;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.amcn-eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-eligibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.amcn-eligibility-list li i {
    color: #0d6efd;
    font-size: 20px;
    margin-top: 4px;
    min-width: 20px;
}

.amcn-career-section {
    background: #f8fbff;
}

.amcn-career-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-career-card h3 {
    color: #08254d;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.amcn-career-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-career-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-weight: 500;
}

.amcn-career-list li i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0d6efd;
    margin-right: 12px;
    font-size: 15px;
}

.amcn-career-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 35px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-career-highlight i {
    color: #0d6efd;
    font-size: 34px;
    margin-top: 5px;
}

.amcn-career-highlight p {
    margin: 0;
}

.amcn-career-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.amcn-career-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-career-image:hover img {
    transform: scale(1.05);
}

@media(max-width:991px) {

    .amcn-career-card {
        padding: 30px;
    }

    .amcn-career-card h3 {
        font-size: 28px;
    }

}

@media (max-width:991px) {

    .amcn-eligibility-card {
        margin-top: 30px;
        padding: 30px;
    }

    .amcn-eligibility-card h3 {
        font-size: 28px;
    }

}

.amcn-higher-education {
    background: #ffffff;
}

.amcn-he-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-he-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-he-image:hover img {
    transform: scale(1.05);
}

.amcn-he-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-he-card h3 {
    color: #08254d;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.amcn-he-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-he-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-he-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 500;
    color: #555;
}

.amcn-he-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.amcn-he-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-he-highlight i {
    font-size: 36px;
    color: #0d6efd;
    flex-shrink: 0;
}

.amcn-he-highlight p {
    margin: 0;
}

@media (max-width:991px) {

    .amcn-he-card {
        padding: 30px;
        margin-top: 30px;
    }

    .amcn-he-card h3 {
        font-size: 28px;
    }

}

.amcn-documents-section {
    background: #ffffff;
}

.amcn-documents-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-documents-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-documents-image:hover img {
    transform: scale(1.05);
}

.amcn-documents-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-documents-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 20px;
}

.amcn-documents-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-documents-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #555;
    font-weight: 500;
}

.amcn-documents-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.amcn-documents-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-documents-note i {
    font-size: 34px;
    color: #0d6efd;
    flex-shrink: 0;
}

.amcn-documents-note p {
    margin: 0;
}

@media (max-width:991px) {

    .amcn-documents-card {
        padding: 30px;
        margin-top: 30px;
    }

    .amcn-documents-card h3 {
        font-size: 28px;
    }

}

.amcn-fee-section {
    background: #f8fbff;
}

.amcn-fee-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-fee-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 20px;
}

.amcn-fee-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-fee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-fee-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #555;
    font-weight: 500;
}

.amcn-fee-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.amcn-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-fee-note i {
    font-size: 34px;
    color: #0d6efd;
    flex-shrink: 0;
}

.amcn-fee-note p {
    margin: 0;
}

.amcn-fee-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-fee-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-fee-image:hover img {
    transform: scale(1.05);
}

@media (max-width:991px) {

    .amcn-fee-card {
        padding: 30px;
    }

    .amcn-fee-card h3 {
        font-size: 28px;
    }

}

.amcn-approval-section {
    background: #f8fbff;
}

.amcn-approval-card {
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.col-lg-6:nth-child(1) .amcn-approval-card {
    background: #EDF7FF;
    border: 4px solid #0D6EFD;
    /* Blue */
}

.col-lg-6:nth-child(2) .amcn-approval-card {
    background: #F1FAEE;
    border: 4px solid #28A745;
    /* Green */
}

.col-lg-6:nth-child(3) .amcn-approval-card {
    background: #FFF7E6;
    border: 4px solid #F59E0B;
    /* Orange */
}

.col-lg-6:nth-child(4) .amcn-approval-card {
    background: #FFF0F5;
    border: 4px solid #E91E63;
    /* Pink */
}

.col-lg-6:nth-child(5) .amcn-approval-card {
    background: #F4F0FF;
    border: 4px solid #7C3AED;
    /* Purple */
}

.col-lg-6:nth-child(6) .amcn-approval-card {
    background: #EEF8F6;
    border: 4px solid #14B8A6;
    /* Teal */
}

.amcn-approval-card:hover {
    transform: translateY(-8px);
    border-color: #0d6efd;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.amcn-approval-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0d6efd;
    font-size: 34px;
    margin-bottom: 20px;
}

.amcn-approval-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 15px;
}

.amcn-approval-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width:991px) {

    .amcn-approval-card {
        padding: 30px;
    }

    .amcn-approval-card h4 {
        font-size: 22px;
    }

}

.amcn-clinical-section {
    background: #ffffff;
}

.amcn-clinical-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-clinical-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-clinical-image:hover img {
    transform: scale(1.05);
}

.amcn-clinical-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.amcn-clinical-card h2 {
    font-size: 38px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 20px;
}

.amcn-clinical-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-clinical-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-clinical-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #555;
    font-weight: 500;
}

.amcn-clinical-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.amcn-clinical-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-clinical-highlight i {
    font-size: 36px;
    color: #0d6efd;
    flex-shrink: 0;
}

.amcn-clinical-highlight p {
    margin: 0;
}

@media (max-width:991px) {

    .amcn-clinical-card {
        margin-top: 30px;
        padding: 30px;
    }

    .amcn-clinical-card h2 {
        font-size: 30px;
    }

}

.amcn-internship-section {
    background: #f8fbff;
}

.amcn-internship-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-internship-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-internship-image:hover img {
    transform: scale(1.05);
}

.amcn-internship-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-internship-card h2 {
    font-size: 38px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 20px;
}

.amcn-internship-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-internship-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-internship-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #555;
    font-weight: 500;
}

.amcn-internship-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.amcn-internship-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-internship-highlight i {
    font-size: 36px;
    color: #0d6efd;
    flex-shrink: 0;
}

.amcn-internship-highlight p {
    margin: 0;
}

@media(max-width:991px) {

    .amcn-internship-card {
        padding: 30px;
    }

    .amcn-internship-card h2 {
        font-size: 30px;
    }

}

.amcn-curriculum-section {
    background: #ffffff;
}

.amcn-curriculum-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.amcn-curriculum-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.amcn-curriculum-image:hover img {
    transform: scale(1.05);
}

.amcn-curriculum-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.amcn-curriculum-card h2 {
    font-size: 38px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 20px;
}

.amcn-curriculum-card p {
    color: #666;
    line-height: 1.9;
}

.amcn-curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amcn-curriculum-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #555;
    font-weight: 500;
}

.amcn-curriculum-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.amcn-curriculum-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #edf5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 12px;
}

.amcn-curriculum-highlight i {
    font-size: 36px;
    color: #0d6efd;
    flex-shrink: 0;
}

.amcn-curriculum-highlight p {
    margin: 0;
}

@media(max-width:991px) {

    .amcn-curriculum-card {
        margin-top: 30px;
        padding: 30px;
    }

    .amcn-curriculum-card h2 {
        font-size: 30px;
    }

}

.amcn-about-section {
    background: #f7fbff;
    position: relative;
    overflow: hidden;
}

.amcn-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.amcn-about-image img {
    width: 100%;
    display: block;
    transition: .6s;
}

.amcn-about-image:hover img {
    transform: scale(1.08);
}

.amcn-about-experience {
    position: absolute;
    left: 35px;
    bottom: 35px;
    background: #0d6efd;
    color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(13, 110, 253, .35);
}

.amcn-about-experience h3 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 5px;
    font-weight: 700;
}

.amcn-about-experience span {
    font-size: 16px;
}

.amcn-subtitle {
    display: inline-block;
    color: #fdc72f;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.amcn-about-content h2 {
    font-size: 36px;
    color: #08254d;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.amcn-about-content p {
    color: #666;
    line-height: 2;
    margin-bottom: 18px;
}

.amcn-about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: #fff;
    border-radius: 15px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.amcn-about-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.amcn-about-feature i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #edf5ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.amcn-about-feature h5 {
    color: #08254d;
    margin-bottom: 8px;
    font-weight: 700;
}

.amcn-about-feature p {
    margin: 0;
    line-height: 1.7;
}

.amcn-history-section {
    background: #ffffff;
}

.amcn-history-card {
    max-width: 1310px;
    margin: auto;
    background-color: var(--rs-theme-cyan);
    background-image: url(../images/bg/bg1.png);
    background-size: cover;
    background-position: center;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    text-align: center;
}

.amcn-history-card h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.amcn-history-card p {
    color: #ffffff;
    line-height: 2;
    margin-bottom: 18px;
}

@media(max-width:991px) {

    .amcn-about-content {
        margin-top: 50px;
    }

    .amcn-about-content h2 {
        font-size: 34px;
    }

    .amcn-history-card {
        padding: 35px;
    }

    .amcn-history-card h2 {
        font-size: 30px;
    }

    .amcn-about-experience {
        width: 120px;
        height: 120px;
    }

    .amcn-about-experience h3 {
        font-size: 36px;
    }

}

/*=========================================
    Luxury Maria Group Section
=========================================*/

.maria-group-section {
    position: relative;

    background:
        radial-gradient(circle at top right, #eef6ff 0%, transparent 35%),
        radial-gradient(circle at bottom left, #f8fbff 0%, transparent 35%),
        #f7f9fc;
    overflow: hidden;
}

.maria-group-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.maria-group-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, .08);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
}

.maria-group-image {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, .18),
        0 8px 30px rgba(13, 110, 253, .08);
}

.maria-group-image img {
    width: 100%;
    display: block;
    transition: 1s;
}

.maria-group-image:hover img {
    transform: scale(1.08);
}

.maria-group-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 37, 77, .45),
            transparent 45%);
}

/* Floating Badge */

.maria-floating-item {

    width: 165px;
    height: 165px;
    position: absolute;
    left: 35px;
    bottom: 35px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(14px);

    border: 2px solid rgba(255, 255, 255, .35);

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .25);

}

.maria-floating-item h2 {

    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;

}

.maria-floating-item span {

    font-size: 15px;
    letter-spacing: 1px;

}

/* Subtitle */

.maria-subtitle {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #0d6efd;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.maria-subtitle::before {

    content: "";

    width: 45px;
    height: 3px;
    border-radius: 10px;
    background: #0d6efd;

}

/* Heading */

.maria-group-content h2 {

    font-size: 52px;
    line-height: 1.25;

    color: #08254d;

    font-weight: 800;

    margin-bottom: 25px;

}

.maria-group-content p {

    color: #666;
    line-height: 2;
    font-size: 16px;
}

/* Luxury Info Box */

.maria-highlight-box {

    margin-top: 40px;

    display: flex;

    gap: 20px;

    padding: 30px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .55);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .08);

}

.maria-highlight-box:hover {

    transform: translateY(-6px);

    transition: .35s;

}

.maria-highlight-box i {

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: linear-gradient(135deg, #0d6efd, #2d8cff);

    color: #fff;

    font-size: 34px;

    flex-shrink: 0;

}

.maria-highlight-box h5 {

    color: #08254d;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 10px;

}

.maria-highlight-box p {

    margin: 0;

}

/* Luxury Counter Cards */

.maria-counter {

    position: relative;

    margin-top: 35px;

    padding: 35px;

    border-radius: 24px;

    background-color: var(--rs-theme-cyan);
    background-image: url(../images/bg/bg1.png);
    background-size: cover;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .08);

    transition: .4s;

}

.maria-counter::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg, #0d6efd, #ffc107);

}

.maria-counter:hover {

    transform: translateY(-10px);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .14);

}

.maria-counter i {

    width: 75px;
    height: 75px;

    margin: auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ff;

    color: #0d6efd;

    font-size: 34px;

    margin-bottom: 18px;

}

.maria-counter h3 {

    color: #fdc72f;

    font-size: 46px;

    font-weight: 800;

    margin-bottom: 8px;

}

.maria-counter span {

    color: #ffffff;

    font-size: 15px;

}

/*=====================================
    Maria Trust Premium Design
======================================*/

.metrust-section {

    background:
        radial-gradient(circle at top right, #eef5ff 0%, transparent 35%),
        radial-gradient(circle at bottom left, #fff9ea 0%, transparent 35%),
        #f7f9fc;

    position: relative;
    overflow: hidden;

}

.metrust-section::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: rgba(13, 110, 253, .04);

    top: -260px;
    right: -180px;

}

.metrust-wrapper {

    background: rgba(255, 255, 255, .78);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .45);

    border-radius: 35px;

    padding: 40px 50px;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .10);

}

.metrust-image {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

}

.metrust-image img {

    width: 100%;
    display: block;

    transition: 1s;

}

.metrust-image:hover img {

    transform: scale(1.08);

}

.metrust-image::after {

    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(8, 37, 77, .35),
            transparent 50%);

}

/* Floating Badge */

.metrust-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: #ffffff;

    border-radius: 50px;

    padding: 14px 24px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.metrust-badge i {

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d6efd;

    color: #fff;

    border-radius: 50%;

    font-size: 22px;

}

.metrust-badge span {

    font-weight: 700;

    color: #08254d;

}

/* Content */

.metrust-subtitle {

    display: inline-block;

    color: #0d6efd;

    letter-spacing: 2px;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.metrust-content h2 {

    font-size: 50px;

    color: #08254d;

    line-height: 1.25;

    margin-bottom: 25px;

    font-weight: 800;

}

.metrust-content p {

    color: #666;

    line-height: 2;

    margin-bottom: 18px;

}

/* Quote */

.metrust-quote {

    position: relative;

    margin-top: 40px;

    padding: 35px;

    border-radius: 20px;

    background: linear-gradient(135deg, #08254d, #00272e);

    color: #fff;

    overflow: hidden;

}

.metrust-quote::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    right: -60px;
    top: -60px;

}

.metrust-quote i {

    font-size: 48px;

    opacity: .25;

}

.metrust-quote p {

    color: #fff;

    margin-top: 15px;

    margin-bottom: 0;

    font-size: 18px;

    line-height: 1.8;

}

/* Responsive */

@media(max-width:991px) {

    .metrust-wrapper {

        padding: 30px;

    }

    .metrust-content {

        margin-top: 40px;

    }

    .metrust-content h2 {

        font-size: 34px;

    }

}

/* Responsive */

@media(max-width:991px) {

    .maria-group-content {

        margin-top: 50px;

    }

    .maria-group-content h2 {

        font-size: 36px;

    }

    .maria-floating-item {

        width: 120px;
        height: 120px;

    }

    .maria-floating-item h2 {

        font-size: 34px;

    }

}

/*=========================================
      Principal Message
=========================================*/

.amcn-principal-section {

    background:
        radial-gradient(circle at top right, #eef6ff 0%, transparent 35%),
        radial-gradient(circle at bottom left, #fff8e8 0%, transparent 30%),
        #f8fbff;

    overflow: hidden;

}

.amcn-principal-wrapper {

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(18px);

    border-radius: 35px;

    padding: 40px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .10);

}

/* Image */

.amcn-principal-image {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.amcn-principal-image img {

    width: 100%;

    display: block;

    transition: .8s;

}

.amcn-principal-image:hover img {

    transform: scale(1.08);

}

/* Floating Name */

.amcn-principal-info {

    position: relative;

    background: rgba(255, 255, 255, .95);

    padding: 25px;

    text-align: center;

}

.amcn-principal-info h4 {

    color: #08254d;

    font-size: 24px;

    margin-bottom: 5px;

    font-weight: 700;

}

.amcn-principal-info span {

    display: block;

    color: #0d6efd;

    font-weight: 600;

}

.amcn-principal-info small {

    color: #777;

}

/* Content */

.amcn-principal-content h2 {

    font-size: 36px;

    color: #08254d;

    font-weight: 800;

    margin-bottom: 25px;

}

.amcn-principal-content p {

    color: #666;

    line-height: 2;

}

/* Quote */

.amcn-principal-quote {

    position: relative;

    margin-bottom: 35px;

    padding: 35px;

    border-left: 5px solid #0d6efd;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    display: flex;

}

.amcn-principal-quote i {

    font-size: 48px;

    color: #0d6efd;

    opacity: .25;

}

.amcn-principal-quote p {

    font-size: 18px;

    margin-top: 15px;

    margin-bottom: 0;

    color: #08254d;

    font-weight: 500;

}

/* Signature */

.amcn-signature {

    margin-top: 40px;

    padding-top: 30px;

    border-top: 2px dashed #dbe7ff;

}

.amcn-signature h5 {

    color: #08254d;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 8px;

}

.amcn-signature span {

    color: #0d6efd;

    line-height: 1.8;

}

@media(max-width:991px) {

    .amcn-principal-wrapper {

        padding: 35px;

    }

    .amcn-principal-content {

        margin-top: 45px;

    }

    .amcn-principal-content h2 {

        font-size: 34px;

    }

}

.amcn-vmc-section {

    background: #f8fbff;

}

.amcn-section-title {

    font-size: 46px;

    color: #08254d;

    font-weight: 700;

    margin-bottom: 15px;

}

.amcn-section-text {

    max-width: 750px;

    margin: auto;

    color: #666;

    line-height: 1.9;

}

.amcn-vmc-card {

    background: #fff;

    border-radius: 25px;

    padding: 40px;

    height: 100%;

    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);

    transition: .4s;

    position: relative;

    overflow: hidden;

}


.amcn-vmc-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .14);

}

.amcn-vmc-icon {

    width: 80px;

    height: 80px;

    background: #edf5ff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0d6efd;

    font-size: 36px;

    margin-bottom: 25px;

}

.amcn-vmc-card h3 {

    color: #08254d;

    font-size: 30px;

    margin-bottom: 20px;

    font-weight: 700;

}

.amcn-vmc-card p {

    color: #666;

    line-height: 2;

}

.amcn-vmc-list,
.amcn-core-values {

    list-style: none;

    padding: 0;

    margin: 0;

}

.amcn-vmc-list li {

    display: flex;

    align-items: flex-start;

    margin-bottom: 15px;

    line-height: 1.8;

    color: #555;

}

.amcn-vmc-list li i {

    color: #0d6efd;

    margin-right: 10px;

    font-size: 20px;

    margin-top: 3px;

}

.amcn-core-values li {

    padding: 14px 18px;

    margin-bottom: 12px;

    border-radius: 12px;

    background: #f5f9ff;

    color: #08254d;

    font-weight: 600;

    transition: .3s;

}

.amcn-core-values li:hover {

    background: #0d6efd;

    color: #fff;

    transform: translateX(8px);

}

@media(max-width:991px) {

    .amcn-section-title {

        font-size: 34px;

    }

    .amcn-vmc-card {

        padding: 30px;

    }

}

/*==============================
Vision
==============================*/

.amcn-vision-card {
    background: linear-gradient(135deg, #eef7ff 0%, #d9ecff 100%);
    border: 5px solid #0d6efd;
}

.amcn-vision-card .amcn-vmc-icon {
    background: #0d6efd;
    color: #fff;
}


/*==============================
Mission
==============================*/

.amcn-mission-card {
    background: linear-gradient(135deg, #eefcf6 0%, #d7f6e5 100%);
    border: 5px solid #16a34a;
}

.amcn-mission-card .amcn-vmc-icon {
    background: #16a34a;
    color: #fff;
}


/*==============================
Core Values
==============================*/

.amcn-values-card {
    background: linear-gradient(135deg, #fff8e8 0%, #ffe8bd 100%);
    border: 5px solid #f59e0b;
}

.amcn-values-card .amcn-vmc-icon {
    background: #f59e0b;
    color: #fff;
}


/*==============================
Common Hover
==============================*/

.amcn-vmc-card {
    transition: .4s;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.amcn-vmc-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

/*=================================
    Anti Ragging
=================================*/

.amcn-ragging-section {

    background: #f8fbff;

}

.amcn-ragging-image {

    overflow: hidden;

    border-radius: 25px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.amcn-ragging-image img {

    width: 100%;

    transition: .7s;

}

.amcn-ragging-image:hover img {

    transform: scale(1.08);

}

.amcn-ragging-card {

    background: #fff;

    padding: 45px;

    border-radius: 25px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    position: relative;

}

.amcn-ragging-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;

    height: 100%;

    background: #dc3545;

    border-radius: 10px;

}

.amcn-ragging-card h2 {

    font-size: 42px;

    color: #08254d;

    margin-bottom: 25px;

}

.amcn-ragging-alert {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    padding: 25px;

    margin-bottom: 30px;

    background: #fff5f5;

    border: 1px solid #ffd3d3;

    border-radius: 18px;

}

.amcn-ragging-alert i {

    width: 70px;
    min-width: 70px;

    height: 70px;

    background: #dc3545;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 32px;

}

.amcn-ragging-alert h5 {

    color: #dc3545;

    margin-bottom: 8px;

    font-size: 22px;

}

.amcn-ragging-card p {

    color: #666;

    line-height: 2;

}

.amcn-ragging-list {

    list-style: none;

    padding: 0;

    margin-top: 30px;

}

.amcn-ragging-list li {

    display: flex;

    align-items: flex-start;

    margin-bottom: 18px;

    color: #555;

    line-height: 1.8;

}

.amcn-ragging-list li i {

    color: #16a34a;

    font-size: 22px;

    margin-right: 12px;

    margin-top: 2px;

}

@media(max-width:991px) {

    .amcn-ragging-card {

        padding: 30px;
        margin-top: 35px;

    }

    .amcn-ragging-card h2 {

        font-size: 32px;

    }

}

/*=========================
Royal Scholarship
==========================*/

.amcn-scholarship-section {

    background:
        linear-gradient(135deg, #f8fbff, #eef6ff);

}

.amcn-scholarship-image {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);

}

.amcn-scholarship-image img {

    width: 100%;

    transition: .8s;

}

.amcn-scholarship-image:hover img {

    transform: scale(1.08);

}

.amcn-scholarship-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: rgba(255, 255, 255, .95);

    padding: 18px 28px;

    border-radius: 60px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.amcn-scholarship-badge i {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #d4af37, #f7d774);

    color: #fff;

    border-radius: 50%;

    font-size: 26px;

}

.amcn-scholarship-badge span {

    color: #08254d;

    font-weight: 700;

}

.amcn-scholarship-card {

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 45px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);

}

.amcn-scholarship-card h2 {

    font-size: 44px;

    font-weight: 700;

    color: #08254d;

    margin-bottom: 20px;

}

.amcn-scholarship-card p {

    color: #666;

    line-height: 2;

}

.amcn-scholarship-item {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #fff;

    padding: 20px;

    border-radius: 18px;

    margin-bottom: 20px;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.amcn-scholarship-item:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

}

.amcn-scholarship-item i {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #0d6efd, #0b4db3);

    color: #fff;

    border-radius: 18px;

    font-size: 28px;

}

.amcn-scholarship-item h5 {

    color: #08254d;

    margin: 0;

    font-size: 18px;

}

.amcn-scholarship-note {

    margin-top: 30px;

    display: flex;

    gap: 18px;

    padding: 30px;

    border-radius: 20px;

    background: linear-gradient(135deg, #08254d, #124A80);

    color: #fff;

}

.amcn-scholarship-note i {

    font-size: 34px;

    color: #ffd54f;

}

.amcn-scholarship-note p {

    color: #fff;

    margin: 0;

}

.amcn-scholarship-support-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .4s;
    border: 1px solid #edf2f9;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.amcn-scholarship-support-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0B4DB3, #0d6efd, #FFC107);
}

.amcn-scholarship-support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.amcn-scholarship-support-card i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B4DB3, #0d6efd);
    color: #fff;
    font-size: 34px;
}

.amcn-scholarship-support-card h4 {
    color: #08254d;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.amcn-scholarship-support-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/*=============================
Royal Rules Section
==============================*/

.amcn-rules-section {

    background: #fff;

}

.amcn-rules-image {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .15);

}

.amcn-rules-image img {

    width: 100%;

    display: block;

    transition: .8s;

}

.amcn-rules-image:hover img {

    transform: scale(1.08);

}

.amcn-rules-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: rgba(255, 255, 255, .95);

    padding: 16px 24px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.amcn-rules-badge i {

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, #0d6efd, #124A80);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 24px;

}

.amcn-rules-badge span {

    font-weight: 700;

    color: #08254d;

}

.amcn-rules-content {

    background: #fff;

    padding: 45px;

    border-radius: 25px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);

}

.amcn-rules-content h2 {

    font-size: 42px;

    color: #08254d;

    font-weight: 700;

    margin-bottom: 20px;

}

.amcn-rules-content p {

    color: #666;

    line-height: 2;

}

.amcn-rule-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border-radius: 16px;

    background: #f7faff;

    transition: .35s;

}

.amcn-rule-item:hover {

    background: #0d6efd;

    transform: translateY(-5px);

}

.amcn-rule-item:hover span {

    color: #fff;

}

.amcn-rule-item:hover i {

    color: #fff;

}

.amcn-rule-item i {

    color: #0d6efd;

    font-size: 22px;

}

.amcn-rule-item span {

    font-weight: 600;

    color: #555;

}

.amcn-rules-note {

    margin-top: 35px;

    display: flex;

    gap: 20px;

    padding: 28px;

    border-radius: 20px;

    background: linear-gradient(135deg, #08254d, #124A80);

    color: #fff;

}

.amcn-rules-note i {

    font-size: 34px;

    color: #ffd54f;

}

.amcn-rules-note h5 {

    color: #fff;

    margin-bottom: 8px;

}

.amcn-rules-note p {

    color: #fff;

    margin: 0;

}

/* Mobile Responsive */

@media(max-width:991px) {
    .gallery-white-card .rs-gallery-thumb img {
        height: 220px;
    }
}

@media(max-width:767px) {
    .gallery-white-card .rs-gallery-thumb img {
        height: 200px;
    }

    .rs-program-four {
        padding: 80px 0;
    }
}

@media (max-width: 1399.98px) {
    .mcahs-admission-btn a {
        padding: 7px 8px;
        font-size: 12px !important;
    }
}

@media (max-width: 1299.98px) {
    .mcahs-admission-btn a {
        padding: 6px 6px;
        font-size: 11px !important;
    }

    .rs-header-top.rs-header-top-one .header-top-content .header-top-title {
        font-size: 13px;
    }
}

/*==================================================
    Principal Message - Royal Premium Design
==================================================*/

.mahs-message-section {
    background: #f4f8ff;
    position: relative;
    overflow: hidden;
}

.mahs-message-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(4, 36, 139, .05);
    top: -220px;
    right: -180px;
}

.mahs-message-wrapper {
    position: relative;
    background: linear-gradient(135deg, #04248b 0%, #0b4db3 100%);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(4, 36, 139, .25);
}

.mahs-message-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #ffd54f, #ffb300);
}

.mahs-message-wrapper::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -120px;
    right: -120px;
}

/*==================================
Image
==================================*/

.mahs-message-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .30);
}

.mahs-message-image img {
    width: 100%;
    display: block;
    transition: .8s;
}

.mahs-message-image:hover img {
    transform: scale(1.08);
}

.mahs-message-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .35),
            transparent 45%);
}

/*==================================
Profile Card
==================================*/

.mahs-message-info {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(10px);

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

.mahs-message-info h4 {

    color: #08254d;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 5px;

}

.mahs-message-info span {

    display: block;

    color: #0b4db3;

    font-weight: 600;

    margin-bottom: 5px;

}

.mahs-message-info small {

    color: #666;

}

/*==================================
Content
==================================*/

.amcn-subtitle {

    display: inline-block;

    color: #ffd54f;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.mahs-message-content h2 {

    color: #ffffff;

    font-size: 46px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 25px;

}

.mahs-message-content p {

    color: rgba(255, 255, 255, .92);

    line-height: 2;

    font-size: 16px;

    text-align: justify;

    margin-bottom: 20px;

}

/*==================================
Signature
==================================*/

.mahs-signature {

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .20);

}

.mahs-signature h5 {

    color: #ffffff;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 8px;

}

.mahs-signature span {

    color: #ffd54f;

    line-height: 1.8;

    font-weight: 600;

}

/*==================================
Hover
==================================*/

.mahs-message-wrapper:hover {

    transform: translateY(-5px);

    transition: .35s;

}

/*==================================
Responsive
==================================*/

@media (max-width:991px) {

    .mahs-message-wrapper {

        padding: 35px;

    }

    .mahs-message-content {

        margin-top: 35px;

    }

    .mahs-message-content h2 {

        font-size: 34px;

    }

    .images-column {

        float: none !important;

        margin: 0 0 30px !important;

    }

    .mahs-message-info {

        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 18px;

    }

    .mahs-message-info h4 {

        font-size: 20px;

    }

}

/*=========================================
    Chairman's Message
=========================================*/

.mgi-chairman-section {
    position: relative;

    background: #f5f8ff;
    overflow: hidden;
}

.mgi-chairman-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(4, 36, 139, .05);
    border-radius: 50%;
    top: -220px;
    right: -180px;
}

.mgi-chairman-wrapper {
    position: relative;
    background: linear-gradient(135deg, #04248b 0%, #0b4db3 100%);
    border-radius: 35px;
    padding: 60px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(4, 36, 139, .20);
}

.mgi-chairman-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #ffd54f, #f7b500);
}

.mgi-chairman-wrapper::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    right: -120px;
    top: -120px;
}

/*=========================
Image
=========================*/

.mgi-chairman-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.mgi-chairman-image img {
    width: 100%;
    display: block;
    transition: .8s;
}

.mgi-chairman-image:hover img {
    transform: scale(1.08);
}

.mgi-chairman-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .35),
            transparent 45%);
}

/*=========================
Profile Card
=========================*/

.mgi-chairman-info {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(10px);

    border-radius: 18px;

    text-align: center;

    padding: 22px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

.mgi-chairman-info h4 {

    color: #08254d;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 6px;

}

.mgi-chairman-info span {

    display: block;

    color: #0b4db3;

    font-weight: 600;

}

.mgi-chairman-info small {

    color: #666;

}

/*=========================
Content
=========================*/

.mgi-chairman-subtitle {

    display: inline-block;

    color: #ffd54f;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.mgi-chairman-content h2 {

    color: #fff;

    font-size: 46px;

    font-weight: 700;

    margin-bottom: 25px;

    line-height: 1.3;

}

.mgi-chairman-content p {

    color: rgba(255, 255, 255, .92);

    line-height: 2;

    text-align: justify;

    margin-bottom: 18px;

}

/*=========================
Quote Box
=========================*/

.mgi-chairman-quote {

    position: relative;

    background: rgba(255, 255, 255, .08);

    border-left: 5px solid #ffd54f;

    border-radius: 18px;

    padding: 30px;

    margin-bottom: 35px;

    backdrop-filter: blur(8px);
    display: flex;

}

.mgi-chairman-quote i {

    color: #ffd54f;

    font-size: 42px;

}

.mgi-chairman-quote p {

    color: #fff;

    font-size: 18px;

    margin-top: 12px;

    margin-bottom: 0;

}

/*=========================
Signature
=========================*/

.mgi-chairman-signature {

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .20);

}

.mgi-chairman-signature h5 {

    color: #fff;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 6px;

}

.mgi-chairman-signature span {

    color: #ffd54f;

    font-weight: 600;

    line-height: 1.8;

}

/*=========================
Hover
=========================*/

.mgi-chairman-wrapper {

    transition: .35s;

}

.mgi-chairman-wrapper:hover {

    transform: translateY(-6px);

}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    .mgi-chairman-wrapper {

        padding: 35px;

    }

    .mgi-chairman-content {

        margin-top: 35px;

    }

    .mgi-chairman-content h2 {

        font-size: 34px;

    }

    .images-column {

        float: none !important;

        margin: 0 0 30px !important;

    }

}

/*=========================================
About College
=========================================*/

.mahs-about-section {
    background: #f7faff;
}

.mahs-about-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
}

.mahs-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.mahs-about-image img {
    width: 100%;
    transition: .8s;
}

.mahs-about-image:hover img {
    transform: scale(1.08);
}

.mahs-about-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #04248b;
    color: #fff;
    border-radius: 20px;
    padding: 18px 28px;
    text-align: center;
}

.mahs-about-badge h3 {
    color: #fff;
    font-size: 34px;
    margin: 0;
}

.mahs-about-subtitle {
    color: #0b4db3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mahs-about-content h2 {
    font-size: 44px;
    color: #08254d;
    margin: 18px 0 25px;
}

.mahs-about-content p {
    line-height: 2;
    color: #666;
    text-align: justify;
}


/*=========================================
Philosophy
=========================================*/

.mahp-philosophy-section {
    background: #fff;
}

.mahp-philosophy-card {
    max-width: 1300px;
    margin: auto;
    background: linear-gradient(135deg, #04248b, #0b4db3);
    border-radius: 30px;
    padding: 40px;
    margin: 35px 0;
    color: #fff;
    box-shadow: 0 25px 70px rgba(4, 36, 139, .20);
}

.mahp-subtitle {
    color: #ffd54f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.mahp-philosophy-card h2 {
    color: #fff;
    margin: 20px 0;
}

.mahp-philosophy-card p {
    color: rgba(255, 255, 255, .92);
    line-height: 2;
}


/*=========================================
History
=========================================*/

.mahg-history-section {
    background: #f7faff;
}

.mahg-history-content h2 {
    color: #08254d;
    font-size: 42px;
    margin: 18px 0 25px;
}

.mahg-subtitle {
    color: #0b4db3;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.mahg-history-content p {
    color: #666;
    line-height: 2;
    text-align: justify;
}

.mahg-history-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.mahg-history-image img {
    width: 100%;
    transition: .8s;
}

.mahg-history-image:hover img {
    transform: scale(1.08);
}

@media(max-width:991px) {

    .mahs-about-wrapper {
        padding: 30px;
    }

    .mahs-about-content {
        margin-top: 35px;
    }

    .mahs-about-content h2,
    .mahg-history-content h2 {
        font-size: 32px;
    }

    .mahp-philosophy-card {
        padding: 35px;
    }

    .mahg-history-image {
        margin-top: 35px;
    }

}

/* ==========================================
   Vision, Mission & Core Values Cards
========================================== */

.mahsvm-card {
    position: relative;
    padding: 35px 30px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 35px;
}

.mahsvm-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.mahsvm-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.mahsvm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mahsvm-card .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.mahsvm-icon {
    width: 80px;
    height: 80px;
    background: #edf5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 36px;
    margin-bottom: 25px;
}

.mahsvm-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mahsvm-card p,
.mahsvm-card li {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    font-size: 16px;
}

.mahsvm-card ul {
    margin: 0;
    padding-left: 18px;
}

.mahsvm-card li {
    margin-bottom: 10px;
    list-style: none;
    margin-left: 0px;
}

.mahsvm-card li i {
    margin-right: 10px;
}

/* ==========================================
   Vision Card
========================================== */

.vision-card {
    background: linear-gradient(135deg, #0d6efd, #0b4db3);
}

/* ==========================================
   Mission Card
========================================== */

.mission-card {
    background: linear-gradient(135deg, #16a34a, #015738);
}

/* ==========================================
   Core Values Card
========================================== */

.corevalue-card {
    background: linear-gradient(135deg, #022797, #08254d);
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px) {
    .mahsvm-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .mahsvm-card h3 {
        font-size: 24px;
    }

    .mahsvm-card .icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .mahsvm-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .mahsvm-card h3 {
        font-size: 22px;
    }

    .mahsvm-card p,
    .mahsvm-card li {
        font-size: 15px;
    }
}

/* Hero */
.optx-hero-section {
    background: linear-gradient(135deg, #083d77, #0b6bd6);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.optx-hero-section:before,
.optx-hero-section:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08)
}

.optx-hero-section:before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -120px
}

.optx-hero-section:after {
    width: 260px;
    height: 260px;
    left: -60px;
    bottom: -60px
}

.optx-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px
}

.optx-subtitle {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.optx-hero-content h1 {
    font-size: 56px;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.15
}

.optx-hero-content p {
    font-size: 19px;
    color: #eef6ff
}

/* Sections */
.optx-section {
    background: #fff;
    position: relative
}

.optx-light {
    background: #f7f9fd
}

.optx-section:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #0b6bd6, #18c2ff, #0b6bd6);
    opacity: .12;
}

/* Grid */
.optx-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 60px;
    align-items: center;
}

.optx-grid.reverse {
    grid-template-columns: .9fr 1.2fr
}

.optx-grid.reverse .optx-image {
    order: 1
}

.optx-grid.reverse .optx-content {
    order: 2
}

/* Headings */
.optx-content h2,
.optx-title-center {
    font-size: 36px;
    margin: 0 0 24px;
    color: #0d355e;
    font-weight: 700;
    position: relative;
}

.optx-content h2:after,
.optx-title-center:after {
    content: "";
    display: block;
    margin-top: 14px;
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background: #0b6bd6;
}

.optx-title-center {
    text-align: center
}

.optx-title-center:after {
    margin: 14px auto 0
}


.optx-center {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center
}

/* Image */
.optx-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(14, 51, 94, .15);
    position: relative;
}

.optx-image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .12));
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.optx-image img {
    transition: transform .7s
}

.optx-image:hover img {
    transform: scale(1.08)
}

.optx-image:hover:before {
    opacity: 1
}

/* Cards */
.optx-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330.33px, 1fr));
    gap: 24px;
    margin: 45px 0;
}

.optx-card {
    background-color: var(--rs-theme-cyan);
    background-image: url(../images/bg/bg1.png);
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid #e8edf5;
    box-shadow: 0 12px 32px rgba(13, 53, 94, .08);
    font-weight: 600;
    color: #ffffff;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.optx-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #ffc107;
}

.optx-card:hover {
    transform: translateY(-10px);
    background: #0b6bd6;
    color: #fff;
    box-shadow: 0 25px 45px rgba(11, 107, 214, .28);
}

/* Lists */
.optx-list {
    list-style: none;
    padding: 0;
    margin: 30px 0
}

.optx-list li {
    padding: 0 0 16px 38px;
    position: relative;
    font-size: 17px;
    color: #566272;
}

.optx-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #0b6bd6;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
}

/* Banner */
.optx-banner-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 53, 94, .12);
    margin-top: 45px;
}

.optx-banner-image img {
    transition: .6s
}

.optx-banner-image:hover img {
    transform: scale(1.05)
}

/* Glass modifier */
.optx-glass {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 20px;
}

/* Buttons */
.optx-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: #0b6bd6;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
}

.optx-btn:hover {
    background: #083d77;
    transform: translateY(-3px);
}

/* Animation */
@keyframes optxFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.optx-content,
.optx-image,
.optx-card {
    animation: optxFadeUp .7s ease both;
}

/* Utilities */
.optx-shadow-lg {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12)
}

.optx-radius-xl {
    border-radius: 24px
}

.optx-text-center {
    text-align: center
}

.optx-mb-0 {
    margin-bottom: 0
}

.optx-mt-5 {
    margin-top: 3rem
}

/* Responsive */
@media (max-width:1200px) {

    .optx-grid,
    .optx-grid.reverse {
        grid-template-columns: 1fr
    }

    .optx-grid.reverse .optx-image,
    .optx-grid.reverse .optx-content {
        order: initial
    }
}

@media (max-width:992px) {
    .optx-section {
        padding: 70px 0
    }

    .optx-hero-section {
        padding: 100px 0
    }

    .optx-hero-content h1 {
        font-size: 44px
    }

    .optx-content h2,
    .optx-title-center {
        font-size: 30px
    }
}

@media (max-width:768px) {
    .optx-hero-content h1 {
        font-size: 34px
    }

    .optx-content h2,
    .optx-title-center {
        font-size: 26px
    }

    .optx-card-grid {
        grid-template-columns: 1fr
    }

    .optx-content p,
    .optx-center,
    .optx-list li {
        font-size: 16px
    }
}

/* Utility classes */
.optx-space-1 {
    margin-top: 1px;
    margin-bottom: 0px;
}

.optx-delay-1 {
    animation-delay: 0.01s;
}

.optx-space-2 {
    margin-top: 2px;
    margin-bottom: 1px;
}

.optx-delay-2 {
    animation-delay: 0.02s;
}

.optx-space-3 {
    margin-top: 3px;
    margin-bottom: 1px;
}

.optx-delay-3 {
    animation-delay: 0.03s;
}

.optx-space-4 {
    margin-top: 4px;
    margin-bottom: 2px;
}

.optx-delay-4 {
    animation-delay: 0.04s;
}

.optx-space-5 {
    margin-top: 5px;
    margin-bottom: 2px;
}

.optx-delay-5 {
    animation-delay: 0.05s;
}

.optx-space-6 {
    margin-top: 6px;
    margin-bottom: 3px;
}

.optx-delay-6 {
    animation-delay: 0.06s;
}

.optx-space-7 {
    margin-top: 7px;
    margin-bottom: 3px;
}

.optx-delay-7 {
    animation-delay: 0.07s;
}

.optx-space-8 {
    margin-top: 8px;
    margin-bottom: 4px;
}

.optx-delay-8 {
    animation-delay: 0.08s;
}

.optx-space-9 {
    margin-top: 9px;
    margin-bottom: 4px;
}

.optx-delay-9 {
    animation-delay: 0.09s;
}

.optx-space-10 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.optx-delay-10 {
    animation-delay: 0.10s;
}

.optx-space-11 {
    margin-top: 11px;
    margin-bottom: 5px;
}

.optx-delay-11 {
    animation-delay: 0.11s;
}

.optx-space-12 {
    margin-top: 12px;
    margin-bottom: 6px;
}

.optx-delay-12 {
    animation-delay: 0.12s;
}

.optx-space-13 {
    margin-top: 13px;
    margin-bottom: 6px;
}

.optx-delay-13 {
    animation-delay: 0.13s;
}

.optx-space-14 {
    margin-top: 14px;
    margin-bottom: 7px;
}

.optx-delay-14 {
    animation-delay: 0.14s;
}

.optx-space-15 {
    margin-top: 15px;
    margin-bottom: 7px;
}

.optx-delay-15 {
    animation-delay: 0.15s;
}

.optx-space-16 {
    margin-top: 16px;
    margin-bottom: 8px;
}

.optx-delay-16 {
    animation-delay: 0.16s;
}

.optx-space-17 {
    margin-top: 17px;
    margin-bottom: 8px;
}

.optx-delay-17 {
    animation-delay: 0.17s;
}

.optx-space-18 {
    margin-top: 18px;
    margin-bottom: 9px;
}

.optx-delay-18 {
    animation-delay: 0.18s;
}

.optx-space-19 {
    margin-top: 19px;
    margin-bottom: 9px;
}

.optx-delay-19 {
    animation-delay: 0.19s;
}

.optx-space-20 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.optx-delay-20 {
    animation-delay: 0.20s;
}

.optx-space-21 {
    margin-top: 21px;
    margin-bottom: 10px;
}

.optx-delay-21 {
    animation-delay: 0.21s;
}

.optx-space-22 {
    margin-top: 22px;
    margin-bottom: 11px;
}

.optx-delay-22 {
    animation-delay: 0.22s;
}

.optx-space-23 {
    margin-top: 23px;
    margin-bottom: 11px;
}

.optx-delay-23 {
    animation-delay: 0.23s;
}

.optx-space-24 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.optx-delay-24 {
    animation-delay: 0.24s;
}

.optx-space-25 {
    margin-top: 25px;
    margin-bottom: 12px;
}

.optx-delay-25 {
    animation-delay: 0.25s;
}

.optx-space-26 {
    margin-top: 26px;
    margin-bottom: 13px;
}

.optx-delay-26 {
    animation-delay: 0.26s;
}

.optx-space-27 {
    margin-top: 27px;
    margin-bottom: 13px;
}

.optx-delay-27 {
    animation-delay: 0.27s;
}

.optx-space-28 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.optx-delay-28 {
    animation-delay: 0.28s;
}

.optx-space-29 {
    margin-top: 29px;
    margin-bottom: 14px;
}

.optx-delay-29 {
    animation-delay: 0.29s;
}

.optx-space-30 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.optx-delay-30 {
    animation-delay: 0.30s;
}

.optx-space-31 {
    margin-top: 31px;
    margin-bottom: 15px;
}

.optx-delay-31 {
    animation-delay: 0.31s;
}

.optx-space-32 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.optx-delay-32 {
    animation-delay: 0.32s;
}

.optx-space-33 {
    margin-top: 33px;
    margin-bottom: 16px;
}

.optx-delay-33 {
    animation-delay: 0.33s;
}

.optx-space-34 {
    margin-top: 34px;
    margin-bottom: 17px;
}

.optx-delay-34 {
    animation-delay: 0.34s;
}

.optx-space-35 {
    margin-top: 35px;
    margin-bottom: 17px;
}

.optx-delay-35 {
    animation-delay: 0.35s;
}

.optx-space-36 {
    margin-top: 36px;
    margin-bottom: 18px;
}

.optx-delay-36 {
    animation-delay: 0.36s;
}

.optx-space-37 {
    margin-top: 37px;
    margin-bottom: 18px;
}

.optx-delay-37 {
    animation-delay: 0.37s;
}

.optx-space-38 {
    margin-top: 38px;
    margin-bottom: 19px;
}

.optx-delay-38 {
    animation-delay: 0.38s;
}

.optx-space-39 {
    margin-top: 39px;
    margin-bottom: 19px;
}

.optx-delay-39 {
    animation-delay: 0.39s;
}

.optx-space-40 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.optx-delay-40 {
    animation-delay: 0.40s;
}

.optx-space-41 {
    margin-top: 41px;
    margin-bottom: 20px;
}

.optx-delay-41 {
    animation-delay: 0.41s;
}

.optx-space-42 {
    margin-top: 42px;
    margin-bottom: 21px;
}

.optx-delay-42 {
    animation-delay: 0.42s;
}

.optx-space-43 {
    margin-top: 43px;
    margin-bottom: 21px;
}

.optx-delay-43 {
    animation-delay: 0.43s;
}

.optx-space-44 {
    margin-top: 44px;
    margin-bottom: 22px;
}

.optx-delay-44 {
    animation-delay: 0.44s;
}

.optx-space-45 {
    margin-top: 45px;
    margin-bottom: 22px;
}

.optx-delay-45 {
    animation-delay: 0.45s;
}

.optx-space-46 {
    margin-top: 46px;
    margin-bottom: 23px;
}

.optx-delay-46 {
    animation-delay: 0.46s;
}

.optx-space-47 {
    margin-top: 47px;
    margin-bottom: 23px;
}

.optx-delay-47 {
    animation-delay: 0.47s;
}

.optx-space-48 {
    margin-top: 48px;
    margin-bottom: 24px;
}

.optx-delay-48 {
    animation-delay: 0.48s;
}

.optx-space-49 {
    margin-top: 49px;
    margin-bottom: 24px;
}

.optx-delay-49 {
    animation-delay: 0.49s;
}

.optx-space-50 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.optx-delay-50 {
    animation-delay: 0.50s;
}

.optx-space-51 {
    margin-top: 51px;
    margin-bottom: 25px;
}

.optx-delay-51 {
    animation-delay: 0.51s;
}

.optx-space-52 {
    margin-top: 52px;
    margin-bottom: 26px;
}

.optx-delay-52 {
    animation-delay: 0.52s;
}

.optx-space-53 {
    margin-top: 53px;
    margin-bottom: 26px;
}

.optx-delay-53 {
    animation-delay: 0.53s;
}

.optx-space-54 {
    margin-top: 54px;
    margin-bottom: 27px;
}

.optx-delay-54 {
    animation-delay: 0.54s;
}

.optx-space-55 {
    margin-top: 55px;
    margin-bottom: 27px;
}

.optx-delay-55 {
    animation-delay: 0.55s;
}

.optx-space-56 {
    margin-top: 56px;
    margin-bottom: 28px;
}

.optx-delay-56 {
    animation-delay: 0.56s;
}

.optx-space-57 {
    margin-top: 57px;
    margin-bottom: 28px;
}

.optx-delay-57 {
    animation-delay: 0.57s;
}

.optx-space-58 {
    margin-top: 58px;
    margin-bottom: 29px;
}

.optx-delay-58 {
    animation-delay: 0.58s;
}

.optx-space-59 {
    margin-top: 59px;
    margin-bottom: 29px;
}

.optx-delay-59 {
    animation-delay: 0.59s;
}

.optx-space-60 {
    margin-top: 60px;
    margin-bottom: 30px;
}

.optx-delay-60 {
    animation-delay: 0.60s;
}

.optx-space-61 {
    margin-top: 61px;
    margin-bottom: 30px;
}

.optx-delay-61 {
    animation-delay: 0.61s;
}

.optx-space-62 {
    margin-top: 62px;
    margin-bottom: 31px;
}

.optx-delay-62 {
    animation-delay: 0.62s;
}

.optx-space-63 {
    margin-top: 63px;
    margin-bottom: 31px;
}

.optx-delay-63 {
    animation-delay: 0.63s;
}

.optx-space-64 {
    margin-top: 64px;
    margin-bottom: 32px;
}

.optx-delay-64 {
    animation-delay: 0.64s;
}

.optx-space-65 {
    margin-top: 65px;
    margin-bottom: 32px;
}

.optx-delay-65 {
    animation-delay: 0.65s;
}

.optx-space-66 {
    margin-top: 66px;
    margin-bottom: 33px;
}

.optx-delay-66 {
    animation-delay: 0.66s;
}

.optx-space-67 {
    margin-top: 67px;
    margin-bottom: 33px;
}

.optx-delay-67 {
    animation-delay: 0.67s;
}

.optx-space-68 {
    margin-top: 68px;
    margin-bottom: 34px;
}

.optx-delay-68 {
    animation-delay: 0.68s;
}

.optx-space-69 {
    margin-top: 69px;
    margin-bottom: 34px;
}

.optx-delay-69 {
    animation-delay: 0.69s;
}

.optx-space-70 {
    margin-top: 70px;
    margin-bottom: 35px;
}

.optx-delay-70 {
    animation-delay: 0.70s;
}

.optx-space-71 {
    margin-top: 71px;
    margin-bottom: 35px;
}

.optx-delay-71 {
    animation-delay: 0.71s;
}

.optx-space-72 {
    margin-top: 72px;
    margin-bottom: 36px;
}

.optx-delay-72 {
    animation-delay: 0.72s;
}

.optx-space-73 {
    margin-top: 73px;
    margin-bottom: 36px;
}

.optx-delay-73 {
    animation-delay: 0.73s;
}

.optx-space-74 {
    margin-top: 74px;
    margin-bottom: 37px;
}

.optx-delay-74 {
    animation-delay: 0.74s;
}

.optx-space-75 {
    margin-top: 75px;
    margin-bottom: 37px;
}

.optx-delay-75 {
    animation-delay: 0.75s;
}

.optx-space-76 {
    margin-top: 76px;
    margin-bottom: 38px;
}

.optx-delay-76 {
    animation-delay: 0.76s;
}

.optx-space-77 {
    margin-top: 77px;
    margin-bottom: 38px;
}

.optx-delay-77 {
    animation-delay: 0.77s;
}

.optx-space-78 {
    margin-top: 78px;
    margin-bottom: 39px;
}

.optx-delay-78 {
    animation-delay: 0.78s;
}

.optx-space-79 {
    margin-top: 79px;
    margin-bottom: 39px;
}

.optx-delay-79 {
    animation-delay: 0.79s;
}

.optx-space-80 {
    margin-top: 80px;
    margin-bottom: 40px;
}

.optx-delay-80 {
    animation-delay: 0.80s;
}

.optx-space-81 {
    margin-top: 81px;
    margin-bottom: 40px;
}

.optx-delay-81 {
    animation-delay: 0.81s;
}

.optx-space-82 {
    margin-top: 82px;
    margin-bottom: 41px;
}

.optx-delay-82 {
    animation-delay: 0.82s;
}

.optx-space-83 {
    margin-top: 83px;
    margin-bottom: 41px;
}

.optx-delay-83 {
    animation-delay: 0.83s;
}

.optx-space-84 {
    margin-top: 84px;
    margin-bottom: 42px;
}

.optx-delay-84 {
    animation-delay: 0.84s;
}

.optx-space-85 {
    margin-top: 85px;
    margin-bottom: 42px;
}

.optx-delay-85 {
    animation-delay: 0.85s;
}

.optx-space-86 {
    margin-top: 86px;
    margin-bottom: 43px;
}

.optx-delay-86 {
    animation-delay: 0.86s;
}

.optx-space-87 {
    margin-top: 87px;
    margin-bottom: 43px;
}

.optx-delay-87 {
    animation-delay: 0.87s;
}

.optx-space-88 {
    margin-top: 88px;
    margin-bottom: 44px;
}

.optx-delay-88 {
    animation-delay: 0.88s;
}

.optx-space-89 {
    margin-top: 89px;
    margin-bottom: 44px;
}

.optx-delay-89 {
    animation-delay: 0.89s;
}

.optx-space-90 {
    margin-top: 90px;
    margin-bottom: 45px;
}

.optx-delay-90 {
    animation-delay: 0.90s;
}

.optx-space-91 {
    margin-top: 91px;
    margin-bottom: 45px;
}

.optx-delay-91 {
    animation-delay: 0.91s;
}

.optx-space-92 {
    margin-top: 92px;
    margin-bottom: 46px;
}

.optx-delay-92 {
    animation-delay: 0.92s;
}

.optx-space-93 {
    margin-top: 93px;
    margin-bottom: 46px;
}

.optx-delay-93 {
    animation-delay: 0.93s;
}

.optx-space-94 {
    margin-top: 94px;
    margin-bottom: 47px;
}

.optx-delay-94 {
    animation-delay: 0.94s;
}

.optx-space-95 {
    margin-top: 95px;
    margin-bottom: 47px;
}

.optx-delay-95 {
    animation-delay: 0.95s;
}

.optx-space-96 {
    margin-top: 96px;
    margin-bottom: 48px;
}

.optx-delay-96 {
    animation-delay: 0.96s;
}

.optx-space-97 {
    margin-top: 97px;
    margin-bottom: 48px;
}

.optx-delay-97 {
    animation-delay: 0.97s;
}

.optx-space-98 {
    margin-top: 98px;
    margin-bottom: 49px;
}

.optx-delay-98 {
    animation-delay: 0.98s;
}

.optx-space-99 {
    margin-top: 99px;
    margin-bottom: 49px;
}

.optx-delay-99 {
    animation-delay: 0.99s;
}

.optx-space-100 {
    margin-top: 100px;
    margin-bottom: 50px;
}

.optx-delay-100 {
    animation-delay: 1.00s;
}

.optx-space-101 {
    margin-top: 101px;
    margin-bottom: 50px;
}

.optx-delay-101 {
    animation-delay: 1.01s;
}

.optx-space-102 {
    margin-top: 102px;
    margin-bottom: 51px;
}

.optx-delay-102 {
    animation-delay: 1.02s;
}

.optx-space-103 {
    margin-top: 103px;
    margin-bottom: 51px;
}

.optx-delay-103 {
    animation-delay: 1.03s;
}

.optx-space-104 {
    margin-top: 104px;
    margin-bottom: 52px;
}

.optx-delay-104 {
    animation-delay: 1.04s;
}

.optx-space-105 {
    margin-top: 105px;
    margin-bottom: 52px;
}

.optx-delay-105 {
    animation-delay: 1.05s;
}

.optx-space-106 {
    margin-top: 106px;
    margin-bottom: 53px;
}

.optx-delay-106 {
    animation-delay: 1.06s;
}

.optx-space-107 {
    margin-top: 107px;
    margin-bottom: 53px;
}

.optx-delay-107 {
    animation-delay: 1.07s;
}

.optx-space-108 {
    margin-top: 108px;
    margin-bottom: 54px;
}

.optx-delay-108 {
    animation-delay: 1.08s;
}

.optx-space-109 {
    margin-top: 109px;
    margin-bottom: 54px;
}

.optx-delay-109 {
    animation-delay: 1.09s;
}

.optx-space-110 {
    margin-top: 110px;
    margin-bottom: 55px;
}

.optx-delay-110 {
    animation-delay: 1.10s;
}

.optx-space-111 {
    margin-top: 111px;
    margin-bottom: 55px;
}

.optx-delay-111 {
    animation-delay: 1.11s;
}

.optx-space-112 {
    margin-top: 112px;
    margin-bottom: 56px;
}

.optx-delay-112 {
    animation-delay: 1.12s;
}

.optx-space-113 {
    margin-top: 113px;
    margin-bottom: 56px;
}

.optx-delay-113 {
    animation-delay: 1.13s;
}

.optx-space-114 {
    margin-top: 114px;
    margin-bottom: 57px;
}

.optx-delay-114 {
    animation-delay: 1.14s;
}

.optx-space-115 {
    margin-top: 115px;
    margin-bottom: 57px;
}

.optx-delay-115 {
    animation-delay: 1.15s;
}

.optx-space-116 {
    margin-top: 116px;
    margin-bottom: 58px;
}

.optx-delay-116 {
    animation-delay: 1.16s;
}

.optx-space-117 {
    margin-top: 117px;
    margin-bottom: 58px;
}

.optx-delay-117 {
    animation-delay: 1.17s;
}

.optx-space-118 {
    margin-top: 118px;
    margin-bottom: 59px;
}

.optx-delay-118 {
    animation-delay: 1.18s;
}

.optx-space-119 {
    margin-top: 119px;
    margin-bottom: 59px;
}

.optx-delay-119 {
    animation-delay: 1.19s;
}

.optx-space-120 {
    margin-top: 120px;
    margin-bottom: 60px;
}

.optx-delay-120 {
    animation-delay: 1.20s;
}

.optx-space-121 {
    margin-top: 121px;
    margin-bottom: 60px;
}

.optx-delay-121 {
    animation-delay: 1.21s;
}

.optx-space-122 {
    margin-top: 122px;
    margin-bottom: 61px;
}

.optx-delay-122 {
    animation-delay: 1.22s;
}

.optx-space-123 {
    margin-top: 123px;
    margin-bottom: 61px;
}

.optx-delay-123 {
    animation-delay: 1.23s;
}

.optx-space-124 {
    margin-top: 124px;
    margin-bottom: 62px;
}

.optx-delay-124 {
    animation-delay: 1.24s;
}

.optx-space-125 {
    margin-top: 125px;
    margin-bottom: 62px;
}

.optx-delay-125 {
    animation-delay: 1.25s;
}

.optx-space-126 {
    margin-top: 126px;
    margin-bottom: 63px;
}

.optx-delay-126 {
    animation-delay: 1.26s;
}

.optx-space-127 {
    margin-top: 127px;
    margin-bottom: 63px;
}

.optx-delay-127 {
    animation-delay: 1.27s;
}

.optx-space-128 {
    margin-top: 128px;
    margin-bottom: 64px;
}

.optx-delay-128 {
    animation-delay: 1.28s;
}

.optx-space-129 {
    margin-top: 129px;
    margin-bottom: 64px;
}

.optx-delay-129 {
    animation-delay: 1.29s;
}

.optx-space-130 {
    margin-top: 130px;
    margin-bottom: 65px;
}

.optx-delay-130 {
    animation-delay: 1.30s;
}

.optx-space-131 {
    margin-top: 131px;
    margin-bottom: 65px;
}

.optx-delay-131 {
    animation-delay: 1.31s;
}

.optx-space-132 {
    margin-top: 132px;
    margin-bottom: 66px;
}

.optx-delay-132 {
    animation-delay: 1.32s;
}

.optx-space-133 {
    margin-top: 133px;
    margin-bottom: 66px;
}

.optx-delay-133 {
    animation-delay: 1.33s;
}

.optx-space-134 {
    margin-top: 134px;
    margin-bottom: 67px;
}

.optx-delay-134 {
    animation-delay: 1.34s;
}

.optx-space-135 {
    margin-top: 135px;
    margin-bottom: 67px;
}

.optx-delay-135 {
    animation-delay: 1.35s;
}

.optx-space-136 {
    margin-top: 136px;
    margin-bottom: 68px;
}

.optx-delay-136 {
    animation-delay: 1.36s;
}

.optx-space-137 {
    margin-top: 137px;
    margin-bottom: 68px;
}

.optx-delay-137 {
    animation-delay: 1.37s;
}

.optx-space-138 {
    margin-top: 138px;
    margin-bottom: 69px;
}

.optx-delay-138 {
    animation-delay: 1.38s;
}

.optx-space-139 {
    margin-top: 139px;
    margin-bottom: 69px;
}

.optx-delay-139 {
    animation-delay: 1.39s;
}

.optx-space-140 {
    margin-top: 140px;
    margin-bottom: 70px;
}

.optx-delay-140 {
    animation-delay: 1.40s;
}

.optx-space-141 {
    margin-top: 141px;
    margin-bottom: 70px;
}

.optx-delay-141 {
    animation-delay: 1.41s;
}

.optx-space-142 {
    margin-top: 142px;
    margin-bottom: 71px;
}

.optx-delay-142 {
    animation-delay: 1.42s;
}

.optx-space-143 {
    margin-top: 143px;
    margin-bottom: 71px;
}

.optx-delay-143 {
    animation-delay: 1.43s;
}

.optx-space-144 {
    margin-top: 144px;
    margin-bottom: 72px;
}

.optx-delay-144 {
    animation-delay: 1.44s;
}

.optx-space-145 {
    margin-top: 145px;
    margin-bottom: 72px;
}

.optx-delay-145 {
    animation-delay: 1.45s;
}

.optx-space-146 {
    margin-top: 146px;
    margin-bottom: 73px;
}

.optx-delay-146 {
    animation-delay: 1.46s;
}

.optx-space-147 {
    margin-top: 147px;
    margin-bottom: 73px;
}

.optx-delay-147 {
    animation-delay: 1.47s;
}

.optx-space-148 {
    margin-top: 148px;
    margin-bottom: 74px;
}

.optx-delay-148 {
    animation-delay: 1.48s;
}

.optx-space-149 {
    margin-top: 149px;
    margin-bottom: 74px;
}

.optx-delay-149 {
    animation-delay: 1.49s;
}

.optx-space-150 {
    margin-top: 150px;
    margin-bottom: 75px;
}

.optx-delay-150 {
    animation-delay: 1.50s;
}

.optx-space-151 {
    margin-top: 151px;
    margin-bottom: 75px;
}

.optx-delay-151 {
    animation-delay: 1.51s;
}

.optx-space-152 {
    margin-top: 152px;
    margin-bottom: 76px;
}

.optx-delay-152 {
    animation-delay: 1.52s;
}

.optx-space-153 {
    margin-top: 153px;
    margin-bottom: 76px;
}

.optx-delay-153 {
    animation-delay: 1.53s;
}

.optx-space-154 {
    margin-top: 154px;
    margin-bottom: 77px;
}

.optx-delay-154 {
    animation-delay: 1.54s;
}

.optx-space-155 {
    margin-top: 155px;
    margin-bottom: 77px;
}

.optx-delay-155 {
    animation-delay: 1.55s;
}

.optx-space-156 {
    margin-top: 156px;
    margin-bottom: 78px;
}

.optx-delay-156 {
    animation-delay: 1.56s;
}

.optx-space-157 {
    margin-top: 157px;
    margin-bottom: 78px;
}

.optx-delay-157 {
    animation-delay: 1.57s;
}

.optx-space-158 {
    margin-top: 158px;
    margin-bottom: 79px;
}

.optx-delay-158 {
    animation-delay: 1.58s;
}

.optx-space-159 {
    margin-top: 159px;
    margin-bottom: 79px;
}

.optx-delay-159 {
    animation-delay: 1.59s;
}

.optx-space-160 {
    margin-top: 160px;
    margin-bottom: 80px;
}

.optx-delay-160 {
    animation-delay: 1.60s;
}

.optx-space-161 {
    margin-top: 161px;
    margin-bottom: 80px;
}

.optx-delay-161 {
    animation-delay: 1.61s;
}

.optx-space-162 {
    margin-top: 162px;
    margin-bottom: 81px;
}

.optx-delay-162 {
    animation-delay: 1.62s;
}

.optx-space-163 {
    margin-top: 163px;
    margin-bottom: 81px;
}

.optx-delay-163 {
    animation-delay: 1.63s;
}

.optx-space-164 {
    margin-top: 164px;
    margin-bottom: 82px;
}

.optx-delay-164 {
    animation-delay: 1.64s;
}

.optx-space-165 {
    margin-top: 165px;
    margin-bottom: 82px;
}

.optx-delay-165 {
    animation-delay: 1.65s;
}

.optx-space-166 {
    margin-top: 166px;
    margin-bottom: 83px;
}

.optx-delay-166 {
    animation-delay: 1.66s;
}

.optx-space-167 {
    margin-top: 167px;
    margin-bottom: 83px;
}

.optx-delay-167 {
    animation-delay: 1.67s;
}

.optx-space-168 {
    margin-top: 168px;
    margin-bottom: 84px;
}

.optx-delay-168 {
    animation-delay: 1.68s;
}

.optx-space-169 {
    margin-top: 169px;
    margin-bottom: 84px;
}

.optx-delay-169 {
    animation-delay: 1.69s;
}

.optx-space-170 {
    margin-top: 170px;
    margin-bottom: 85px;
}

.optx-delay-170 {
    animation-delay: 1.70s;
}

.optx-space-171 {
    margin-top: 171px;
    margin-bottom: 85px;
}

.optx-delay-171 {
    animation-delay: 1.71s;
}

.optx-space-172 {
    margin-top: 172px;
    margin-bottom: 86px;
}

.optx-delay-172 {
    animation-delay: 1.72s;
}

.optx-space-173 {
    margin-top: 173px;
    margin-bottom: 86px;
}

.optx-delay-173 {
    animation-delay: 1.73s;
}

.optx-space-174 {
    margin-top: 174px;
    margin-bottom: 87px;
}

.optx-delay-174 {
    animation-delay: 1.74s;
}

.optx-space-175 {
    margin-top: 175px;
    margin-bottom: 87px;
}

.optx-delay-175 {
    animation-delay: 1.75s;
}

.optx-space-176 {
    margin-top: 176px;
    margin-bottom: 88px;
}

.optx-delay-176 {
    animation-delay: 1.76s;
}

.optx-space-177 {
    margin-top: 177px;
    margin-bottom: 88px;
}

.optx-delay-177 {
    animation-delay: 1.77s;
}

.optx-space-178 {
    margin-top: 178px;
    margin-bottom: 89px;
}

.optx-delay-178 {
    animation-delay: 1.78s;
}

.optx-space-179 {
    margin-top: 179px;
    margin-bottom: 89px;
}

.optx-delay-179 {
    animation-delay: 1.79s;
}

.optx-space-180 {
    margin-top: 180px;
    margin-bottom: 90px;
}

.optx-delay-180 {
    animation-delay: 1.80s;
}

/*========================================
 Admission Overview
========================================*/

.admpro-overview-section {
    background: linear-gradient(180deg, #ffffff, #f6f9fd);
    overflow: hidden;
    position: relative;
}

.admpro-overview-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .05);
    top: -180px;
    right: -140px;
}

.admpro-overview-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .04);
    left: -80px;
    bottom: -80px;
}

.admpro-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 45px;
}

.admpro-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.admpro-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
    opacity: 0;
    transition: .5s;
    z-index: 2;
}

.admpro-image img {
    width: 100%;
    transition: .7s;
}

.admpro-image:hover img {
    transform: scale(1.08);
}

.admpro-image:hover::before {
    opacity: 1;
}

.admpro-tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.admpro-content h2 {
    font-size: 42px;
    color: #153c65;
    margin-bottom: 25px;
    line-height: 1.2;
}

.admpro-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f6d7d;
    margin-bottom: 35px;
}

.admpro-highlight-box {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border: 1px solid #edf2f7;
}

.admpro-title {
    font-size: 26px;
    font-weight: 700;
    color: #143c66;
    margin-bottom: 30px;
    position: relative;
}

.admpro-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 12px;
    background: #0d6efd;
    border-radius: 50px;
}

.admpro-list {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 30px;
    align-items: center;
}

.admpro-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f8fbff;
    padding: 18px 22px;
    border-radius: 16px;
    border-left: 5px solid #0d6efd;
    transition: .35s;
    color: #445366;
    font-size: 17px;
    font-weight: 500;
}

.admpro-item span {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
}

.admpro-item:hover {
    transform: translateX(10px);
    background: #0d6efd;
    color: #fff;
}

.admpro-item:hover span {
    background: #fff;
    color: #0d6efd;
}

@media(max-width:992px) {

    .admpro-wrapper {
        grid-template-columns: 1fr;
    }

    .admpro-content h2 {
        font-size: 34px;
    }

}

@media(max-width:768px) {

    .admpro-overview-section {
        padding: 70px 0;
    }

    .admpro-highlight-box {
        padding: 25px;
    }

    .admpro-content h2 {
        font-size: 28px;
    }

    .admpro-item {
        font-size: 16px;
        padding: 16px;
    }

    .admpro-item span {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

}

/*=========================================
      Eligibility Criteria
=========================================*/

.medelig-section {
    background: #f5f8fd;
    position: relative;
    overflow: hidden;
}

.medelig-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: #dcecff;
    border-radius: 50%;
    top: -170px;
    left: -130px;
    opacity: .5;
}

.medelig-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: #d9e9ff;
    border-radius: 50%;
    right: -100px;
    bottom: -90px;
    opacity: .4;
}

.medelig-header {
    text-align: center;
    margin-bottom: 70px;
}

.medelig-subtitle {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.medelig-header h2 {
    margin-top: 20px;
    font-size: 42px;
    color: #163d66;
    font-weight: 700;
}

.medelig-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 70px;
    align-items: center;
}

.medelig-photo {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.medelig-photo img {
    width: 100%;
    transition: .7s;
}

.medelig-photo:hover img {
    transform: scale(1.08);
}

.medelig-content {
    margin-bottom: 35px;
}

.medelig-content p {
    color: #5b6778;
    font-size: 17px;
    line-height: 1.9;
}

.medelig-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
    margin: 45px 0 0;
}

.medelig-title {
    font-size: 28px;
    font-weight: 700;
    color: #153d67;
    margin-bottom: 30px;
    position: relative;
}

.medelig-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin-top: 12px;
    border-radius: 50px;
}

.medelig-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.medelig-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e8eef7;
    transition: .35s;
}

.medelig-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.medelig-text {
    font-size: 16px;
    color: #49576a;
    line-height: 1.7;
}

.medelig-item:hover {
    background: #0d6efd;
    transform: translateX(8px);
}

.medelig-item:hover .medelig-text {
    color: #fff;
}

.medelig-item:hover .medelig-icon {
    background: #fff;
    color: #0d6efd;
}

.medelig-or {
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.medelig-or::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #d9e4f2;
}

.medelig-or span {
    position: relative;
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    font-weight: 700;
    padding: 0 22px;
    letter-spacing: 2px;
}

@media(max-width:991px) {

    .medelig-wrapper {
        grid-template-columns: 1fr;
    }

    .medelig-header h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .medelig-section {
        padding: 70px 0;
    }

    .medelig-card {
        padding: 25px;
    }

    .medelig-header h2 {
        font-size: 28px;
    }

    .medelig-item {
        padding: 15px;
    }

    .medelig-text {
        font-size: 16px;
    }

    .medelig-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

}

/*=========================================
      Admission Procedure
=========================================*/

.admflow-section {
    background: linear-gradient(180deg, #ffffff, #f7faff);
    position: relative;
    overflow: hidden;
}

.admflow-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
    top: -140px;
    right: -120px;
}

.admflow-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(13, 110, 253, .04);
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
}

.admflow-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.admflow-label {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admflow-heading h2 {
    font-size: 42px;
    color: #143c66;
    margin: 20px 0;
    font-weight: 700;
}

.admflow-heading p {
    font-size: 17px;
    color: #5d6a7c;
    line-height: 1.9;
}

.admflow-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 70px;
    align-items: center;
}

.admflow-title {
    font-size: 30px;
    color: #143c66;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.admflow-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #0d6efd;
    margin-top: 12px;
    border-radius: 50px;
}

.admflow-timeline {
    position: relative;
    padding-left: 35px;
}

.admflow-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d8e6fb;
}

.admflow-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.admflow-step:last-child {
    margin-bottom: 0;
}

.admflow-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-left: -60px;
}

.admflow-text h4 {
    margin: 0;
    font-size: 18px;
    color: #44556b;
    font-weight: 600;
}

.admflow-step:hover {
    background: #0d6efd;
    transform: translateX(10px);
}

.admflow-step:hover .admflow-text h4 {
    color: #fff;
}

.admflow-step:hover .admflow-number {
    background: #fff;
    color: #0d6efd;
}

.admflow-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.admflow-image img {
    width: 100%;
    transition: .7s;
}

.admflow-image:hover img {
    transform: scale(1.08);
}

@media(max-width:991px) {

    .admflow-wrapper {
        grid-template-columns: 1fr;
    }

    .admflow-heading h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .admflow-section {
        padding: 70px 0;
    }

    .admflow-heading h2 {
        font-size: 28px;
    }

    .admflow-title {
        font-size: 24px;
    }

    .admflow-timeline {
        padding-left: 20px;
    }

    .admflow-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        margin-left: -50px;
        font-size: 14px;
    }

    .admflow-text h4 {
        font-size: 16px;
    }

    .admflow-step {
        padding: 18px;
    }

}

/*=========================================
        Required Documents
=========================================*/

.docreq-section {
    background: #f7faff;
    position: relative;
    overflow: hidden;
}

.docreq-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
    top: -180px;
    left: -120px;
}

.docreq-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(13, 110, 253, .04);
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
}

.docreq-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.docreq-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.docreq-header h2 {
    margin: 20px 0;
    font-size: 42px;
    color: #153d67;
    font-weight: 700;
}

.docreq-header p {
    color: #5d6979;
    font-size: 17px;
    line-height: 1.9;
}

.docreq-wrapper {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 70px;
    align-items: center;
}

.docreq-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.docreq-image img {
    width: 100%;
    transition: .7s;
}

.docreq-image:hover img {
    transform: scale(1.08);
}

.docreq-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
}

.docreq-title {
    font-size: 28px;
    font-weight: 700;
    color: #153d67;
    margin-bottom: 35px;
    position: relative;
}

.docreq-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #0d6efd;
    border-radius: 40px;
    margin-top: 12px;
}

.docreq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.docreq-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fbff;
    border: 1px solid #e8eef8;
    border-radius: 18px;
    padding: 18px;
    transition: .35s;
}

.docreq-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.docreq-text {
    color: #49576a;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.docreq-item:hover {
    background: #0d6efd;
    transform: translateY(-6px);
}

.docreq-item:hover .docreq-icon {
    background: #fff;
    color: #0d6efd;
}

.docreq-item:hover .docreq-text {
    color: #fff;
}

@media(max-width:991px) {

    .docreq-wrapper {
        grid-template-columns: 1fr;
    }

    .docreq-grid {
        grid-template-columns: 1fr;
    }

    .docreq-header h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .docreq-section {
        padding: 70px 0;
    }

    .docreq-card {
        padding: 25px;
    }

    .docreq-header h2 {
        font-size: 28px;
    }

    .docreq-title {
        font-size: 24px;
    }

    .docreq-item {
        padding: 16px;
    }

    .docreq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .docreq-text {
        font-size: 15px;
    }

}