﻿/*====================================================
Google Font
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/*====================================================
Global
====================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Roboto',sans-serif;
    background:#f7f8fb;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

.container-fluid{
    padding-left:35px;
    padding-right:35px;
}

/*====================================================
TOP HEADER
====================================================*/

.top-header{

    background:#162c86;

    height:48px;

    display:flex;

    align-items:center;

    color:#fff;

    font-size:14px;

}

.top-header .row{

    width:100%;

}

.top-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.top-links li{

    display:flex;

    align-items:center;

    gap:8px;

    cursor:pointer;

    font-weight:500;

}

.top-links li:hover{

    color:#ffd200;

}

.top-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:25px;

}

/*=============================
Search Box
=============================*/

.search-box{

    position:relative;

}

.search-box input{

    width:280px;

    height:36px;

    border:none;

    border-radius:30px;

    padding:0 45px 0 20px;

    outline:none;

    font-size:14px;

}

.search-box button{

    position:absolute;

    right:4px;

    top:4px;

    width:28px;

    height:28px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#162c86;

}

/*=============================
Font Size
=============================*/

.font-size{

    display:flex;

    gap:15px;

}

.font-size a{

    color:#fff;

    font-weight:700;

    font-size:15px;

}

.font-size a:hover{

    color:#ffd200;

}

/*=============================
Language
=============================*/

.language{

    cursor:pointer;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:6px;

}

/*====================================================
LOGO HEADER
====================================================*/

.logo-header{

background:#fff;

padding: 9px 0 2px;

border-bottom:1px solid #e8e8e8;
}

.logo{

width: 104px;
}

.logo-header .row{

    align-items:center;

}

.logo-header h1{

font-size: 42px;

font-weight:900;

color:#112c90;

text-align:center;

letter-spacing:1px;

margin-bottom: 5px;

text-transform:uppercase;
}

.logo-header h2{

    font-size:52px;

    color:#c31717;

    text-align:center;

    font-weight:900;

    text-transform:uppercase;

}

/*====================================================
NAVBAR
====================================================*/

.navbar{

    background:#fff;

    padding:0;

    min-height:72px;

    border-bottom:1px solid #ececec;

    z-index:999;

}

.home-btn{

width: 54px;

height: 50px;

display:flex;

justify-content:center;

align-items:center;

background:#183a9e;

border-radius:8px;

color: #fff !important;

font-size:22px;

margin-right:25px;
}

.home-btn:hover{

    background:#10276e;

    color:#fff;

}

.navbar-nav{

    width:100%;

    gap:0;

    justify-content:space-between;

}

.navbar-nav .nav-item{

/* flex:1 1 0; */
}

.navbar-nav .nav-link{

color:#17358d;

font-size:15px;

font-weight: 800;

text-transform:uppercase;

padding:24px 14px;

position:relative;

width:100%;

display:flex;

justify-content:center;

align-items:center;

text-align:center;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav .nav-item.show > .nav-link {

    background: transparent !important;

    background-color: transparent !important;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav .nav-item.show > .nav-link {

    color: #c31717 !important;

}

/* Dropdown Toggle Caret Icon */

.navbar-nav .nav-link.dropdown-toggle::after{

display:inline-block;

margin-left:6px;

vertical-align:2px;

content:"";

border-top:5px solid currentColor;

border-right:4px solid transparent;

border-bottom:0;

border-left:4px solid transparent;

position:static;

width:auto;

height:auto;

transition:.2s;

}

.navbar-nav .nav-item:hover > .nav-link.dropdown-toggle::after {

    border-top-color: #c31717;

}

/*====================================================
Dropdown
====================================================*/

.dropdown-menu{

position: absolute;

border:none !important;

border-radius:12px !important;

padding: 5px 0 1px 0 !important;

min-width:240px;

margin-top:0 !important;

box-shadow:0 15px 45px rgba(0,0,0,.15) !important;

overflow: visible !important;

background: #ffffff !important;

}

/* Red top bar accent */
.dropdown-menu::before {

content: "";

position: absolute;

top: 0;

left: 0;

right: 0;

height: 5px;

background-color: #c31717 !important;

border-top-left-radius: 12px;

border-top-right-radius: 12px;

z-index: 10;

}

.dropdown-item{

padding:14px 24px;

font-size:15px;

font-weight:500;

color:#333 !important;

border-bottom: 1px dotted #ccc;

background: transparent;

}

.dropdown-item:last-child {

border-bottom: none;

}

.dropdown-item:hover,
.dropdown-item:focus {

    background:#183a9e !important;

    color:#ffffff !important;

}

/* Show dropdown on hover for desktop */

@media(min-width:992px){

.navbar .dropdown:hover > .dropdown-menu{

display:block !important;

opacity: 1 !important;

visibility: visible !important;

}

.dropdown-submenu{
position:relative;
}

.dropdown-submenu .dropdown-submenu-menu{
top:0;
left:100%;
margin-top:-1px;
display:none;
}

.dropdown-submenu:hover > .dropdown-submenu-menu{
display:block !important;
}

}

/*====================================================
Navbar Toggle
====================================================*/

.navbar-toggler{

    border:none;

    box-shadow:none!important;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*====================================================
Sticky Navbar
====================================================*/

.navbar{

    position:sticky;

    top:0;

    z-index:9999;

}

/*====================================================
Responsive
====================================================*/

@media(max-width:1199px){

.logo-header h1{

font-size:42px;

}

.logo-header h2{

font-size:36px;

}

.navbar-nav{

gap:0;

}

}

@media(max-width:991px){

.top-header{

height:auto;

padding:12px 0;

}

.top-links{

justify-content:center;

margin-bottom:12px;

flex-wrap:wrap;

}

.top-right{

justify-content:center;

flex-wrap:wrap;

}

.logo{

width:90px;

margin:auto;

}

.logo-header h1{

font-size:30px;

margin-top:10px;

}

.logo-header h2{

font-size:24px;

}

.navbar{

padding:10px 0;

}

.navbar-nav .nav-link{

padding:14px 18px;

}

.home-btn{

display:none;

}

}

@media(max-width:767px){

.container-fluid{

padding-left:15px;

padding-right:15px;

}

.search-box input{

width:180px;

}

.top-links{

gap:18px;

font-size:13px;

}

.top-right{

gap:15px;

}

.logo-header{

text-align:center;

}

.logo-header h1{

font-size:22px;

line-height:1.4;

}

.logo-header h2{

font-size:18px;

line-height:1.4;

}

}


/*====================================================
HERO SECTION
====================================================*/

.hero{
    position:relative;
    overflow:hidden;
    background:#f5f5f5;
}

.heroSwiper{
    width:100%;
    height: 572px;
}

.heroSwiper .swiper-slide{
    position:relative;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Optional dark overlay */

.heroSwiper .swiper-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.08);
    z-index:1;
}

.heroSwiper .swiper-slide img{
    position:relative;
    z-index:0;
}

/*====================================================
SLIDER ARROWS
====================================================*/

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

width: 44px;

height:58px;

background: #cc1919db;

border-radius: 26%;

color:#fff;

transition:.3s;

box-shadow:0 8px 25px rgba(0,0,0,.18);
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{

    background:#d31d23;
    transform:scale(1.08);

}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{

    font-size:20px;
    font-weight:700;

}

.heroSwiper .swiper-button-prev{

    left:25px;

}

.heroSwiper .swiper-button-next{

    right:25px;

}

/*====================================================
SLIDER PAGINATION
====================================================*/

.heroSwiper .swiper-pagination{

    bottom:30px !important;

}

.heroSwiper .swiper-pagination-bullet{

    width:14px;
    height:14px;
    opacity:1;
    background:#ffffff;
    margin:0 6px !important;

}

.heroSwiper .swiper-pagination-bullet-active{

    width:38px;
    border-radius:20px;
    background:#183a9e;

}

/*====================================================
YOUTUBE BUTTON
====================================================*/

.youtube-btn{

position:absolute;

right:28px;

top: 8%;

width: 52px;

height: 52px;

border-radius:50%;

background:#ff0000;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size: 28px;

z-index:99;

box-shadow:0 10px 30px rgba(0,0,0,.25);

transition:.35s;
}

.youtube-btn:hover{

    color:#fff;

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.28);

}

/*====================================================
LATEST NEWS
====================================================*/

.latest-news{

background: #ffffff;

padding: 0 16px 0 2px;

display:flex;

border-radius: 40px;

border: 1px solid #ececec;

align-items:center;

gap: 7px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

position:relative;

z-index:10;

margin-top: -90px;
}

/* Left Yellow Badge */

.news-title{

min-width:220px;

height:60px;

background:#ffc400;

color:#1a1a1a;

display:flex;

align-items:center;

justify-content:center;

gap:10px;

border-radius: 42px;

font-size:22px;

font-weight:700;

flex-shrink:0;
}

.news-title i{

    font-size:24px;

}

/*====================================================
MARQUEE
====================================================*/

.news-marquee{

flex:1;

/* background:#f8f8f8; */

/* border:1px solid #ececec; */

border-radius:50px;

overflow:hidden;

height:54px;

display:flex;

align-items:center;

padding:0 20px;
}

.news-track{

    display:flex;

    align-items:center;

    gap:40px;

    white-space:nowrap;

    width:max-content;

    min-width:100%;

    color:#16398f;

    font-size:16px;

    font-weight:500;

    will-change:transform;

}

.news-item{

    display:inline-flex;

    align-items:center;

}

/*====================================================
NEWS ARROWS
====================================================*/

.news-arrow{

    display:flex;

    gap:10px;

    flex-shrink:0;

}

.news-arrow button{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#183a9e;

    color:#fff;

    font-size:18px;

    transition:.3s;

    display:flex;

    justify-content:center;

    align-items:center;

}

.news-arrow button i{

    line-height:1;

}

.news-arrow button:hover{

    background:#d32027;

    transform:translateY(-2px);

}

.news-arrow button:disabled{

    opacity:.55;

    cursor:not-allowed;

    transform:none;

}

/*====================================================
HERO RESPONSIVE
====================================================*/

@media(max-width:1400px){

.heroSwiper{

height:580px;

}

}

@media(max-width:1200px){

.heroSwiper{

height:500px;

}

.news-title{

min-width:180px;

font-size:18px;

}

}

@media(max-width:991px){

.heroSwiper{

height:420px;

}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

width:48px;
height:48px;

}

.youtube-btn{

width:60px;
height:60px;
font-size:28px;
bottom:80px;

}

.latest-news{

flex-direction:column;
align-items:stretch;
gap:15px;
padding:18px;

}

.news-title{

width:100%;

}

.news-arrow{

justify-content:center;

}

}

