:root {
    /*--maroon:#6B1E2A;
    --maroon-dk:#3D0F16;
    --maroon-lt:#8C2636;*/
    --gold:#C9A84C;
    --gold-lt:#E5C97A;
    --nav-bg:#16100A;
    --overlay:#1C1008;
    --w:#fff;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oswald', sans-serif;
    background: #fff;
    color: #1a1a1a;
    transition: padding-right 0.3s ease;
    overflow-x: hidden;
}
/*.breaking-news-ticker {
  overflow: hidden;
}

.bn-news ul {
  display: flex;
  width: max-content;
}*/

/* ══ FIXED HEADER ══ */
.site-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background:linear-gradient(to bottom, #061c0f 0%, rgb(6 28 15 / 6%) 100%);
    display: flex;
    align-items: center;
    z-index: 500;
    /*box-shadow: 0 2px 16px rgba(0,0,0,.3);*/

}

.hdr-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    min-width: 0;
    width: 440px;
}

/*.hdr-inner .brand img {
    width:325px;
    margin:3px 0;
}*/

.crest {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #000;
    background: rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.crest-abbr {
    font-size: .85rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.brand-text {
    min-width: 0;
    overflow: hidden;
}

.brand-hi {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
}

.brand-en {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid #f28202;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: rgba(255,255,255,.75);
    transition: background .18s,color .18s;
}


    .icon-btn:hover {
        background: rgba(255,255,255,.12);
        color: var(--w);
    }

.bars {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .bars span {
        display: block;
        width: 100%;
        height: 2px;
        background: #f28202;
        border-radius: 2px;
        transition: transform .35s cubic-bezier(.4,0,.2,1),opacity .25s,width .25s;
        transform-origin: center;
    }

.ham.open .bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham.open .bars span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.ham.open .bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══ SEARCH BAR — REMOVED (search is inside overlay only) ══ */

/* ══ FULL-SCREEN OVERLAY ══ */
/*.menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    z-index: 600;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}

    .menu-overlay.open {
        transform: translateX(0);
    }*/
.menu-overlay { 
    position: fixed;
    inset: 0;
    background: var(--overlay);
    z-index: 600;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Overlay header */
.ov-header {
    height: 80px;
    background: #013715;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}
/* Make close button clearly visible */
.ov-close {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.85);
    flex-shrink: 0;
    transition: background .18s,color .18s,border-color .18s;
}

    .ov-close:hover {
        background: rgba(255,255,255,.22);
        color: var(--w);
        border-color: rgba(255,255,255,.5);
    }

.ov-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ov-brand-en {
    font-size: .95rem;
    font-weight: 700;
    color: var(--w);
}

.ov-brand-hi {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Overlay search */
.ov-search {
    background: var(--maroon-dk);
    padding: 14px 20px;
    flex-shrink: 0;
}

.ov-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 14px;
    transition: border-color .2s;
}

    .ov-search-row:focus-within {
        border-bottom-color: var(--gold);
    }

    .ov-search-row input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        color: var(--w);
        font-size: .95rem;
        font-weight: 300;
        padding: 4px 0;
    }

        .ov-search-row input::placeholder {
            color: rgba(255,255,255,.35);
        }

/* Two-column body */
.ov-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* LEFT column */
.ov-left {
    width: 280px;
    flex-shrink: 0;
    background: #011e0c;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid rgba(255,255,255,.06);
    padding: 6px 0 48px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

    .ov-left::-webkit-scrollbar {
        display: none;
    }
/* Chrome/Safari */

/* RIGHT column */
.ov-right {
    flex: 1;
    overflow-y: auto;
    background: #011307;
    padding: 36px 40px 48px;
    display: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .ov-right::-webkit-scrollbar {
        display: none;
    }

    .ov-right.visible {
        display: block;
    }
/* hide scrollbar on mobile body too */
.ov-body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .ov-body::-webkit-scrollbar {
        display: none;
    }

/* Section label */
.sec-label {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 22px 22px 7px;
}

/* Primary nav button */
.p-btn {
    width: 100%;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px 13px 19px;
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: color .18s,background .18s,border-color .18s;
}

    .p-btn:hover {
        color: var(--w);
        background: rgba(255,255,255,.04);
        border-left-color: var(--gold);
    }

    .p-btn.active {
        color: #fff;
        background: #002b10;
        border-left-color: #ff8c00;
    }

.chev {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: rgba(255,255,255,.3);
    transition: transform .25s,color .18s;
}

.p-btn.active .chev {
    transform: rotate(90deg);
    color: var(--gold);
}

.p-btn:hover .chev {
    color: var(--gold-lt);
}

.p-btn.direct .chev {
    opacity: .5;
}

/* ── ACCORDION (mobile sub-links) ── */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
    background: rgba(255,255,255,.025);
}

    .acc-body.open {
        max-height: 1200px;
    }

.acc-inner {
    padding: 10px 18px 16px 26px;
}

.a-colhead {
    font-size: .59rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 14px 0 6px;
}

    .a-colhead:first-child {
        margin-top: 4px;
    }

.a-link {
    display: block;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .83rem;
    font-weight: 400;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .15s,padding-left .15s;
}

    .a-link:hover {
        color: var(--gold-lt);
        padding-left: 5px;
    }

/* ── DESKTOP SUB-PANEL ── */
.sub-panel {
    display: none;
}

    .sub-panel.active {
        display: block;
    }

.panel-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--w);
    margin-bottom: 5px;
}

.panel-bar {
    width: 44px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 26px;
}

.col-head {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 9px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(201,168,76,.22);
}

.col-subhead {
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin: 14px 0 5px;
}

.s-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color .15s,padding-left .15s;
}

    .s-link:hover {
        color: #f28202;
        padding-left: 6px;
    }

.s-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f28202;
    color: #000;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 20px;
    margin-top: 18px;
    transition: background .18s;
}

    .s-cta:hover {
        background: #f28202;
    }

