:root{

    --primary:#0F4C81;
    --secondary:#F4B400;
    --dark:#1E293B;
    --gray:#64748B;
    --light:#F8FAFC;
    --white:#ffffff;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;
    color:var(--dark);
    background:var(--light);

}

/* =========================================================
   INNER PAGES
   AKMV COLLEGE WEBSITE
========================================================= */

.inner-page {
    background: #f5f8fc;
    min-height: auto;
}


/* =========================================================
   PAGE HERO
========================================================= */

.inner-page-hero {
    position: relative;

    margin: 24px 0 0;

    padding: 0px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef6fc 55%,
            #e8f2fa 100%
        );

    border: 1px solid #e1eaf2;

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(20, 55, 90, 0.05);
}


/* =========================================================
   HERO DECORATIONS
========================================================= */

.inner-hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.inner-hero-decoration-1 {
    width: 360px;
    height: 360px;

    top: -275px;
    right: -110px;

    background: rgba(15, 76, 129, 0.055);
}

.inner-hero-decoration-2 {
    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -135px;

    background: rgba(244, 180, 0, 0.08);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.inner-breadcrumb {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin: 0;

    padding: 18px 0 8px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.5;
}

.inner-breadcrumb a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #0f4c81;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.inner-breadcrumb a:hover {
    color: #0b3c66;

    transform: translateX(1px);
}

.inner-breadcrumb a i {
    font-size: 13px;
}

.inner-breadcrumb > i {
    color: #94a3b8;

    font-size: 10px;
}

.breadcrumb-current {
    color: #64748b;

    font-weight: 500;
}


/* =========================================================
   TITLE
========================================================= */

.inner-title-wrapper {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 4px 0 25px;
}

.inner-title-accent {
    display: block;

    width: 5px;
    height: 43px;

    flex: 0 0 5px;

    border-radius: 20px;

    background: #f4b400;
}