@media(max-width:768px){

.heroSwiper{

height:300px;

}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

display:none;

}

.news-marquee{

height:48px;

}

.news-marquee marquee{

font-size:14px;

}

.youtube-btn{

right:15px;
bottom:25px;

}

}

@media(max-width:576px){

.heroSwiper{

height:240px;

}

.news-title{

font-size:16px;
height:52px;

}

.news-marquee{

padding:0 12px;

}

.news-arrow button{

width:40px;
height:40px;

}

}



/*====================================================
SECTION SPACING
====================================================*/

.section{
    position:relative;
    padding:80px 0;
}

.section-sm{
    padding:60px 0;
}

.section-lg{
    padding:120px 0;
}

/*====================================================
BACKGROUND UTILITIES
====================================================*/

.bg-primary-light{
    background:#eef4ff;
}

.bg-light-gray{
    background:#f8f9fb;
}

.bg-white{
    background:#fff;
}

.bg-blue{
    background:#17358d;
}

.bg-yellow{
    background:#ffc107;
}

/*====================================================
COMMON TITLES
====================================================*/

.section-title{
    margin-bottom:50px;
}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#17358d;

    margin-bottom:12px;

}

.section-title p{

    color:#666;

    font-size:17px;

    line-height:30px;

}

/*====================================================
BUTTONS
====================================================*/

.btn-theme{

    background:#17358d;

    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.btn-theme:hover{

    background:#d41f26;

    color:#fff;

    transform:translateY(-2px);

}

.btn-outline-theme{

    border:2px solid #17358d;

    color:#17358d;

    background:#fff;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-outline-theme:hover{

    background:#17358d;

    color:#fff;

}

/*====================================================
CARDS
====================================================*/

.card-theme{

    background:#fff;

    border:none;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.card-theme:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*====================================================
ICONS
====================================================*/

.icon-box{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef4ff;

    color:#17358d;

    font-size:30px;

}

/*====================================================
SHADOW UTILITIES
====================================================*/

.shadow-sm-custom{

    box-shadow:0 5px 15px rgba(0,0,0,.06);

}

.shadow-md-custom{

    box-shadow:0 12px 35px rgba(0,0,0,.10);

}

.shadow-lg-custom{

    box-shadow:0 25px 55px rgba(0,0,0,.18);

}

/*====================================================
BORDER RADIUS
====================================================*/

.radius-10{

    border-radius:10px;

}

.radius-15{

    border-radius:15px;

}

.radius-20{

    border-radius:20px;

}

.radius-30{

    border-radius:30px;

}

/*====================================================
TRANSITIONS
====================================================*/

.transition{

    transition:.35s ease;

}

/*====================================================
NAVBAR ACTIVE STATE
====================================================*/

.navbar-nav .nav-item.active>.nav-link{

    color:#d41f26;

}

.navbar-nav .nav-item.active>.nav-link::after{

    width:100%;

}

/*====================================================
DROPDOWN ANIMATION
====================================================*/

@media(min-width:992px){

.dropdown-menu{

    display:block;

    visibility:hidden;

    opacity:0;

    transform:translateY(20px);

    transition:.35s;

    pointer-events:none;

}

.nav-item:hover>.dropdown-menu{

    visibility:visible;

    opacity:1;

    transform:translateY(0);

    pointer-events:auto;

}

}

/*====================================================
LINK HOVER
====================================================*/

a{

    transition:.3s;

}

a:hover{

    text-decoration:none;

}

/*====================================================
FORM CONTROLS
====================================================*/

.form-control{

    height:44px;

    border-radius:10px;

    border:1px solid #ddd;

    box-shadow:none;

}

label.form-label.fw-semibold.text-dark.fs-7.mb-1 {
    font-size: 13px;
}

.form-control:focus{

    border-color:#17358d;

    box-shadow:none;

}

textarea.form-control{

    min-height:140px;

}

/*====================================================
LIST STYLE
====================================================*/

.list-check li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

}

.list-check li::before{

    content:"Ã¢Å“â€œ";

    position:absolute;

    left:0;

    color:#17358d;

    font-weight:bold;

}

/*====================================================
IMAGE HOVER
====================================================*/

.image-hover{

    overflow:hidden;

}

.image-hover img{

    transition:.5s;

}

.image-hover:hover img{

    transform:scale(1.08);

}

/*====================================================
SCROLLBAR
====================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#17358d;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d41f26;

}

/*====================================================
SELECTION
====================================================*/

::selection{

    background:#17358d;

    color:#fff;

}

/*====================================================
FOCUS
====================================================*/

button:focus,
input:focus,
textarea:focus,
select:focus{

    outline:none;

    box-shadow:none;

}

/*====================================================
ACCESSIBILITY
====================================================*/

a:focus-visible,
button:focus-visible{

    outline:3px solid #ffc107;

    outline-offset:3px;

}

/*====================================================
ANIMATIONS
====================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.float{

    animation:float 3s ease-in-out infinite;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

/*====================================================
RESPONSIVE UTILITIES
====================================================*/

@media(max-width:991px){

.section{

    padding:60px 0;

}

.section-title h2{

    font-size:32px;

}

}

@media(max-width:767px){

.section{

    padding:45px 0;

}

.section-title{

    margin-bottom:30px;

}

.section-title h2{

    font-size:26px;

}

.section-title p{

    font-size:15px;

    line-height:26px;

}

.btn-theme,
.btn-outline-theme{

    padding:12px 24px;

    font-size:15px;

}

}


/*====================================================
RESPONSIVE - EXTRA LARGE DEVICES (1600px)
====================================================*/
@media (max-width:1600px){

    .container-fluid{
        padding-left:30px;
        padding-right:30px;
    }

    .logo-header h1{
        font-size: 42px;
    }

    .logo-header h2{
        font-size: 48px;
    }

    .heroSwiper{
        height: 572px;
    }

}

/*====================================================
LARGE DESKTOP (1400px)
====================================================*/
@media (max-width:1400px){

    .container-fluid{
        padding-left:25px;
        padding-right:25px;
    }

    .logo{
        width:105px;
    }

    .logo-header h1{
        font-size:46px;
    }

    .logo-header h2{
        font-size:40px;
    }

    .navbar-nav .nav-link{
        padding:22px 12px;
        font-size:14px;
    }

    .heroSwiper{
        height:540px;
    }

    .news-title{
        min-width:200px;
        font-size:20px;
    }

}

/*====================================================
LAPTOP (1200px)
====================================================*/
@media (max-width:1199px){

    .logo{
        width:90px;
    }

    .logo-header h1{
        font-size:38px;
    }

    .logo-header h2{
        font-size:32px;
    }

    .search-box input{
        width:220px;
    }

    .top-right{
        gap:15px;
    }

    .heroSwiper{
        height:470px;
    }

    .youtube-btn{
        width:62px;
        height:62px;
        font-size:30px;
    }

    .latest-news{
        padding:16px 20px;
    }

}

/*====================================================
TABLET (991px)
====================================================*/
@media (max-width:991px){

    .top-header{
        height:auto;
        padding:15px 0;
    }

    .top-links{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
        margin-bottom:15px;
    }

    .top-right{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .logo-header{
        text-align:center;
        padding:20px 0;
    }

    .logo{
        margin:auto;
        margin-bottom:15px;
    }

    .logo-header h1{
        font-size:30px;
        line-height:1.3;
    }

    .logo-header h2{
        font-size:24px;
        line-height:1.3;
    }

    .navbar{
        padding:8px 0;
    }

    .navbar-collapse{
        background:#fff;
        margin-top:12px;
        border-radius:10px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .navbar-nav{
        padding:15px;
    }

    .navbar-nav .nav-link{
        padding:14px 15px;
        border-bottom:1px solid #eee;
    }

    .home-btn{
        display:none;
    }

    .heroSwiper{
        height:420px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        width:45px !important;
        height:45px !important;
    }

    .youtube-btn{
        width:55px;
        height:55px;
        font-size:24px;
        bottom:20px;
        right:20px;
    }

    .latest-news{
        flex-direction:column;
        align-items:stretch;
        gap:15px;
    }

    .news-title{
        width:100%;
        min-width:100%;
    }

    .news-arrow{
        justify-content:center;
    }

}

/*====================================================
MOBILE LANDSCAPE (768px)
====================================================*/
@media (max-width:768px){

    .container-fluid{
        padding-left:15px;
        padding-right:15px;
    }

    .top-links{
        font-size:13px;
    }

    .search-box input{
        width:170px;
        height:34px;
    }

    .logo{
        width:75px;
    }

    .logo-header h1{
        font-size:24px;
    }

    .logo-header h2{
        font-size:18px;
    }

    .heroSwiper{
        height:320px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }

    .news-title{
        height:50px;
        font-size:16px;
    }

    .news-marquee{
        height:46px;
    }

    .news-marquee marquee{
        font-size:14px;
    }

}

/*====================================================
SMALL MOBILE (576px)
====================================================*/
@media (max-width:576px){

    .top-header{
        font-size:12px;
    }

    .search-box{
        width:100%;
    }

    .search-box input{
        width:100%;
    }

    .font-size{
        gap:10px;
    }

    .language{
        font-size:13px;
    }

    .logo{
        width:65px;
    }

    .logo-header h1{
        font-size:18px;
    }

    .logo-header h2{
        font-size:15px;
    }

    .heroSwiper{
        height:240px;
    }

    .youtube-btn{
        width:50px;
        height:50px;
        font-size:20px;
    }

    .latest-news{
        padding:12px;
    }

    .news-title{
        font-size:15px;
    }

    .news-arrow button{
        width:38px;
        height:38px;
        font-size:14px;
    }

}

/*====================================================
VERY SMALL DEVICES (400px)
====================================================*/
@media (max-width:400px){

    .logo-header h1{
        font-size:16px;
    }

    .logo-header h2{
        font-size:13px;
    }

    .heroSwiper{
        height:200px;
    }

    .news-marquee marquee{
        font-size:13px;
    }

}


.navbar{
    transition:all .35s ease;
}

.navbar.navbar-scrolled{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}


.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 46%);
}



/*=========================================
Quick Links
=========================================*/

.quick-links-section{
    position: relative;
    margin-top: 15px;
    z-index: 50;
    padding-bottom: 40px;
}

.quick-links-wrapper{
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    display: flex;
    overflow: hidden;
    border: 1px solid #ececec;
}

.quick-item{
    flex: 1;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: .3s;
}

.quick-item:not(:last-child){
    border-right:1px solid #ececec;
}

.quick-item:hover{
    background:#f8fbff;
}

.quick-item span{
    margin-top:18px;
    color:#111;
    font-size:17px;
    font-weight:600;
}

.quick-icon{
    font-size:42px;
    position:relative;
    transition:.3s;
}

.quick-item:hover .quick-icon{
    transform:translateY(-5px);
}

/* Icon Colors */

.student{
    color:#0d6efd;
}

.faculty{
    color:#6f42c1;
}

.campus{
    color:#fd7e14;
}

.exam{
    color:#198754;
}

.result{
    color:#e91e63;
}

.download{
    color:#0dcaf0;
}

.contact{
    color:#0d6efd;
}

.grievance{
    color:#2c3e50;
}

.notify{
    position:absolute;
    top:-6px;
    right:-14px;
    font-size:15px;
    color:#6c757d;
}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px){

    .quick-links-wrapper{
        display:grid;
        grid-template-columns:repeat(4,1fr);
    }

    .quick-item{
        border-bottom:1px solid #ececec;
    }

    .quick-item:nth-child(4n){
        border-right:none;
    }

}