/* Utility bottom */
.ov-util {
    background: #f28202;
    flex-shrink: 0;
    padding: 13px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.u-link {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: color .18s;
}

    .u-link:hover {
        color: var(--gold-lt);
    }



/* ══ PAGE CONTENT ══ */
/*.page {
    margin-top: 64px;
}*/

.hero {
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(135deg,rgba(61,15,22,.9) 0%,rgba(61,15,22,.45) 60%,rgba(0,0,0,.1) 100%), linear-gradient(to bottom,var(--maroon-dk) 0%,#5A1624 100%);
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
    margin-top: -85px;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .06;
        background-image: repeating-linear-gradient(45deg,var(--gold) 0,var(--gold) 1px,transparent 0,transparent 50%);
        background-size: 20px 20px;
    }

.hero-inner {
    /*position: absolute;
    max-width: 600px;
    width: 100%;*/
    text-align:center;
    /*top:40%;*/
}

.hero-label {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .16em;
    /* text-transform: uppercase; */
    color: #fff;
    margin-bottom: 5px;
    text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}

.hero-title {
    font-size: clamp(1.8rem,5vw,3.6rem);
    font-weight: 700;
    color: var(--w);
    line-height: 1.12;
    margin-bottom: 15px;
    text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}

.hero-body {
    color: #fffffff0;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    /*max-width: 460px;*/
    text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}

.hero-btns {
    /*display: flex;*/
    gap: 12px;
    flex-wrap: wrap;
    text-align:center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 26px;
    transition: all .2s;
}

.hero-btn-primary {
    background: #ff8c00;
    color: #000000;
}

    .hero-btn-primary:hover {
        background: #ff8c00;
        color: #000;
    }

.hero-btn-ghost {
    color: var(--w);
    border: 2px solid rgba(255,255,255,.4);
}

    .hero-btn-ghost:hover {
        background: rgba(255,255,255,.1);
        color: var(--w);
        border-color: rgba(255,255,255,.7);
    }

.hero-hint {
    position: absolute;
    bottom: 22px;
    right: 24px;
    font-size: .7rem;
    color: rgba(255,255,255,.3);
    font-style: italic;
}

.cards {
    padding: 56px 24px;
    background: #F5F3EF;
}

.cards-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cards-label {
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 4px;
}

.cards-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #e0dbd4;
    border-top: 4px solid var(--maroon);
    padding: 26px 22px;
    text-decoration: none;
    color: #1a1a1a;
    transition: box-shadow .2s,transform .2s;
    display: block;
}

    .card:hover {
        box-shadow: 0 8px 28px rgba(107,30,42,.12);
        transform: translateY(-2px);
        color: #1a1a1a;
    }

.card-icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 7px;
}

.card-text {
    font-size: .84rem;
    color: #767676;
    line-height: 1.65;
}