.inner-page-title {
    margin: 0;

    color: #1e293b;

    font-size: clamp(34px, 4vw, 46px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.6px;
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.inner-page-section {
    padding: 34px 0 70px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.inner-page-sidebar {
    position: sticky;

    top: 25px;

    width: 100%;
}


/*
|--------------------------------------------------------------------------
| Hide empty sidebar
|--------------------------------------------------------------------------
*/

.inner-page-sidebar:empty {
    display: none;
}


/* =========================================================
   WORDPRESS WIDGET
========================================================= */

.inner-page-sidebar .widget {
    margin: 0 0 20px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #e3ebf3;

    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(20, 55, 90, 0.06);

    overflow: hidden;
}

.inner-page-sidebar .widget:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SIDEBAR WIDGET TITLE
========================================================= */

.inner-page-sidebar .widget-title {
    position: relative;

    margin: 0 0 17px;

    padding: 0 0 14px;

    color: #1e293b;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 800;
}

.inner-page-sidebar .widget-title::before {
    content: "";

    display: inline-block;

    width: 5px;
    height: 20px;

    margin-right: 10px;

    vertical-align: -4px;

    border-radius: 10px;

    background: #0f4c81;
}

.inner-page-sidebar .widget-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    border-radius: 10px;

    background: #f4b400;
}


/* =========================================================
   SIDEBAR LIST
========================================================= */

.inner-page-sidebar ul {
    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}

.inner-page-sidebar ul li {
    margin: 0 !important;

    padding: 0 !important;

    border-bottom: 1px solid #edf1f5;
}

.inner-page-sidebar ul li:last-child {
    border-bottom: 0;
}


/* =========================================================
   SIDEBAR LINKS
========================================================= */

.inner-page-sidebar ul li a {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    padding: 11px 4px;

    color: #475569 !important;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding 0.2s ease;
}

.inner-page-sidebar ul li a::before {
    content: "\F285";

    flex: 0 0 auto;

    margin-top: 6px;

    font-family: "bootstrap-icons";

    color: #9aabba;

    font-size: 8px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.inner-page-sidebar ul li a:hover {
    color: #0f4c81 !important;

    padding-left: 9px;

    background: #f5f9fd;

    border-radius: 7px;
}

.inner-page-sidebar ul li a:hover::before {
    color: #f4b400;

    transform: translateX(2px);
}


/* =========================================================
   ACTIVE SIDEBAR ITEM
========================================================= */

.inner-page-sidebar .current-menu-item > a,
.inner-page-sidebar .current_page_item > a {
    color: #0f4c81 !important;

    font-weight: 700;

    background: #eef6fd;

    border-radius: 7px;

    padding-left: 10px;
}

.inner-page-sidebar .current-menu-item > a::before,
.inner-page-sidebar .current_page_item > a::before {
    color: #f4b400;
}


/* =========================================================
   SIDEBAR SUBMENU
========================================================= */

.inner-page-sidebar ul ul {
    margin: 0 0 8px 12px !important;

    padding: 0 0 0 10px !important;

    border-left: 2px solid #e6edf4;
}

.inner-page-sidebar ul ul li {
    border-bottom: 0;
}

.inner-page-sidebar ul ul li a {
    padding: 8px 4px;

    font-size: 13px;
}


/* =========================================================
   MAIN CONTENT CARD
========================================================= */

.inner-page-content {
    position: relative;

    margin: 0;

    background: #ffffff;

    border: 1px solid #e2eaf2;

    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(20, 55, 90, 0.07);

    overflow: hidden;
}


/* =========================================================
   CONTENT BODY
========================================================= */

.inner-content-body {
    padding: 36px 40px 42px;
}


/* =========================================================
   CONTENT TYPOGRAPHY
========================================================= */

.inner-content-body p {
    margin: 0 0 21px;

    color: #475569;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}

.inner-content-body p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HEADINGS
========================================================= */

.inner-content-body h2,
.inner-content-body h3,
.inner-content-body h4,
.inner-content-body h5,
.inner-content-body h6 {
    color: #1e293b;

    line-height: 1.3;

    font-weight: 800;
}

.inner-content-body h2 {
    margin: 34px 0 16px;

    font-size: 29px;
}

.inner-content-body h3 {
    margin: 30px 0 15px;

    font-size: 24px;
}

.inner-content-body h4 {
    margin: 26px 0 13px;

    font-size: 20px;
}

.inner-content-body h5 {
    margin: 22px 0 12px;

    font-size: 18px;
}


/* =========================================================
   LINKS
========================================================= */

.inner-content-body a {
    color: #0f4c81;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.inner-content-body a:hover {
    color: #0b3c66;

    text-decoration: underline;
}


/* =========================================================
   LISTS
========================================================= */

.inner-content-body ul,
.inner-content-body ol {
    margin: 0 0 24px;

    padding-left: 25px;

    color: #475569;

    font-size: 15px;

    line-height: 1.8;
}

.inner-content-body li {
    margin-bottom: 7px;
}

.inner-content-body ul li::marker {
    color: #0f4c81;
}

.inner-content-body ol li::marker {
    color: #0f4c81;

    font-weight: 700;
}


/* =========================================================
   IMAGES
========================================================= */

.inner-content-body img {
    max-width: 100%;

    height: auto;

    border-radius: 12px;
}

.inner-content-body figure {
    margin: 28px 0;
}


/* =========================================================
   TABLES
========================================================= */

.inner-content-body table {
    width: 100%;

    margin: 28px 0;

    border-collapse: separate;

    border-spacing: 0;

    border: 1px solid #e1e8ef;

    border-radius: 12px;

    overflow: hidden;
}

.inner-content-body table th {
    padding: 14px 16px;

    background: #0f4c81;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-align: left;
}

.inner-content-body table td {
    padding: 13px 16px;

    border-top: 1px solid #e8edf2;

    color: #475569;

    font-size: 14px;
}

.inner-content-body table tr:nth-child(even) td {
    background: #f8fafc;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.inner-content-body blockquote {
    margin: 28px 0;

    padding: 22px 25px;

    background: #f2f7fc;

    border-left: 4px solid #0f4c81;

    border-radius: 0 12px 12px 0;

    color: #475569;

    font-size: 16px;

    font-style: italic;
}


/* =========================================================
   WARNING / NOTICE
========================================================= */

.inner-content-body .warning,
.inner-content-body .notice,
.inner-content-body .alert {
    margin: 28px 0;

    padding: 18px 20px;

    background: #fff9e8;

    border-left: 4px solid #f4b400;

    border-radius: 10px;

    color: #66521a;
}


/* =========================================================
   HR
========================================================= */

.inner-content-body hr {
    margin: 30px 0;

    border: 0;

    border-top: 1px solid #e5ebf1;
}


/* =========================================================
   WORDPRESS ALIGNMENTS
========================================================= */

.inner-content-body .alignleft {
    float: left;

    margin: 0 25px 20px 0;
}

.inner-content-body .alignright {
    float: right;

    margin: 0 0 20px 25px;
}

.inner-content-body .aligncenter {
    display: block;

    margin: 25px auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.inner-content-body .wp-block-button a,
.inner-content-body .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 22px;

    border: 0;

    border-radius: 8px;

    background: #0f4c81;

    color: #ffffff;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.inner-content-body .wp-block-button a:hover,
.inner-content-body .btn:hover {
    background: #0b3c66;

    color: #ffffff;

    transform: translateY(-2px);
}

.inner-page-sidebar .widget > h4 {
    position: relative;

    display: flex !important;
    align-items: center;

    width: 100% !important;

    margin: 0 0 18px !important;
    padding: 14px 16px 14px 20px !important;

    background: #f5f9fd !important;
    color: #0f4c81 !important;

    border: 1px solid #e3ebf3 !important;
    border-radius: 10px !important;

    text-align: left !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;

    box-shadow: none !important;
}

.inner-page-sidebar .widget > h4::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10px;
    bottom: 10px;

    width: 5px;

    background: #f4b400;

    border-radius: 0 4px 4px 0;
}

.inner-page-sidebar .widget > h4::after {
    content: "";

    position: absolute;

    right: 16px;
    top: 50%;

    width: 8px;
    height: 8px;

    background: #0f4c81;

    border-radius: 50%;

    transform: translateY(-50%);
}

.w3eden .wpdm-glass-card__excerpt, .w3eden .wpdm-glass-card__meta {display: none !important;}
.wpdm-glass-card__title a, .wpdm-glass-card__categories a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .inner-page-content {
        border-radius: 18px;
    }

    .inner-content-body {
        padding: 32px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .inner-page-hero {
        margin-top: 20px;

        border-radius: 15px;
    }

    .inner-page-section {
        padding: 30px 0 55px;
    }

    .inner-page-sidebar {
        position: static;

        margin-bottom: 5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .inner-page-hero {
        margin-top: 16px;

        border-radius: 13px;
    }

    .inner-breadcrumb {
        padding: 14px 0 8px;

        font-size: 13px;
    }

    .inner-title-wrapper {
        gap: 11px;

        padding-bottom: 20px;
    }

    .inner-title-accent {
        width: 4px;
        height: 36px;

        flex-basis: 4px;
    }

    .inner-page-title {
        font-size: 34px;
    }

    .inner-page-section {
        padding: 25px 0 45px;
    }

    .inner-content-body {
        padding: 25px 20px 30px;
    }

    .inner-content-body p {
        font-size: 15px;

        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .inner-page-hero {
        margin-top: 12px;

        border-radius: 11px;
    }

    .inner-page-title {
        font-size: 30px;
    }

    .inner-page-sidebar .widget {
        padding: 20px;

        border-radius: 14px;
    }

    .inner-page-content {
        border-radius: 14px;
    }

    .inner-content-body {
        padding: 22px 16px 28px;
    }

    .inner-content-body p {
        font-size: 14.5px;
    }

    .inner-content-body table {
        display: block;

        overflow-x: auto;

        white-space: nowrap;
    }

    .inner-content-body .alignleft,
    .inner-content-body .alignright {
        float: none;

        display: block;

        margin: 20px auto;
    }

}

/* =========================================================
   SIDEBAR COLLAPSE - MOBILE ONLY
========================================================= */

@media (max-width: 991px) {

    .inner-page-sidebar .widget > h4 {
        position: relative;
        cursor: pointer;

        padding-right: 50px !important;

        user-select: none;
    }

    /* Arrow */

    .inner-page-sidebar .widget > h4::after {
        content: "\F282";

        position: absolute;

        right: 18px;
        top: 50%;

        width: auto;
        height: auto;

        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;

        color: #0F4C81;

        font-family: "bootstrap-icons";

        font-size: 16px;

        transform: translateY(-50%);

        transition: transform .3s ease;
    }


    /* Collapsed */

    .inner-page-sidebar .widget.is-collapsed > h4 ~ * {
        display: none !important;
    }


    /* Expanded */

    .inner-page-sidebar .widget.is-expanded > h4::after {
        transform: translateY(-50%) rotate(180deg);
    }

}