@media(max-width:767px){

    .quick-links-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .quick-item{
        min-height:120px;
    }

    .quick-item:nth-child(even){
        border-right:none;
    }

    .quick-icon{
        font-size:34px;
    }

    .quick-item span{
        font-size:15px;
    }

}


/*==================================================
HOME ABOUT SECTION
==================================================*/

.home-about{
    position:relative;
    padding: 30px 0;
    background:#f8f9fd;
    overflow:hidden;
}

.home-about::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    left:-220px;
    bottom:-180px;
    border-radius:50%;
    background:rgba(28,65,194,.05);
}

.home-about::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    right:-180px;
    top:-120px;
    border-radius:50%;
    background:rgba(72,42,194,.05);
}

/*==================================================
TOP LEADER CARDS
==================================================*/

.leader-card{
    text-align:center;
    margin-bottom:20px;
}

.leader-img{
    width:160px;
    height:160px;
    margin:auto;
    overflow:hidden;
    border-radius:14px;
    border:2px solid #5d73f7;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.leader-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.leader-card h4{
    margin-top:18px;
    margin-bottom:4px;
    color:#1c2d8b;
    font-size:22px;
    font-weight:800;
    text-transform:uppercase;
}

.leader-card p{
    margin:0;
    color:#1c2d8b;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    line-height:1.4;
}

/*==================================================
VICE CHANCELLOR CARD
==================================================*/

.vc-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    padding:35px;

}

/* Decorative Blue Circle */