.card-arrow {
    font-size: .8rem;
    font-weight: 700;
    color: var(--maroon);
    margin-top: 13px;
}

svg {
    display: block;
}

/*Custom CSS*/
.main-header-two {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu-two__top {
    position: relative;
    display: block;
}

.main-menu-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 55px 0;
    background-color: #013715;
}

.main-menu-two__contact-list {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

    .main-menu-two__contact-list li {
        position: relative;
        display: flex;
        align-items: center;
    }

        .main-menu-two__contact-list li + li {
            margin-left: 46px;
        }

        .main-menu-two__contact-list li .text {
            margin-left: 0px;
        }

            .main-menu-two__contact-list li .text p {
                font-size: 16px;
                font-weight: 500;
                color: #fff;
                line-height: 16px;
                margin-bottom: 0;
            }

                .main-menu-two__contact-list li .text p a {
                    color: #000;
                    -webkit-transition: all 500ms ease;
                    transition: all 500ms ease;
                    text-decoration: none;
                }

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 180px;
}

    .search-box input {
        width: 100%;
        padding: 5px 40px 5px 15px;
        border-radius: 25px;
        border: none;
        outline: none;
        background: #013715;
        color:#fff;
    }

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
input::placeholder {
    color:#fff;
}
.search-icon i {color:#fff;cursor:pointer;}

.language-box {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.accessibility-box {
    display: flex;
    gap: 8px;
}

    .accessibility-box button {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #fff;
        padding: 0px 6px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
    }

.main-menu-two__contact-list li:before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 2px;
    left: -25px;
    width: 1px;
    background-color: #000;
}

.main-menu-two__contact-list li:first-child:before {
    display: none;
}
/*.website-slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.website-slider-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/
.topnavstrip {
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(125,185,232,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to bottom, #013715 0%, rgba(125, 185, 232, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#007db9e8',GradientType=0 );
    z-index: 99;
    /*min-height:350px;*/
}
/*.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #6b1e2a;
}*/
.website-slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.website-slider-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3); /* 🔥 zoom level */
    transform-origin: center;
}
/* Zoom animation */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15); /* zoom level */
    }
}
.website-slider-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /*background: linear-gradient(to bottom, #061c0f 0%, rgba(125, 185, 232, 0) 100%);*/
    z-index: 2;
}
.hero-inner {
    z-index: 3;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4), rgb(6 28 15 / 30%));*/
    z-index: 1;
}
.hero-inner-content {
    margin:17% 0 0 0;
}
.mx-background-top-linear {
    background: -webkit-linear-gradient(45deg, #f28202 65%, #061c0f 33%); 
    background: linear-gradient(132deg, #f28202 65%, #061c0f 33%);
}
.custom-btn-secondary-lang {background:transparent;border:0;}
.custom-btn-secondary-lang:hover, .custom-btn-secondary-lang:focus, .btn.custom-btn-secondary-lang:first-child:active {background:transparent;border:0;}
.accessibility-box button.custom-access {background:#f28202;}
/* MENU BUTTON */
.menu-btn {
    border: 1px solid #ff8c00;
    color: #ff8c00;
    background: transparent;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

/* Hamburger icon */
.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    width: 20px;
    height: 2px;
    background: #ff8c00;
    display: block;
    transition: 0.3s;
}
.menu-icon span.toggle-one {
    width: 14px;
}
.menu-icon span.toggle-two {
    width: 20px;
}
.menu-icon span.toggle-three {
    width: 10px;
}

/* Hover effect */
.menu-btn:hover {
    background: #ff8c00;
    color: #000;
}

.menu-btn:hover .menu-icon span {
    background: #000;
}

.custom-btn-warning {background:#f28202;color:#000;border:#f28202;font-weight:600;font-size:14px;padding:5px 8px;margin-top:15px;}
.custom-btn-warning:hover, .btn.custom-btn-warning:first-child:active, .custom-btn-warning:focus {background:#f28202;border:#f28202;}
/* ===== UNIVERSITY NEWS (SCOPED) ===== */
.uni-news-section {
    background: #eff1f3;padding:60px 0;
}

.uni-news-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
}

.uni-news-view-all {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.uni-news-view-all .uni-arrow {
    background: #ff8c00;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uni-news-view-all .uni-arrow i {
    font-size:20px;
}

/* Card */
.uni-news-card {
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, .1);
        border-radius: 5px;
}

.uni-news-card:hover {
    transform: translateY(-5px);
}

/* Image */
.uni-news-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 5px;
}

/* Multi image (3rd card) */
.uni-news-img.multi-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 240px;
}

.uni-news-img.multi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.uni-news-content {
    padding: 20px;position: relative;
}

.uni-news-content h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #111;
}
.uni-news-img {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.uni-news-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}
ul.home-blog-meta {
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #fff;
    margin: 0;
    list-style: none;
    padding: 0;
    border-top-right-radius: 10px;
    padding-top: 20px;
    padding-right: 25px;
}
ul.home-blog-meta li {
    display: inline-block;
    /*text-transform: uppercase;*/
    font-weight: 500;
    margin-left: 10px;
}
ul.home-blog-meta::before {
    position: absolute;
    left: -1px;
    top: -26px;
    content: "";
    height: 26px;
    width: 20px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 20px 0 0 #fff;
}
ul.home-blog-meta::after {
    position: absolute;
    right: -20px;
    bottom: 0;
    content: "";
    height: 33px;
    width: 20px;
    border-bottom-left-radius: 17px;
    box-shadow: 0 20px 0 0 #fff;
}
.btn-read-more {color:#6a6a6a;}
/* ===== VERTICAL RIBBON ===== */
.admission-ribbon {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ff8c00;
    color: #000;
    padding: 12px 10px;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: center;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect */
.admission-ribbon:hover {
    background: #e67600;
}
/* Card */
.Admission-Notice {padding:60px 0;background:#eff1f3;}
.slick-prev, .slick-next {display:none!important;}
.blog-card {
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

/* Image */
.blog-img {
    position: relative;
}

/*.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}*/

/* Badge */
/*.badge-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}*/

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6c4cff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    color: #fff;
    font-size: 24px;
}

/* Content */
/*.blog-content {
    padding: 20px;
}*/

/*.meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}*/

/*.read-btn {
    border: 1px solid #ccc;
    padding: 6px 16px;
    border-radius: 6px;
    background: transparent;
    transition: 0.3s;
}*/

.read-btn:hover {
    background: #ff8c00;
    color: #2c2c2c;
}

/* Center card spacing */
.center-card {
    margin-top: 20px;
}
.inversweb-meta-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
}
.inversweb-meta-list li {
    margin: 0;
    padding: 0;
    font-size: 16px;
}
.news-slider .slick-slide {
    padding: 0 10px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
    overflow: hidden;
}

.badge-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
}

.blog-content {
    padding: 20px;
    min-height:200px;
}

.blog-content p {
        font-size: 16px;
    color: #747474;
}

.meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.blog-title {
    font-weight: 500;
    margin-bottom: 10px;
    color:#111;
    font-size:20px;
}

.read-btn {
    border: 1px solid #f1f1f1;
    padding: 6px 14px;
    background: #f1f1f1;
    border-radius: 5px;
    color: #2c2c2c;
    font-size: 15px;
}

/* Arrow Fix */
.slick-prev:before, .slick-next:before {
    color: #000;
}
/* Shine */
.hover14 figure {
	position: relative;
    margin:0;
}
.hover14 figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.hover14 figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/*---social engagement---*/
.social-engagement {
    background:#fff;
    padding:50px 0;
}
/*---client logo---*/
.logo-section {
    background: #f3f3f3;
}

/* Each logo */
.logo-item {
    padding: 10px;
}

.logo-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;

    background: #fff;
    padding: 15px;
    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* Hover */
.logo-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Remove arrows (optional) */
.logo-slider .slick-prev,
.logo-slider .slick-next {
    display: none !important;
}
/*---footer---*/
.footer-section {
    /*background: linear-gradient(135deg, #013d1f, #045c2c);*/
    color: #fff;
    padding: 50px 0 0;
    border-radius: 40px 40px 0 0;
    position: relative;
    background: url(../images/footer-banner.jpg) 0 0 / cover #013d1f;
}

/* Top */
.footer-brand {
    font-size: 14px;
    line-height: 1.2;
}

.footer-social a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 6px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ff7a00;
}

/* Divider */
.footer-line {
    border-color: rgba(255,255,255,0.2);
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    /*padding-left: 15px;*/
}
.footer-links li:hover {
    color: #ff8c00;
}
.footer-links li i {
    font-size: 16px;
}
.footer-bottom p {margin-bottom:0;font-size: 15px;}
/*.footer-links li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #fff;
}*/

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bottom */
.footer-bottom {
    margin-top: 30px;
    padding: 15px 0;
    background: rgba(0,0,0,0.2);
    font-size: 13px;
}
.footer-links li a {color:#fff;text-decoration:none;font-size: 15px;}
.footer-links li a:hover {color:#ff8c00;}
.news-slider .slick-dots li button {display:none;}

.menu-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/*----about----*/
.about-section {
      padding: 60px 0;
    }

    /* Left Image Shape */
    .custom-img {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      /*transform: rotate(-5deg);*/
      /*border: 6px solid #ff8c00;*/
    }

    .custom-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* About Text */
    .about-title {
      font-size: 42px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
      margin-bottom: 15px;
    }

    .about-text {
      color: #555;
      line-height: 1.7;
    }

    /*.btn-custom {
      background: #ff8c00;
      color: #fff;
      border-radius: 25px;
      padding: 10px 25px;
      border: none;
    }*/
    .btn-custom.btn-custom-second {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(90deg, #ffb000, #ff7a00);
      color: #fff;
      border-radius: 50px;
      padding: 8px 10px 8px 20px;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }
    .btn-custom.btn-custom-second .arrow {
      width: 35px;
      height: 35px;
      background: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 10px;
      font-size: 16px;
      transition: 0.3s;
    }
    .btn-custom.btn-custom-second:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
  color: #fff;
}

.btn-custom.btn-custom-second:hover .arrow {
  transform: translateX(5px);
}

    .btn-custom:hover {
      background: #e67600;
    }

    /* Card Style */
    .profile-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      position: relative;
      background: #fff;
    }

    .profile-card img {
      width: 100%;
      /*height: 220px;*/
      object-fit: cover;
    }

    .profile-info {
          background: #003b15;
    /* background: url(../images/img.png) no-repeat 0 0; */
    color: #fff;
    padding: 2px 0 20px 0;
    border-top-left-radius: 75px;
    border-top-right-radius: 70px;
    text-align: center;
    margin-top: -62px;
    position: relative;
    z-index: 2;
    }

    .profile-info h5 {
      margin: 0;
      font-weight: 600;
    }

    .profile-info p {
      margin: 0;
      font-size: 14px;
    }
/*---tab---*/
/* Tabs */
.custom-tabs {
  display: flex;
  gap: 10px;
}

.custom-tabs .nav-link {
  background: #ddd;
  color: #333;
  border-radius: 12px 12px 0 0;
  padding: 15px 30px;
  font-weight: 500;
  width:100%;
  font-size: 18px;
}

.custom-tabs .nav-link.active {
  background: #ff8c00;
  color: #000;
}

/* Main Section */
.tab-Infrastructure {padding:80px 0;}
.infra-box {
  background: #03351f;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  position: relative;
}

/* Left Content */
.infra-content {
  padding: 60px;
  color: #fff;
}

.infra-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.infra-text {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* List */
.infra-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 30px;
}

.infra-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.icon-circle {
  width: 35px;
  height: 35px;
  background: #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

/* Button */
.btn-custom {
  background: #ff8c00;
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 0px;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

/* Right Image */
.infra-image {
  position: relative;
  height: 100%;
}

.infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(29% 0, 100% 0, 100% 100%, -2% 100%);
}

/* Slanted Effect */
.infra-image::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 0;
  width: 20px;
  height: 100%;
  background: #ff9800;
  transform: skewX(-20deg);
  z-index: 2;
}

/* Hover Effects */
/*.infra-box:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}*/

.infra-list li:hover {
  transform: translateX(5px);
}
.custom-tabs li.nav-item {width:24%;}
/*.icon-circle {
  transition: all 0.3s ease-in-out;
}

.infra-list li:hover .icon-circle {
  transform: rotate(360deg) scale(1.1);
}*/
/* Section */
.links-section {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  /*box-shadow:0 0 40px rgba(0, 0, 0, .1);*/
}

/* Title */
.links-title {
  font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  margin-bottom: 20px;
}

/* Search Bar */
.search-boxs {
  display: flex;
  border: 1px solid #464646;
  border-radius: 8px;
  overflow: hidden;
}
.search-boxs i {
    margin:12px;
}

.search-boxs input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  outline: none;
}

.search-btns {
  background: #061c0f;
  color: #fff;
  border: none;
  padding: 0 60px;
}

/* Fix placeholder color */
.search-boxs input::placeholder {
  color: #777;   /* visible gray */
  opacity: 1;    /* important for Firefox */
}

/* For better browser support */
.search-boxs input::-webkit-input-placeholder {
  color: #777;
}

.search-boxs input:-ms-input-placeholder {
  color: #777;
}

/* Grid */
.links-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /*border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;*/
}