.vc-card::before{

content:"";

position:absolute;

width:260px;

height:260px;

border-radius:50%;

left:-150px;

bottom: -140px;

background:linear-gradient(180deg,#2247d8,#102eaf);
}

/* Decorative Watermark */

.vc-card::after{

    content:"âš•";

    position:absolute;

    right:45px;

    bottom:15px;

    font-size:170px;

    opacity:.04;

    color:#2247d8;

    font-weight:700;

}

/*==================================================
HEADER
==================================================*/

.vc-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.title-icon{

    width:58px;

    height:58px;

    border-radius:16px;

    background:linear-gradient(180deg,#2f53ea,#1838c8);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    box-shadow:0 8px 25px rgba(24,56,200,.35);

}

.vc-header h2{

font-size: 32px;

color:#18246d;

font-weight:800;

margin:0;
}

.vc-header span{

    display:block;

    width:55px;

    height:4px;

    margin-top:10px;

    border-radius:30px;

    background:#2145d8;

}

/*==================================================
IMAGE
==================================================*/

.vc-image{

    position:relative;

    overflow:hidden;

    border-radius:22px 22px 0 0;

    background:#fff;

}

.vc-image img{

    width:100%;

    display:block;

    position:relative;

    z-index:1;

}

.vc-wave{

    position:absolute;

    left:0;

    bottom:-2px;

    width:100%;

    height:95px;

    z-index:2;

}

.vc-wave path{

    fill:#1746b5;

}

.quote-circle{

    position:absolute;

    width:70px;

    height:70px;

    right:25px;

    bottom:20px;

    border-radius:50%;

    background:#f5b400;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    z-index:3;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}


/*==================================================
CONTENT
==================================================*/

.vc-content{

padding-left: 15px;
}

.vc-content h3{

font-size: 28px;

font-weight:800;

color:#17358d;

margin-bottom:8px;
}

.vc-content h5{

font-size: 20px;

font-weight:500;

color:#333;

margin-bottom:15px;
}

.vc-content .line{

width:60px;

height:4px;

border-radius:20px;

background:#2145d8;

margin-bottom: 10px;
}

.vc-content p{

font-size: 16px;

line-height:1.9;

color:#444;

margin-bottom:25px;
}

.signature{

    width:170px;

}

/*==================================================
BUTTON
==================================================*/

.vc-btn{

    margin-top:35px;

    width:100%;

    background:linear-gradient(90deg,#17358d,#3a1ba6);

    color:#fff;

    border-radius:14px;

    height:64px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    font-size:20px;

    font-weight:600;

    transition:.35s;

}

.vc-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(23,53,141,.25);

}

.vc-btn i:first-child{

    font-size:22px;

}

.vc-btn i:last-child{

    margin-left:auto;

    padding-right:25px;

}

/*==================================================
DECORATIVE DOTS
==================================================*/

.vc-card .dots{

    position:absolute;

    left:25px;

    top:110px;

    width:70px;

    height:70px;

    background-image:radial-gradient(#b7c5ff 2px, transparent 2px);

    background-size:12px 12px;

}


/*==================================================
NEWS CARD
==================================================*/

.news-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    height:100%;
    display:flex;
    flex-direction:column;
}

/*==================================================
NEWS HEADER
==================================================*/

.news-header{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px 55px;
    background:linear-gradient(90deg,#0f2d9b 0%, #162d9d 45%, #5121b8 100%);
    overflow:hidden;
}

/* White Curved Wave */

.news-header::after{
    content:"";
    position:absolute;
    left:-5%;
    bottom:-42px;
    width:110%;
    height:90px;
    background:#fff;
    border-radius:50%;
}

.news-title{
    display:flex;
    align-items:center;
    gap:18px;
    position:relative;
    z-index:2;
}

.news-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.news-title h2{
    margin:0;
    color:#fff;
    font-size: 32px;
    font-weight:800;
}

.view-all{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:4px;
    padding:12px 14px; 
    border-radius:50px;
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.view-all:hover{
    background:#fff;
    color:#17358d;
}

/*==================================================
BODY
==================================================*/

.news-body{
    padding: 0px 12px 20px 22px;
    flex:1;
    margin-top: -21px;
    z-index: 9;
    overflow:hidden;
    position:relative;
    height: 400px;
}

.news-list{
    display:flex;
    flex-direction:column;
    will-change:transform;
    transition:transform .7s ease-in-out;
    height: 300px;
}

/*==================================================
NEWS ITEM
==================================================*/

.news-item{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding: 10px 0;
    border-bottom:1px solid #eceef8;
}

.news-item:last-child{
    border-bottom:none;
}

.news-item-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:#f3f5ff;
    color:#2344d8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    transition:.35s;
}

.news-item:hover .news-item-icon{
    background:#2344d8;
    color:#fff;
}

.news-content{
    flex:1;
}

.news-content h5{
    margin:0 0 12px;
    color:#1c1f3b;
    font-size: 16px;
    line-height:1.5;
    font-weight: 500;
}

.news-content a{
    color:#2145d8;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.35s;
}

.news-content a:hover{
    gap:18px;
}

/*==================================================
FOOTER
==================================================*/

.news-footer{
    padding:0 34px 34px;
}

.news-btn{
    width:100%;
    height:64px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    border-radius:14px;
    color:#fff;
    background:linear-gradient(90deg,#17358d,#5220ba);
    font-size:20px;
    font-weight:600;
    transition:.35s;
}

.news-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(23,53,141,.25);
}

.news-btn i:last-child{
    margin-left:auto;
    padding-right:24px;
}

/*==================================================
ACCESSIBILITY BUTTON
==================================================*/



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .news-title h2{
        font-size:30px;
    }

    .news-content h5{
        font-size:18px;
    }

    .vc-header h2{
        font-size:34px;
    }

}

@media(max-width:991px){

    .news-card{
        margin-top:20px;
    }

    .news-header{
        padding:20px 22px 50px;
    }

    .news-title h2{
        font-size:28px;
    }

    .view-all{
        padding:10px 18px;
        font-size:14px;
    }

    .news-body{
        padding:5px 24px 15px;
    }

    .news-item{
        gap:18px;
    }

    .news-content h5{
        font-size:17px;
    }

}

@media(max-width:767px){

    .news-header{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .news-title h2{
        font-size:24px;
    }

    .news-item{
        flex-direction:column;
    }

    .news-item-icon{
        margin-bottom:10px;
    }

    .news-btn{
        font-size:17px;
        height:56px;
    }

    .accessibility-btn{
        right:15px;
        bottom:20px;
        top:auto;
    }

    .accessibility-btn a{
        width:56px;
        height:56px;
        font-size:24px;
    }

}


/*==================================================
DECORATIVE ELEMENTS
==================================================*/

/* Floating Dots */

.home-about .shape-dots{
    position:absolute;
    width:120px;
    height:120px;
    background-image:radial-gradient(#c6d4ff 2px, transparent 2px);
    background-size:14px 14px;
    opacity:.7;
}

.home-about .dots-left{
    left:30px;
    top:180px;
}

.home-about .dots-right{
    right:40px;
    bottom:100px;
}

/* Blue Glow */

.blue-glow{
    position:absolute;
    width:280px;
    height:280px;
    background:#3458ff;
    border-radius:50%;
    filter:blur(120px);
    opacity:.08;
}

.glow-left{
    left:-80px;
    bottom:-120px;
}

.glow-right{
    right:-80px;
    top:-80px;
}

/*==================================================
CARD HOVER
==================================================*/

.vc-card,
.news-card{

    transition:.35s ease;

}

.vc-card:hover,
.news-card:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*==================================================
LEADER HOVER
==================================================*/

.leader-card{

    transition:.35s;

}

.leader-card:hover{

    transform:translateY(-8px);

}

.leader-card:hover .leader-img{

    transform:scale(1.04);

    box-shadow:0 18px 40px rgba(0,0,0,.14);

}

.leader-img{

    transition:.35s;

}

/*==================================================
IMAGE EFFECT
==================================================*/

.vc-image{

    transition:.4s;

}

.vc-image:hover{

    transform:translateY(-5px);

}

.vc-image img{

    transition:.4s;

}

.vc-image:hover img{

    transform:scale(1.04);

}

/*==================================================
BUTTON EFFECT
==================================================*/

.vc-btn,
.news-btn{

    overflow:hidden;

    position:relative;

}

.vc-btn::before,
.news-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:rgba(255,255,255,.18);

    transform:skewX(-25deg);

    transition:.8s;

}

.vc-btn:hover::before,
.news-btn:hover::before{

    left:130%;

}

/*==================================================
NEWS ITEM
==================================================*/

.news-item{

    transition:.3s;

}

.news-item:hover{

    padding-left:10px;

}

.news-item:hover h5{

    color:#2145d8;

}

/*==================================================
TITLE UNDERLINE
==================================================*/

.vc-header span,
.news-title::after{

    transition:.35s;

}

.vc-card:hover .vc-header span{

    width:90px;

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .7s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
CUSTOM SHADOW
==================================================*/

.shadow-blue{

    box-shadow:0 20px 45px rgba(27,71,215,.18);

}

.shadow-light{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1400px){

    .vc-header h2{
        font-size:36px;
    }

    .news-title h2{
        font-size:30px;
    }

}

@media (max-width:1199px){

    .leader-img{
        width:140px;
        height:140px;
    }

    .leader-card h4{
        font-size:20px;
    }

    .vc-content{
        padding-left:10px;
    }

    .vc-content h3{
        font-size:28px;
    }

    .vc-content p{
        font-size:17px;
    }

}

@media (max-width:991px){

    .home-about{
        padding:60px 0;
    }

    .leader-card{
        margin-bottom:30px;
    }

    .vc-card{
        padding:25px;
    }

    .vc-content{
        padding:25px 0 0;
    }

    .vc-btn,
    .news-btn{
        height:56px;
        font-size:16px;
    }

}

@media (max-width:768px){

    .leader-img{
        width:120px;
        height:120px;
    }

    .leader-card h4{
        font-size:18px;
    }

    .leader-card p{
        font-size:13px;
    }

    .vc-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .vc-header h2{
        font-size:26px;
    }

    .news-title h2{
        font-size:24px;
    }

    .vc-content h3{
        font-size:24px;
    }

    .vc-content p{
        font-size:16px;
        line-height:1.7;
    }

}

@media (max-width:576px){

    .home-about{
        padding:45px 0;
    }

    .vc-card,
    .news-card{
        border-radius:16px;
    }

    .leader-img{
        width:100px;
        height:100px;
    }

    .title-icon,
    .news-icon{
        width:48px;
        height:48px;
        font-size:20px;
    }

    .vc-header h2,
    .news-title h2{
        font-size:22px;
    }

    .vc-btn,
    .news-btn{
        font-size:15px;
        padding:0 16px;
    }

}

/*==================================
JS Animation Classes
==================================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
    transition:.8s ease;
}

/* Accessibility Button */

.accessibility-btn{
    opacity:0;
    transform:translateX(40px);
    transition:.35s;
}

.accessibility-btn.show{
    opacity:1;
    transform:translateX(0);
}

/* News Hover */

.news-item.active{
    padding-left:12px;
}

.news-item.active .news-item-icon{
    background:#17358d;
    color:#fff;
}

/* Ripple */

.vc-btn,
.news-btn{
    overflow:hidden;
    position:relative;
}

.ripple{
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    transform:translate(-50%,-50%);
    animation:ripple .7s linear;
}

@keyframes ripple{

    from{

        width:0;
        height:0;
        opacity:.7;

    }

    to{

        width:600px;
        height:600px;
        opacity:0;

    }

}


.news-header .news-title {
    background: no-repeat;
}


/*=========================================================
OUR DEPARTMENTS
=========================================================*/

.department-section{
    padding: 70px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.department-section .section-title h2{
    font-size:38px;
    font-weight:800;
    color:#1a2f7a;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:35px;
}

.department-slider{
    position:relative;
}

/*---------------------------------
SWIPER
----------------------------------*/

.departmentSwiper{
    padding:10px 15px 25px;
}

/*---------------------------------
CARD
----------------------------------*/

.department-card{

    display:block;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    transition:.35s ease;

}

.department-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);

}

/*---------------------------------
IMAGE
----------------------------------*/

.department-image{

    height:150px;

    overflow:hidden;

    position:relative;

}

.department-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.department-card:hover .department-image img{

    transform:scale(1.08);

}

.department-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,0),
        rgba(0,0,0,.08)
    );

}

/*---------------------------------
BOTTOM
----------------------------------*/

.department-content{

position:relative;

/* padding: 22px 0px 18px 52px; */

min-height:78px;

display:flex;

align-items:center;

text-align: center;
}

/*---------------------------------
ICON
----------------------------------*/

.department-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    position:absolute;

    left:16px;

    top:-28px;

    border:4px solid #fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    color:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* Colors */

.green{
    background:#0d8f72;
}

.orange{
    background:#ffb000;
}

.purple{
    background:#7d4bc5;
}

.pink{
    background:#ef4b94;
}

.lime{
    background:#73be44;
}

/*---------------------------------
TITLE
----------------------------------*/

.department-content h4{

margin: 0 auto;

color:#17358d;

font-size:18px;

padding-top: 20px;

font-weight:700;

line-height:1.4;
}

/*---------------------------------
NAVIGATION
----------------------------------*/

.dept-prev,
.dept-next{

    position:absolute;

    top:42%;

    width:52px;

    height:52px;

    border-radius:50%;

    background:#123f99;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:10;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.dept-prev{

    left:-12px;

}

.dept-next{

    right:-12px;

}

.dept-prev:hover,
.dept-next:hover{

    background:#2d5df5;

    transform:scale(1.08);

}

.dept-prev i,
.dept-next i{

    font-size:20px;

}

/*---------------------------------
RESPONSIVE
----------------------------------*/

@media(max-width:1400px){

    .department-image{

        height:140px;

    }

}

@media(max-width:1200px){

    .department-content h4{

        font-size:16px;

    }

}

@media(max-width:992px){

    .department-section{

        padding:60px 0;

    }

    .department-section .section-title h2{

        font-size:30px;

    }

    .dept-prev{

        left:-5px;

    }

    .dept-next{

        right:-5px;

    }

}

@media(max-width:768px){

    .department-image{

        height:170px;

    }

    .department-content{

        padding-left:65px;

    }

    .department-content h4{

        font-size:17px;

    }

    .dept-prev,
    .dept-next{

        width:44px;

        height:44px;

    }

}

@media(max-width:576px){

    .department-section{

        padding:45px 0;

    }

    .department-section .section-title h2{

        font-size:24px;

    }

    .department-image{

        height:180px;

    }

    .department-icon{

        width:54px;

        height:54px;

        font-size:20px;

    }

}


.department-icon.green {
    background: #0d8f72;
    box-shadow: 0 0 0 6px rgba(13, 143, 114, 0.18), 0 10px 25px rgba(0,0,0,.15);
}

.department-icon.orange {
    background: #ffb000;
    box-shadow: 0 0 0 6px rgba(255, 176, 0, 0.18), 0 10px 25px rgba(0,0,0,.15);
}

.department-icon.purple {
    background: #7d4bc5;
    box-shadow: 0 0 0 6px rgba(125, 75, 197, 0.18), 0 10px 25px rgba(0,0,0,.15);
}

.department-icon.pink {
    background: #ef4b94;
    box-shadow: 0 0 0 6px rgba(239, 75, 148, 0.18), 0 10px 25px rgba(0,0,0,.15);
}

.department-icon.lime {
    background: #73be44;
    box-shadow: 0 0 0 6px rgba(115, 190, 68, 0.18), 0 10px 25px rgba(0,0,0,.15);
}


/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{

margin: 0px 0 50px;
}

.counter-wrapper{

    background:linear-gradient(90deg,#17358d,#273db5,#4826b7);

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.counter-box{

display:flex;

align-items:center;

justify-content:center;

gap: 5px;

padding: 35px 0px;

height:100%;

position:relative;

transition:.35s;

border-right:1px solid rgba(255,255,255,.12);
}

.counter-box:hover{

    background:rgba(255,255,255,.05);

}

.counter-icon{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:40px;

    flex-shrink:0;

}

.counter-content{

    color:#fff;

}

.counter-content h2{

display:inline-block;

margin:0;

font-size: 36px;

font-weight:800;

line-height:1;
}

.counter-content span{

    font-size:28px;

    font-weight:700;

    margin-left:2px;

}

.counter-content p{

margin-top:8px;

margin-bottom:0;

font-size: 16px;

color:rgba(255,255,255,.90);

line-height:1.4;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .counter-icon{

        font-size:34px;

        width:58px;

        height:58px;

    }

    .counter-content h2{

        font-size:34px;

    }

    .counter-content p{

        font-size:16px;

    }

}

@media(max-width:991px){

    .counter-box{

        border-right:none;

        border-bottom:1px solid rgba(255,255,255,.12);

    }

}

@media(max-width:576px){

    .counter-box{

        padding:24px 18px;

    }

    .counter-icon{

        font-size:28px;

        width:50px;

        height:50px;

    }

    .counter-content h2{

        font-size:28px;

    }

    .counter-content span{

        font-size:22px;

    }

    .counter-content p{

        font-size:14px;

    }

}



/*=========================================================
FOOTER
=========================================================*/

.footer-section{
    position:relative;
    background: linear-gradient(135deg, #023779 0%, #055681 45%, #01888b 100%);
    padding:70px 0 44px;  
    overflow:hidden;
}

/* Decorative Background */

.footer-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    left:-180px;
    bottom:-220px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.footer-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

/*=========================================================
ABOUT SECTION
=========================================================*/

.footer-about{
    position:relative;
    /* display:flex; */
    gap:25px;
    align-items:flex-start;
    padding-right:30px;
    z-index:2;
}

.footer-logo{
    width:95px;
    min-width:95px;
}

.footer-logo img{
    width:100%;
    display:block;
    margin-bottom: 10px;
}

.footer-content{
    flex:1;
}

.footer-content h3{
    color:#fff;
    font-size: 18px;
    font-weight:800;
    margin-bottom:5px;
    line-height:1.3;
}

.footer-content h4{
    color: #ffffff;
    font-size:18px;
    font-weight:600;
    margin-bottom: 14px;
}

.footer-content p{
    color:rgba(255,255,255,.85);
    font-size:15px;
    line-height:1.9;
    margin-bottom:22px;
    text-align: justify;
}

/*=========================================================
SOCIAL
=========================================================*/

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social span{
    color:#fff;
    font-weight:600;
    font-size:15px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.35s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#ff0000;
    color:#fff;
    transform:translateY(-4px);
}

/*=========================================================
COMMON FOOTER HEADINGS
=========================================================*/

.footer-links h4,
.footer-contact h4,
.newsletter h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;
}

.footer-links h4::after,
.footer-contact h4::after,
.newsletter h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#ffd54a;
    border-radius:30px;
}

/*=========================================================
COLUMN SPACING
=========================================================*/

.footer-links,
.footer-contact,
.newsletter{
    position:relative;
    z-index:2;
}

.footer-links,
.footer-contact{
    padding-left:15px;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

    .footer-about{
        margin-bottom:40px;
    }

}

@media(max-width:991px){

    .footer-about{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding-right:0;
    }

    .footer-logo{
        width:85px;
    }

    .footer-content h3{
        font-size:22px;
    }

    .footer-links,
    .footer-contact,
    .newsletter{
        margin-top:35px;
        padding-left:0;
    }

}

@media(max-width:576px){

    .footer-section{
        padding:50px 0 0;
    }

    .footer-logo{
        width:75px;
    }

    .footer-content h3{
        font-size:20px;
    }

    .footer-content h4{
        font-size:16px;
    }

    .footer-content p{
        font-size:14px;
    }

    .footer-links h4,
    .footer-contact h4,
    .newsletter h4{
        font-size:20px;
    }

}


/*=========================================================
FOOTER LINKS
=========================================================*/

.footer-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li:last-child{
    margin-bottom:0;
}

.footer-links ul li a{
    display:flex;
    align-items:center;
    color:rgba(255,255,255,.88);
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    transition:.35s ease;
    position:relative;
    padding-left:18px;
}

.footer-links ul li a::before{
    content:"\f105";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0;
    color:#ffd54a;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#fff;
    padding-left:24px;
}

.footer-links ul li a:hover::before{
    color:#fff;
}

/*=========================================================
CONTACT
=========================================================*/

.contact-box{
    margin-bottom:28px;
}

.contact-box:last-child{
    margin-bottom:0;
}

.contact-box h6{
    color: #11c297;
    font-size:16px;
    font-weight:700;
    margin-bottom:12px;
}

.contact-box p{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
    color:rgba(255,255,255,.88);
    font-size:15px;
    line-height:1.6;
}

.contact-box i{
    width:18px;
    color: #ffffff;
    margin-top:3px;
}

/*=========================================================
NEWSLETTER
=========================================================*/

.newsletter p{
    color:rgba(255,255,255,.85);
    font-size:15px;
    margin-bottom:20px;
}

.newsletter-box{
    display:flex;
    background:#fff;
    border-radius:50px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.newsletter-box input{
    flex:1;
    border:none;
    outline:none;
    height:54px;
    padding:0 20px;
    font-size:15px;
    background:transparent;
}

.newsletter-box input::placeholder{
    color:#888;
}

.newsletter-box button{
    width:58px;
    border:none;
    background: #013765;
    color: #ffffff;
    font-size:18px;
    cursor:pointer;
    transition:.35s;
}

.newsletter-box button:hover{
    background:#fff;
}

/*=========================================================
INFO CARDS
=========================================================*/

.footer-info{
    margin-top:28px;
}

.info-card{
    display:flex;
    align-items:center;
    gap:14px;
    background: rgb(1 55 101);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:14px 16px;
    margin-bottom:14px;
    transition:.35s;
}

.info-card:last-child{
    margin-bottom:0;
}

.info-card:hover{
    background:rgba(255,255,255,.15);
    transform:translateY(-3px);
}

.info-card i{
    width:42px;
    height:42px;
    border-radius:50%;
    background: #103b5c00;
    color: #ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 20px;
    flex-shrink:0;
    border: 1px solid #ffffffab;
}

.info-card strong{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:700;
    margin-top:3px;
}

.info-card{
    color:rgba(255,255,255,.85);
    font-size:14px;
    line-height:1.5;
}

/*=========================================================
FOOTER COLUMN ANIMATION
=========================================================*/

.footer-links,
.footer-contact,
.newsletter,
.footer-about{
    transition:.35s ease;
}

.footer-links:hover,
.footer-contact:hover,
.newsletter:hover{
    transform:translateY(-4px);
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .newsletter{
        margin-top:40px;
    }

    .newsletter-box{
        max-width:420px;
    }

}

@media(max-width:767px){

    .footer-links,
    .footer-contact,
    .newsletter{
        text-align:left;
    }

    .newsletter-box{
        width:100%;
    }

    .contact-box p{
        font-size:14px;
    }

    .footer-links ul li a{
        font-size:14px;
    }

}

@media(max-width:576px){

    .newsletter-box input{
        height:50px;
        font-size:14px;
    }

    .newsletter-box button{
        width:52px;
        font-size:16px;
    }

    .info-card{
        padding:12px;
    }

    .info-card i{
        width:36px;
        height:36px;
        font-size:15px;
    }

}


/*=========================================================
FOOTER BOTTOM
=========================================================*/

.footer-bottom{

    margin-top:60px;

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.10);

    position:relative;

    z-index:2;

}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-copy{

    color:rgba(255,255,255,.85);

    font-size:15px;

    line-height:1.8;

}

.footer-copy strong{

    color:#ffd54a;

    font-weight:600;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.85);

    text-decoration:none;

    font-size:15px;

    transition:.35s;

}

.footer-bottom-links a:hover{

    color:#ffd54a;

}

/*=========================================================
BACK TO TOP
=========================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#17358d,#4d28b8);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.35s;

    z-index:999;

}

.back-top span{

    display:none;

}

.back-top:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

/*=========================================================
FOOTER SHAPES
=========================================================*/

.footer-section .shape-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.footer-section .circle-1{

    width:180px;

    height:180px;

    left:-70px;

    top:120px;

}

.footer-section .circle-2{

    width:120px;

    height:120px;

    right:100px;

    bottom:100px;

}

.footer-section .circle-3{

    width:70px;

    height:70px;

    right:22%;

    top:40px;

}

/*=========================================================
LINK HOVER EFFECT
=========================================================*/

.footer-links ul li{

    overflow:hidden;

}

.footer-links ul li a{

    position:relative;

}

.footer-links ul li a::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:-3px;

    width:0;

    height:1px;

    background:#ffd54a;

    transition:.35s;

}

.footer-links ul li a:hover::after{

    width:calc(100% - 22px);

}

/*=========================================================
NEWSLETTER INPUT EFFECT
=========================================================*/

.newsletter-box{

    transition:.35s;

}

.newsletter-box:focus-within{

    box-shadow:0 0 0 4px rgba(255,213,74,.20);

}

/*=========================================================
SOCIAL ICON ANIMATION
=========================================================*/

.footer-social a{

    overflow:hidden;

    position:relative;

}

.footer-social a::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    border-radius:50%;

    background:rgba(255,255,255,.20);

    transition:.45s;

}

.footer-social a:hover::before{

    width:100px;

    height:100px;

}

/*=========================================================
SCROLLBAR (OPTIONAL)
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2fb;

}

::-webkit-scrollbar-thumb{

    background:#17358d;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#4a29b8;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .footer-bottom-content{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        justify-content:center;

    }

}

@media(max-width:768px){

    .footer-bottom{

        padding:18px 0;

    }

    .footer-copy{

        font-size:14px;

    }

    .footer-bottom-links{

        gap:15px;

    }

    .footer-bottom-links a{

        font-size:14px;

    }

    .back-top{

        width:52px;

        height:52px;

        right:18px;

        bottom:18px;

        font-size:18px;

    }

}

@media(max-width:576px){

    .footer-section{

        text-align:center;

    }

    .footer-links{

        margin-bottom:30px;

    }

    .footer-links ul li a{

        justify-content:center;

        padding-left:0;

    }

    .footer-links ul li a::before{

        display:none;

    }

    .footer-links ul li a::after{

        display:none;

    }

    .contact-box p{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

    .newsletter-box{

        max-width:100%;

    }

    .back-top{

        width:48px;

        height:48px;

        font-size:16px;

    }

}

/*=========================================================
END OF FOOTER
=========================================================*/


/*==================================================
VICE CHANCELLOR INNER PAGE
HERO BANNER
==================================================*/

.inner-banner{

    position:relative;

    height:214px;

    overflow:hidden;

    display:flex;

    align-items:center;

    background:#0d2c84;

}

.banner-img{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
                rgba(7,33,107,.95) 0%,
                rgba(11,46,132,.90) 35%,
                rgba(11,46,132,.55) 70%,
                rgba(11,46,132,.20) 100%);

    z-index:1;

}

.inner-banner .container{

    position:relative;

    z-index:5;

}

/*=========================================
BREADCRUMB
=========================================*/

.breadcrumb-list{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    list-style:none;

    padding:0;

    margin:0 0 28px;

}

.breadcrumb-list li{

    color:rgba(255,255,255,.90);

    font-size:15px;

    font-weight:500;

}

.breadcrumb-list li::after{

content: "\f105";

margin-left:12px;

color:rgba(255,255,255,.45);

font-family: 'FontAwesome';
}

.breadcrumb-list li:last-child::after{

    display:none;

}