.link-item {
  padding: 30px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
  font-weight: 500;
  background: #fff;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 17px;
}
.link-item a {
  color:#000;
  font-size: 17px;text-decoration:none;
}
.link-item:nth-child(4), .link-item:nth-child(8), .link-item:nth-child(12) {
    border-right: 0;
}
.link-item:nth-child(9), .link-item:nth-child(10), .link-item:nth-child(11), .link-item:nth-child(12) {
    border-bottom: 0;
}

/* Hover */
.link-item:hover {
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: #fff;
}

/*----academic unit-----*/
/* Section */
.services {
  padding: 80px 0;
  text-align: center;
  background: #eff1f3;
}

/* Heading */
.section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ff4d2d;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
    color: #222;
}

/* Card */
.service-card {
      background: #fff;
    padding: 40px 20px 30px;
    border-top-left-radius: 100px;
    border-top-right-radius: 10px;
    /* border-bottom-left-radius: 150px; */
    border-bottom-right-radius: 100px;
    position: relative;
    transition: 0.3s;
    height: 100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* Highlight Card */
.service-card.active {
  background: #000;
  color: #fff;
}

.service-card.active p {
  color: #ccc;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  background:#03351f;
  color:#fff;
}

/* Icon Circle */
.icon-box {
  width: 80px;
  height: 80px;
  background: #03351f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.icon-box img {width:40px;height:40px;}

.service-card.active .icon-box {
  background: #ff4d2d;
  color: #fff;
}


/* Image Circle */
.service-img {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto 0;
  border: 6px solid #ff8c00;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.service-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* Arrow Button */
.arrow-btn {
  position: absolute;
  right: 20px;
  bottom: 120px;
  width: 40px;
  height: 40px;
  background: #ff4d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .icon-box {
    background:#ff8c00;/*#03351f*/
}
.service-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}
.service-card:hover .icon-box i, .service-card:hover p {
    color:#fff;
}
/*.tags {
    top: 0;
    bottom: 0;
    left: 11%;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
}
.triangle-left {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 25px solid #ff8c00;
    border-bottom: 20px solid transparent;
    z-index: 999;
}*/
.website-link {/*background:#eff1f3;*/padding:20px 0 60px 0;}
.bn-news {
    background:rgb(0 0 0 / 7%);
}
.btn-custom.about-btn {
    border-top-right-radius:25px;
    border-bottom-left-radius:25px;
    border-bottom-right-radius:25px;
    background:linear-gradient(365deg, #ff9800, #ff6a00);
}
.about-btn i {font-size:25px;}
/*----university profile page start----*/
.banner-wrapper {
    overflow: hidden;
}
#secondary-banner.triangle-banner {
    overflow: hidden;
    text-align: left;
}
#secondary-banner {
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center center;
}
#secondary-banner, .menu>ul, footer {
    position: relative;
}
#secondary-banner.triangle-banner .inner-content {margin:0;}
#secondary-banner .inner-content {
    display: block;
    position: relative;
    z-index: 2;
}
#secondary-banner .inner-content .inner {
    vertical-align: middle;
    height: 350px;
    width: 100%;
}
#secondary-banner .inner-content h1 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
    padding: 10% 0;
    letter-spacing: -1px;
    text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}