.breadcrumb-list a{

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.breadcrumb-list a:hover{

    color:#ffd54a;

}

.breadcrumb-list i{

    margin-right:8px;

    font-size:13px;

}

/*=========================================
HEADING
=========================================*/

.banner-heading{

    display:flex;

    align-items:flex-start;

    gap:24px;

}

.banner-heading>span{

    width:5px;

    height:90px;

    background:#ffbf00;

    border-radius:30px;

    position:relative;

}

.banner-heading>span::after{

content:"";

position:absolute;

bottom:-18px;

left:0;

/* width:34px; */

/* height:4px; */

border-radius:30px;

background:#ffbf00;
}

.banner-heading h1{

    margin:0;

    color:#fff;

    font-size:54px;

    font-weight:800;

    line-height:1.15;

}

.banner-heading p{

    margin-top:18px;

    margin-bottom:0;

    color:rgba(255,255,255,.90);

    font-size:24px;

    font-weight:400;

}

/*=========================================
ANIMATION
=========================================*/

.banner-heading h1{

    animation:fadeUp .8s ease;

}

.banner-heading p{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .banner-heading h1{

        font-size:46px;

    }

    .banner-heading p{

        font-size:21px;

    }

}

@media(max-width:991px){

    .inner-banner{

        height:280px;

    }

    .banner-heading{

        gap:18px;

    }

    .banner-heading>span{

        height:72px;

    }

    .banner-heading h1{

        font-size:38px;

    }

    .banner-heading p{

        font-size:18px;

        margin-top:12px;

    }

}

@media(max-width:767px){

    .inner-banner{

        height:240px;

    }

    .breadcrumb-list{

        gap:8px;

        margin-bottom:18px;

    }

    .breadcrumb-list li{

        font-size:13px;

    }

    .banner-heading{

        gap:14px;

    }

    .banner-heading>span{

        width:4px;

        height:58px;

    }

    .banner-heading>span::after{

        width:26px;

    }

    .banner-heading h1{

        font-size:30px;

    }

    .banner-heading p{

        font-size:15px;

        margin-top:8px;

    }

}

@media(max-width:576px){

    .inner-banner{

        height:210px;

    }

    .banner-heading h1{

        font-size:26px;

    }

    .banner-heading p{

        font-size:14px;

    }

}


/*==================================================
CONTENT SECTION
==================================================*/

.vc-section{
    position:relative;
    padding:70px 0;
    background:#f5f8fc;
}

.content-wrapper{
    padding-left:35px;
}

/*==================================================
LAST UPDATED
==================================================*/

.last-updated{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:10px 20px;
    border-radius:50px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:30px;
    color:#555;
    font-size:14px;
    font-weight:500;
}

.last-updated i{
    color:#f0b400;
    font-size:16px;
}

.last-updated strong{
    color:#17358d;
}

/*==================================================
SIDEBAR
==================================================*/

.admin-sidebar{
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
}

.admin-sidebar h3{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#17358d;
}

.sidebar-line{
    width:70px;
    height:4px;
    background:#f0b400;
    border-radius:30px;
    margin:18px 0 28px;
}

.admin-sidebar ul{
    margin:0;
    padding:0;
    list-style:none;
}

.admin-sidebar li{
    margin-bottom:12px;
}

.admin-sidebar li:last-child{
    margin-bottom:0;
}

.admin-sidebar a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    padding:18px 20px;
    border-radius:14px;
    color:#333;
    background:#f8f9fc;
    transition:.35s;
    font-weight:500;
}

.admin-sidebar a div{
    display:flex;
    align-items:center;
    gap:14px;
}

.admin-sidebar a i:first-child{
    width:22px;
    color:#17358d;
}

.admin-sidebar a i:last-child{
    color:#999;
    transition:.3s;
}

.admin-sidebar li:hover a{
    background:#17358d;
    color:#fff;
    transform:translateX(6px);
}

.admin-sidebar li:hover a i{
    color:#fff;
}

.admin-sidebar li.active a{
    background:linear-gradient(90deg,#17358d,#3f2bb4);
    color:#fff;
    position:relative;
}

.admin-sidebar li.active a::before{
    content:"";
    position:absolute;
    left:0;
    top:15%;
    width:5px;
    height:70%;
    background:#f0b400;
    border-radius:0 5px 5px 0;
}

.admin-sidebar li.active a i{
    color:#fff;
}

/*==================================================
VC CARD
==================================================*/

.vc-card{
    background:#fff;
    border-radius:26px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/*==================================================
PROFILE CARD
==================================================*/

.vc-profile-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    position:relative;
}

.vc-image{
    position:relative;
    overflow:hidden;
}

.vc-image img{
    width:100%;
    display:block;
}

.vc-wave{
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:90px;
    fill:#17358d;
}

.quote-circle{
    position:absolute;
    right:22px;
    bottom:38px;
    width:70px;
    height:70px;
    background:#f0b400;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:2;
}

.vc-details{
    padding: 14px;
    text-align:center;
}

.vc-details h3{
    margin:0;
    color:#17358d;
    font-size: 21px;
    font-weight: 800;
}

.vc-details h5{
    margin:10px 0 18px;
    color:#777;
    font-size:18px;
    font-weight:500;
}

.title-line{
    width:65px;
    height:4px;
    background:#f0b400;
    display:block;
    margin:auto;
    border-radius:30px;
}

/*==================================================
HOVER
==================================================*/

.vc-profile-card{
    transition:.35s;
}

.vc-profile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.vc-profile-card:hover .vc-image img{
    transform:scale(1.04);
}

.vc-image img{
    transition:.5s;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .content-wrapper{
        padding-left:0;
        margin-top:40px;
    }

    .admin-sidebar{
        position:relative;
        top:auto;
        margin-bottom:30px;
    }

}

@media(max-width:767px){

    .vc-section{
        padding:50px 0;
    }

    .admin-sidebar{
        padding:22px;
    }

    .admin-sidebar h3{
        font-size:24px;
    }

    .admin-sidebar a{
        padding:15px;
        font-size:14px;
    }

    .vc-card{
        padding:22px;
    }

    .vc-details h3{
        font-size:24px;
    }

    .vc-details h5{
        font-size:16px;
    }

    .quote-circle{
        width:55px;
        height:55px;
        font-size:18px;
        right:15px;
        bottom:28px;
    }

}


/*==================================================
VICE CHANCELLOR MESSAGE
==================================================*/

.vc-message{
    position:relative;
    padding-left:35px;
}

.vc-message h2{
    font-size: 31px;
    font-weight:800;
    color:#17358d;
    margin-bottom:15px;
    line-height:1.2;
}

/* Decorative Line */

.heading-decoration{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:35px;
}

.heading-decoration span:nth-child(1){
    width:65px;
    height:5px;
    background:#f0b400;
    border-radius:30px;
}

.heading-decoration span:nth-child(2),
.heading-decoration span:nth-child(3){
    width:10px;
    height:10px;
    background:#17358d;
    border-radius:50%;
}

/*==================================================
PARAGRAPHS
==================================================*/

.vc-message p{

    color:#4d5566;

    font-size:17px;

    line-height:2;

    margin-bottom:22px;

    text-align:justify;

}

/* First Paragraph */

.vc-message p:first-of-type{

position:relative;

/* padding-left:28px; */
}



/*==================================================
DROP CAP
==================================================*/



/*==================================================
MESSAGE CARD EFFECT
==================================================*/

.vc-message{

background:#fff;

border-radius:20px;

padding: 4px 0px 24px 20px;

box-shadow:0 18px 45px rgba(0,0,0,.05);
}

/*==================================================
BACKGROUND SHAPES
==================================================*/

.vc-message::before{

    content:"";

    position:absolute;

    right:-60px;

    top:-60px;

    width:180px;

    height:180px;

    background:rgba(23,53,141,.05);

    border-radius:50%;

}

.vc-message::after{

    content:"";

    position:absolute;

    left:-70px;

    bottom:-70px;

    width:150px;

    height:150px;

    background:rgba(240,180,0,.08);

    border-radius:50%;

}

/*==================================================
TEXT SELECTION
==================================================*/

.vc-message ::selection{

    background:#17358d;

    color:#fff;

}

/*==================================================
LINKS
==================================================*/

.vc-message a{

    color:#17358d;

    text-decoration:none;

    font-weight:600;

}

.vc-message a:hover{

    color:#f0b400;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .vc-message h2{

        font-size:36px;

    }

}

@media(max-width:991px){

    .vc-message{

        margin-top:35px;

        padding:30px;

    }

    .vc-message h2{

        font-size:32px;

    }

    .vc-message{

        padding-left:30px;

    }

}

@media(max-width:767px){

    .vc-message{

        padding:22px;

    }

    .vc-message h2{

        font-size:26px;

    }

    .vc-message p{

        font-size:15px;

        line-height:1.9;

    }

    .vc-message p:first-of-type::first-letter{

        font-size:42px;

    }

    .heading-decoration{

        margin-bottom:22px;

    }

}

@media(max-width:576px){

    .vc-message h2{

        font-size:22px;

    }

    .vc-message p{

        text-align:left;

    }

    .vc-message::before,

    .vc-message::after{

        display:none;

    }

}

/*=========================================
SCROLL ANIMATION
=========================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
BACK TO TOP DEFAULT
=========================================*/

.back-top{

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

}

/*=========================================
DRUPAL WEBFORM NEWSLETTER STYLING
=========================================*/
.newsletter form.webform-submission-form,
.newsletter form.webform-submission-newsletter-form,
.newsletter form.webform-submission-newsletter-add-form {
    display: flex !important;
    background: #ffffff !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0,0,0,.15) !important;
    align-items: center !important;
    position: relative !important;
    max-width: 100% !important;
}

.newsletter form label,
.newsletter .webform-submission-form label {
    display: none !important;
}

.newsletter form .js-form-item,
.newsletter form .form-item,
.newsletter .webform-submission-form .js-form-item {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.newsletter form input[type="email"],
.newsletter form input[type="text"],
.newsletter .webform-submission-form input[type="email"] {
    width: 100% !important;
    border: none !important;
    outline: none !important;
    height: 54px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #333333 !important;
}

.newsletter form input::placeholder,
.newsletter .webform-submission-form input::placeholder {
    color: #888888 !important;
}

.newsletter form .form-actions,
.newsletter .webform-submission-form .form-actions {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.newsletter form input[type="submit"],
.newsletter form button[type="submit"],
.newsletter .webform-submission-form input[type="submit"],
.newsletter .webform-submission-form .webform-button--submit {
    width: 58px !important;
    height: 54px !important;
    border: none !important;
    background: #013765 !important;
    color: transparent !important;
    font-size: 0 !important;
    cursor: pointer !important;
    transition: .35s !important;
    border-radius: 0 50px 50px 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

.newsletter form .form-actions::after,
.newsletter .webform-submission-form .form-actions::after {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.newsletter form input[type="submit"]:hover,
.newsletter form button[type="submit"]:hover,
.newsletter .webform-submission-form input[type="submit"]:hover {
    background: #0a58ca !important;
}

/*=========================================
DRUPAL WEBFORM CONFIRMATION STYLING
=========================================*/
.newsletter .webform-confirmation,
.newsletter .webform-submission-confirmation,
.newsletter [data-drupal-messages],
.newsletter .messages--status {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-radius: 16px !important;
    padding: 18px 22px !important;
    color: #ffffff !important;
    margin: 15px 0 !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
    text-align: center !important;
    animation: fadeInNewsletterMsg 0.4s ease-out forwards !important;
}

@keyframes fadeInNewsletterMsg {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter .webform-confirmation__message,
.newsletter .webform-submission-confirmation__message {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.newsletter .webform-confirmation__back,
.newsletter .webform-submission-confirmation__back {
    margin-top: 8px !important;
}

.newsletter .webform-confirmation__back a,
.newsletter .webform-submission-confirmation__back a,
.newsletter .webform-confirmation a,
.newsletter .webform-submission-confirmation a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #ffd700 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 6px 16px !important;
    background: rgba(255, 215, 0, 0.15) !important;
    border: 1px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.newsletter .webform-confirmation__back a:hover,
.newsletter .webform-submission-confirmation__back a:hover,
.newsletter .webform-confirmation a:hover,
.newsletter .webform-submission-confirmation a:hover {
    background: #ffd700 !important;
    color: #013765 !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    transform: translateY(-1px) !important;
}

/*====================================================
MULTI-LAYER DROPDOWN MENU STYLING
====================================================*/
.navbar .navbar-nav .nav-link {
    color: #17358d !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    padding: 24px 14px !important;
    transition: all 0.25s ease !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-item.show > .nav-link {
    color: #d11d1d !important;
    background-color: rgba(23, 53, 141, 0.04);
}

.navbar .dropdown-menu {
    background: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
    padding: 8px 0 !important;
    min-width: 220px !important;
    margin-top: 0 !important;
}

.navbar .dropdown-menu .dropdown-item {
    color: #1a202c !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.2s ease !important;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background-color: #f0f4ff !important;
    color: #c31717 !important;
    padding-left: 24px !important;
}

/* Multi-layer Nested Submenus (Level 2, Level 3 & Level 4) */
.dropdown-submenu {
    position: relative !important;
}

.dropdown-submenu > .dropdown-submenu-menu {
    top: 0 !important;
    left: 100% !important;
    margin-top: -6px !important;
    margin-left: 0 !important;
    display: none !important;
    position: absolute !important;
    z-index: 1050 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    background-color: #ffffff !important;
    min-width: 230px !important;
    overflow: visible !important;
}

.dropdown-submenu:hover > .dropdown-submenu-menu,
.dropdown-submenu:focus-within > .dropdown-submenu-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ====================================================
   Accessibility & Skip Link Fix
   ==================================================== */
.skip-link {
    display: none !important;
}

.visually-hidden:not(:focus):not(:active),
.visually-hidden-focusable:not(:focus):not(:active) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link:focus,
.skip-link:active,
.visually-hidden-focusable:focus,
.visually-hidden-focusable:active {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 99999 !important;
    width: auto !important;
    height: auto !important;
    padding: 10px 20px !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    background: #183a9e !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
}

/* ====================================================
   Search Page Styling (/search/node)
   ==================================================== */
body.path-search,
.page-node-search {
    background-color: #f8fafc;
}

.search-form {
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.search-form label {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: block;
}

.search-form .form-type-search,
.search-form .form-type-textfield,
.search-form .form-item {
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 700px;
}

.search-form input[type="search"],
.search-form input[type="text"] {
    width: 100%;
    padding: 12px 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50px;
    font-size: 16px;
    color: #0f172a;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.search-form input[type="search"]:focus,
.search-form input[type="text"]:focus {
    border-color: #183a9e;
    outline: none;
    box-shadow: 0 0 0 4px rgba(24, 58, 158, 0.12);
}

.search-form input[type="submit"],
.search-form button[type="submit"] {
    padding: 12px 30px;
    background-color: #183a9e;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(24, 58, 158, 0.25);
}

.search-form input[type="submit"]:hover,
.search-form button[type="submit"]:hover {
    background-color: #c31717;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(195, 23, 23, 0.3);
}

.search-form details {
    margin-top: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.search-form details summary {
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

/* Search Results Header & List */
ol.search-results {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ol.search-results > li {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    position: relative;
}

ol.search-results > li:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.search-result__title,
ol.search-results li h3,
ol.search-results li .title {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.search-result__title a,
ol.search-results li h3 a {
    color: #112c90;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-result__title a:hover,
ol.search-results li h3 a:hover {
    color: #c31717;
}

.search-result__snippet,
ol.search-results li .search-snippet,
ol.search-results li p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.search-result__snippet strong,
.search-result__snippet mark,
ol.search-results li strong,
ol.search-results li mark {
    background-color: #fef08a;
    color: #854d0e;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.search-result__info,
ol.search-results li .search-info {
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ====================================================
   Drupal 11 Action Tabs Inline Styling (View, Edit, Delete, Revisions)
   ==================================================== */
.admin-action-tabs-region,
.tabs-wrapper,
.block-local-tasks-block {
    display: block !important;
    width: 100% !important;
}

/* Hide duplicate unstyled local tasks block in main content body when admin action tabs region is present */
.main-content-body .block-local-tasks-block,
.main-content-body #block-university-tabs,
.main-content-body nav.tabs,
.main-content-body ul.primary,
.main-content-body ul.tabs,
.main-content-body .tabs--primary {
    display: none !important;
}

.admin-action-tabs-region ul,
.tabs-wrapper ul,
ul.tabs,
ul.tabs.primary,
ul.tabs.secondary,
ul.tabs--primary,
ul.tabs--secondary,
ul.primary,
ul.secondary {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

.admin-action-tabs-region li,
.tabs-wrapper li,
ul.tabs li,
li.tabs__tab,
ul.primary li,
ul.secondary li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.admin-action-tabs-region li a,
.tabs-wrapper li a,
ul.tabs li a,
a.tabs__link,
ul.primary li a,
ul.secondary li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 20px !important;
    background-color: #f8fafc !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 8px 8px 0 0 !important;
    text-decoration: none !important;
    border: 1px solid #cbd5e1 !important;
    border-bottom: none !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: none !important;
}

.admin-action-tabs-region li.is-active a,
.admin-action-tabs-region li a.is-active,
.tabs-wrapper li.is-active a,
.tabs-wrapper li a.is-active,
ul.tabs li.is-active a,
ul.tabs li a.is-active,
li.tabs__tab.is-active a,
a.tabs__link.is-active {
    background-color: #013765 !important;
    color: #ffffff !important;
    border-color: #013765 !important;
    box-shadow: 0 4px 6px -1px rgba(1, 55, 101, 0.2) !important;
}

.admin-action-tabs-region li a:hover,
.tabs-wrapper li a:hover,
ul.tabs li a:hover,
a.tabs__link:hover,
ul.primary li a:hover {
    background-color: #0d6efd !important;
    color: #ffffff !important;
    border-color: #0d6efd !important;
}

ul.tabs.secondary,
ul.tabs--secondary,
ul.secondary {
    margin-top: 10px !important;
    border-bottom: none !important;
}

ul.tabs.secondary li a,
ul.tabs--secondary li a,
ul.secondary li a {
    border-radius: 50px !important;
    padding: 6px 16px !important;
    font-size: 13px !important;
    border: 1px solid #cbd5e1 !important;
    background-color: #ffffff !important;
}

ul.tabs.secondary li.is-active a,
ul.tabs.secondary li a.is-active,
ul.tabs--secondary li.is-active a,
ul.secondary li.is-active a {
    background-color: #183a9e !important;
    color: #ffffff !important;
    border-color: #183a9e !important;
}

/* Search Page Customizations: Hide Advanced search, tabs (Content, Users), and duplicate Search results heading */
body.page--search--node .admin-action-tabs-region,
body.page--search--user .admin-action-tabs-region,
body.page--search .admin-action-tabs-region,
body[class*="page--search"] .admin-action-tabs-region,
body[class*="page--search"] .tabs-wrapper,
body[class*="page--search"] ul.tabs,
body[class*="page--search"] ul.primary,
body[class*="page--search"] ul.secondary,
body[class*="page--search"] .block-local-tasks-block,
body[class*="page--search"] nav.tabs,
body[class*="page--search"] #block-university-content > ul,
body[class*="page--search"] #block-university-content > nav,
body[class*="page--search"] .search-form + ul,
body[class*="page--search"] nav[aria-label*="Tab"],
.path-search .admin-action-tabs-region,
.path-search .tabs,
.path-search .tabs-wrapper,
.path-search ul.primary,
.path-search ul.secondary {
    display: none !important;
}

body.page--search .main-content-body > h2:not(.fs-4),
body[class*="page--search"] .main-content-body > h2:not(.fs-4),
body[class*="page--search"] #block-university-content > h2:not(.fs-4),
.path-search .main-content-body > h2:not(.fs-4),
.search-results-wrapper ~ h2,
.search-form + h2,
#search-form + h2 {
    display: none !important;
}

.search-form fieldset#edit-advanced,
.search-form .form-item-advanced,
.search-form fieldset.search-advanced,
#edit-advanced {
    display: none !important;
}

/* Hide "About searching" link */
.search-form .search-help-link,
.search-form a[href*="help"],
a.search-help-link,
[data-drupal-selector="edit-help-link"],
#edit-help-link {
    display: none !important;
}

/* Single-Line Modern Search Bar Layout */
form.search-form,
.search-form {
    background-color: #ffffff !important;
    padding: 24px 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 30px !important;
}

form.search-form #edit-basic,
form.search-form .container-inline,
.search-form .form-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

form.search-form .form-item-keys,
form.search-form .form-type-search,
form.search-form .js-form-item-keys {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

form.search-form label[for="edit-keys"],
form.search-form .form-item-keys label {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

form.search-form input[type="search"],
form.search-form input.form-search,
form.search-form #edit-keys {
    flex: 1 !important;
    width: 100% !important;
    height: 48px !important;
    padding: 10px 24px !important;
    font-size: 15px !important;
    color: #1e293b !important;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 50px !important;
    outline: none !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: none !important;
}

form.search-form input[type="search"]:focus,
form.search-form input.form-search:focus,
form.search-form #edit-keys:focus {
    border-color: #013765 !important;
    box-shadow: 0 0 0 3px rgba(1, 55, 101, 0.15) !important;
}

form.search-form input[type="submit"],
form.search-form #edit-submit,
form.search-form .form-submit {
    height: 48px !important;
    padding: 0 32px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #013765 0%, #0052a5 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 12px rgba(1, 55, 101, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

form.search-form input[type="submit"]:hover,
form.search-form #edit-submit:hover,
form.search-form .form-submit:hover {
    background: linear-gradient(135deg, #002347 0%, #013765 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(1, 55, 101, 0.35) !important;
}



th.py-3.px-3.text-center.fw-bold.fs-7.border-0 {
    padding: 0 !important;
    vertical-align: middle;
    border: 1px solid #fff !important;
}

td.text-center.py-3.px-3 {
    padding: 2px !important;
    border: 1px solid #bbb;
}

td {
    border: 1px solid #bbb;
}

th.py-3.px-3.fw-bold.fs-7.border-0 {
    border: 1px solid #fff !important;
}

/* Header Right Language Switcher Select List Styling */
.header-language-switcher-wrapper select.language-switcher-select,
.lang-switcher select,
.language.dropdown select,
.header-top__language select {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 4px !important;
  padding: 4px 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  outline: none !important;
  display: inline-block !important;
}

.header-language-switcher-wrapper select.language-switcher-select option,
.lang-switcher select option,
.language.dropdown select option,
.header-top__language select option {
  background-color: #18246d !important;
  color: #ffffff !important;
}

/* ====================================================
   Exact Sidebar Menu Styling (Matching User Screenshot)
   ==================================================== */
.sidebar-contextual-menu-card {
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

.sidebar-contextual-menu-card .card-header {
    background: linear-gradient(135deg, #013765 0%, #004d99 100%) !important;
    padding: 14px 20px !important;
}

.sidebar-contextual-menu-card .list-group-item {
    padding: 14px 20px !important;
    border-bottom: 1px solid #edf2f7 !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
}

/* Active Item: Bright Royal Blue background */
.sidebar-contextual-menu-card .list-group-item.active-sidebar-item {
    background-color: #0d6efd !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-color: #0d6efd !important;
}

.sidebar-contextual-menu-card .list-group-item.active-sidebar-item * {
    color: #ffffff !important;
}

/* Inactive Item: White background, Charcoal text */
.sidebar-contextual-menu-card .list-group-item.sidebar-link-item {
    background-color: #ffffff !important;
    color: #1e293b !important;
    font-weight: 600 !important;
}

.sidebar-contextual-menu-card .list-group-item.sidebar-link-item:hover {
    background-color: #f0f6ff !important;
    color: #0d6efd !important;
}

.sidebar-contextual-menu-card .list-group-item.sidebar-link-item:hover i {
    color: #0d6efd !important;
    transform: translateX(2px);
}

/* Home Navigation Button Icon Fix */
.home-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #17358d !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    margin-right: 16px !important;
    align-self: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(23, 53, 141, 0.25) !important;
    transition: all 0.2s ease !important;
}

.home-btn:hover {
    background: #013765 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(1, 55, 101, 0.35) !important;
}

/* ====================================================
   Global Views & Table Styling (Matching /examination Style)
   ==================================================== */
.view-content,
.views-element-container {
    margin-top: 20px;
}

/* Comprehensive Container Card for ALL Tables (Views, Modules, Content) */
.view-content table,
.views-table,
.views-element-container table,
table.table-views,
table.views-view-table,
table.table,
.node-content table,
.field--name-body table,
.region-content table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 30px !important;
}

/* Table Header with Vertical Borders */
.view-content table th,
.views-table th,
.views-element-container table th,
table.views-view-table th,
table.table th,
.node-content table th,
.field--name-body table th,
.region-content table th {
    background-color: #013765 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 16px 20px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-bottom: 1px solid #cbd5e1 !important;
    border-top: none !important;
    border-left: none !important;
    vertical-align: middle !important;
}

.view-content table th:last-child,
.views-table th:last-child,
.views-element-container table th:last-child,
table.views-view-table th:last-child,
table.table th:last-child,
.region-content table th:last-child {
    border-right: none !important;
}

.view-content table th a,
.views-table th a,
table.views-view-table th a,
table.table th a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Table Body Rows & Cells with Vertical Borders */
.view-content table td,
.views-table td,
.views-element-container table td,
table.views-view-table td,
table.table td,
.node-content table td,
.field--name-body table td,
.region-content table td {
    padding: 16px 20px !important;
    color: #334155 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    vertical-align: middle !important;
    border-right: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-top: none !important;
    border-left: none !important;
}

.view-content table td:last-child,
.views-table td:last-child,
.views-element-container table td:last-child,
table.views-view-table td:last-child {
    border-right: none !important;
}

.view-content table tbody tr:last-child td,
.views-table tbody tr:last-child td,
table.views-view-table tbody tr:last-child td {
    border-bottom: none !important;
}

.view-content table tbody tr,
.views-table tbody tr,
table.views-view-table tbody tr {
    transition: background-color 0.2s ease !important;
}

.view-content table tbody tr:hover,
.views-table tbody tr:hover,
table.views-view-table tbody tr:hover {
    background-color: #f8fafc !important;
}

/* Action Links & Download Links inside Views Tables */
.view-content table td a,
.views-table td a,
table.views-view-table td a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.view-content table td a:hover,
.views-table td a:hover,
table.views-view-table td a:hover {
    text-decoration: underline;
}

/* Convert PDF links inside tables into styled buttons */
.view-content table td a[href*=".pdf"],
.views-table td a[href*=".pdf"],
table.views-view-table td a[href*=".pdf"] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #dc3545 !important;
    color: #ffffff !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.25) !important;
    transition: all 0.2s ease !important;
}

.view-content table td a[href*=".pdf"]:hover,
.views-table td a[href*=".pdf"]:hover,
table.views-view-table td a[href*=".pdf"]:hover {
    background: #b02a37 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.35) !important;
}

/* Exposed Filter Forms for Views */
.views-exposed-form,
.views-element-container .views-exposed-form,
form.views-exposed-form {
    background: #ffffff !important;
    padding: 24px !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 25px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-end !important;
    gap: 15px !important;
}

.views-exposed-form .form-item,
.views-exposed-form .js-form-item {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
	width: 85%;
}
.views-exposed-form .form-text {
    width: 100%;  
}

.views-exposed-form label {
    font-weight: 600 !important;
    color: #1e293b !important;
    font-size: 14px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.views-exposed-form input[type="text"],
.views-exposed-form select,
.views-exposed-form .form-select,
.views-exposed-form .form-control {
    border-radius: 10px !important;
    padding: 8px 14px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 14px !important;
    outline: none !important;
    background-color: #ffffff !important;
}

.views-exposed-form input[type="text"]:focus,
.views-exposed-form select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15) !important;
}

.views-exposed-form input[type="submit"],
.views-exposed-form .form-submit,
.views-exposed-form button {
    background: linear-gradient(135deg, #013765 0%, #0d6efd 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 9px 26px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25) !important;
    transition: all 0.2s ease !important;
}

.views-exposed-form input[type="submit"]:hover,
.views-exposed-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(1, 55, 101, 0.35) !important;
}

/* ====================================================
   Clean & Fixed Drupal Views Pager Styling (No Double Cards / No Overlap)
   ==================================================== */
/* Outer Nav wrapper - transparent */
nav.pager,
.views-element-container nav.pager {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 25px 0 !important;
    width: 100% !important;
}

/* Inner UL container - Single Pill Card */
nav.pager ul.pager__items,
nav.pager ul.pager,
ul.pager__items,
ul.pager {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    list-style: none !important;
    padding: 6px 14px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    width: fit-content !important;
    max-width: 100% !important;
}

/* List Item LI */
nav.pager li,
.pager li,
.pager__item,
ul.pager__items li {
    display: inline-flex !important;
    position: static !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Only Direct Children Links and Spans inside LI */
nav.pager li > a,
nav.pager li > span,
.pager__item > a,
.pager__item > span,
ul.pager__items li > a,
ul.pager__items li > span {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 14px !important;
    border-radius: 50px !important;
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    float: none !important;
    box-shadow: none !important;
}

/* Reset any nested spans inside <a> tags */
nav.pager li a span,
.pager__item a span,
ul.pager__items li a span {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: auto !important;
    height: auto !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    display: inline !important;
}

/* Active Page Item (e.g. Page 1) */
nav.pager li.is-active > a,
nav.pager li.is-active > span,
nav.pager li.active > a,
nav.pager li.active > span,
.pager__item.is-active > a,
.pager__item.is-active > span,
.pager__item--active > a,
.pager__item--active > span {
    background: linear-gradient(135deg, #013765 0%, #0d6efd 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
}

/* Hover State for Pager Links */
nav.pager li > a:hover,
.pager__item > a:hover {
    background-color: #eff6ff !important;
    border-color: #93c5fd !important;
    color: #1d4ed8 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.15) !important;
}

/* Hide Visually Hidden Text */
nav.pager .visually-hidden,
.pager .visually-hidden,
.pager__item .visually-hidden {
    display: none !important;
}

.navbar.navbar-expand-xl.navbar-light ul.navbar-nav li:last-child ul.dropdown-menu {
margin-left: -102px;
}
 
.sidebar-contextual-menu-card .list-group .bg-light.border-bottom a span{
	color:#000;
}

tr th:first-child {
    width: 9%;
}


tr th:last-child {
    width: 14%;
}