.banner-light-font {
    font-weight: 300;
}
.about-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
}
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-banner .inner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(12 101 45 / 31%);
    border-top: 5px solid #0c652d; 
}

.sidebar h5 {font-size:1.5rem;}

.menu-item {
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 50px;
  cursor: pointer;
  background: #f1f3f5;
}

.menu-item.active a {
    color: #fff;
}

.menu-item a {color: #464646;text-decoration:none;}

.menu-item:hover a {
  color: #fff;
}

.menu-item:hover {
  background: linear-gradient(365deg, #ff9800, #ff6a00);
  color: #fff;
}

.menu-item.active {
  background: linear-gradient(365deg, #ff9800, #ff6a00);
  color: #fff;
}

.content-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(12 101 45 / 31%);
  border-top: 5px solid #0c652d; 
}
.content-box p {font-size:16px;font-weight:500;color:#6e6e6e;text-align: justify;}

.info-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.info-card.highlight {
  background: #0d3b66;
  color: #fff;
}
.accordion-button {
    background-color: #e9ecef;border-radius: 10px;
}
.accordion-button:not(.collapsed) {
    background-color: #e9ecef;color: #0c652d;
}
.accordion-item {
    margin-bottom: 10px;border-radius: 10px;
}
.accordion-button:focus {
    box-shadow: 0 2px 8px rgb(12 101 45 / 31%);
}
.accordion-body {
    color:#6e6e6e;
}
.tableheading {
    background: #e9ecef !important;
    clear: both;
    color: #000;
    border-left: 4px solid #001909;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    padding: 10px;
    text-align: left;
}
.custom-cells-section .light-card {
    background-color: #f2f2f4;
    color: #333;
}

.custom-cells-section .cell-card {
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    transition: all 0.3s ease;
}
.custom-cells-section .cell-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}
.custom-cells-section .more-text {
    display: none;
    margin-top: 0;
}
.custom-cells-section .gradient-card .read-toggle-btn {
    color: #fff;
}
.custom-cells-section .read-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    margin-top: 0;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}
.custom-cells-section .gradient-card {
    background: #00571f;
    color: #fff;
}
.custom-cells-section .gradient-card p {
    color: #fff;
}

.research-section {
  position: relative;
}

.tag {
  color: orange;
  font-weight: 600;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
}

.research-card {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  position: relative;
  box-shadow: 0 10px 25px rgb(0 0 0 / 17%);
  transition: 0.3s;
  text-align: center;
}

.research-card:hover {
  transform: translateY(-5px);
}

.card-img {
  border-radius: 15px;
}

.icon-circles {
  width: 60px;
  height: 60px;
  background: #d7f0df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto 10px;
  font-size: 24px;
  position: relative;
  z-index: 2;
}

.research-card h6 {
  font-size: 15px;
  margin-top: 10px;
}
/*----Research Centres page end----*/
/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
.inside-page-common .site-header { 
    background: #0b2415; 
}
/*New grid css 23/01/26 by Vasudev Sharma*/
.table-grid-view tbody tr:first-child {
    background: linear-gradient(183deg, #ede5ff 0, #dfdaed 100%);
    font-weight: 500;
}
.table-grid-view tbody tr:first-child td, .table-grid-view tbody tr:first-child th {
    background: #f3f3fb;
    padding: 10px 5px;
}
.table-grid-view tbody tr:not(:first-child):nth-child(even) {
    background: #FFF;
}
.table-grid-view tbody tr:not(:first-child):nth-child(odd) {
    background: #F3F3FB;
}
table.table-grid-view th:first-child {
    border-left: 1px solid #e9e9e9;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
table.table-grid-view th:last-child {
    border-right: 1px solid #e9e9e9;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
table.table-grid-view tr th {
    background: #e3eef1;
    color: #000000;
    font-weight: 400;
    padding: 5px;
}
table.table-grid-view tr td, table.table-grid-view tr th {
    border-width: 0;
    font-size:13px;
}
table.table-grid-view {
    border-collapse: separate !important;
    border-spacing: 0 10px;
    border: none !important;
    /*table-layout: fixed;*/
}
table.table-grid-view tbody td:first-child {
    border-left: 1px solid #e9e9e9;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; 
	color: #333;
}
table.table-grid-view tbody td:last-child {
    border-right: 1px solid #e9e9e9;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
table.table-grid-view tbody td {
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    padding: 5px;
    vertical-align: middle;
    /*font-size: 100%;*/
    word-wrap: break-word;
    font-size:16px;
}
.table-grid-view tr.header-style {
    background:linear-gradient(to bottom, rgba(236 241 247) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgb(236 241 247) 100%);
}
.table-grid-view tr.header-style th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.table-grid-view tr.header-style th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.table-theme.table thead th {
    background: #064973;
    color: #fff;
    vertical-align: middle;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
}
#breadcrumbs {padding:15px 0;}
.grid-btn {
    color: #ffffff;
    background: linear-gradient(66deg, #ff7300, #ffb100);
    border-color: #ff9800;
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 15px;
    line-height: 16px;
}
.grid-btn:hover{
    background: linear-gradient(66deg, #ffb100, #ff7300);
    color: #ffffff;
    border-color: #ff9800;
}