/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;700&display=swap');

/* Color and Font Variables */
:root {
    --dark-blue: #002B5B;
    --main-nav-blue: #0d6efd;
    --news-red: #E53935;
    --text-white: #ffffff;
    --text-dark: #333;
    --body-bg: #f8f9fa;
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* General Body Styling */
body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--text-dark);
}

/* --- Header Area --- */
.header-area-new {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 14px;
}
.top-bar a {
    color: var(--text-white);
    transition: color 0.3s;
}
.top-bar a:hover {
    color: #ffd700; /* Gold hover */
    text-decoration: none;
}
.top-bar .list-inline-item {
    margin: 0 10px;
}
.top-contact a i {
    margin-right: 5px;
}

/* Banner Area */
.banner-area {
    padding: 4px 10px;
}
.banner-area img{
    width: 100%;
}


/* Main Navigation */
.main-nav {
    background-color: transparent !important;
    box-shadow: none;
    border: none;
}
.main-nav .navbar-nav .nav-link {
    color: #111 !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 5px 15px !important;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    min-height: 20px;
    display: flex;
    align-items: center;
    transition: color 0.2s, background 0.2s;
}
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-item.active .nav-link {
    color: #002b5b !important;
}

.main-nav .dropdown-menu {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-top: 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    letter-spacing: 0.2px;
}
.main-nav .dropdown-item {
    color: #111 !important;
    display: flex;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 8px 18px;
    transition: background 0.2s, color 0.2s;
}
.dropdown-arrow-item {
    display: inline-block;
    margin-right: 10px;
    color: #888;
    font-size: 1.1em;
    transition: color 0.3s, transform 0.3s;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
    color: #002b5b !important;
    background: #f2f6fa;
}
.main-nav .dropdown-item:hover .dropdown-arrow-item,
.main-nav .dropdown-item:focus .dropdown-arrow-item {
    color: #002b5b;
    transform: translateX(5px);
}

/* Dropdown arrow styling and animation */
.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.main-nav .dropdown.show .dropdown-arrow,
.main-nav .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Show dropdown on hover on desktop */
@media (min-width: 992px) {
    .main-nav .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Sub Navigation */
.sub-nav {
    background-color: var(--dark-blue);
    padding: 5px 0;
}
.sub-nav .nav {
    justify-content: center;
}
.sub-nav .nav-link {
    color: var(--text-white);
    font-size: 14px;
    padding: 5px 15px;
    border-right: 1px solid #4a6a8a;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    transition: color 0.2s, background 0.2s;
}
.sub-nav .nav-item:last-child .nav-link {
    border-right: none;
}
.sub-nav .nav-link:hover,
.sub-nav .nav-link:focus {
    color: #002b5b;
    background: #f2f6fa;
}

/* --- News Ticker --- */
.news-ticker-wrapper {
    padding: 0;
}
.news-ticker {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.news-label {
    background-color: var(--news-red);
    color: var(--text-white);
    font-weight: bold;
    padding: 10px 20px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}
.news-label .news-label-text {
    margin: 0 8px;
}
.news-content {
    flex: 1;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.scrolling-text {
    margin: 0;
    padding-left: 100%;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}
.scrolling-text .separator {
    margin: 0 20px;
    font-weight: bold;
    color: var(--news-red);
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.news-controls {
    display: flex;
    align-items: center;
    background-color: #e9ecef;
}
.news-controls .btn {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 10px;
    font-size: 16px;
    line-height: 1;
}
.news-controls .btn:hover {
    background: #ddd;
}
.news-controls .btn:focus {
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }
    .sub-nav .nav {
        flex-direction: column;
        align-items: center;
    }
    .sub-nav .nav-link {
        border-right: none;
        border-bottom: 1px solid #4a6a8a;
    }
    .main-nav .navbar-nav {
        background-color: transparent !important;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .main-nav .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        margin: 0;
        position: relative;
    }
    .main-nav .navbar-nav .nav-link {
        color: #111 !important;
        background: transparent !important;
        font-size: 13px;
        padding: 8px 0 !important;
        border-radius: 0;
        width: 100%;
        transition: background 0.2s, color 0.2s;
        text-align: center;
        margin: 0 auto;
    }
    .main-nav .navbar-nav .nav-link:hover,
    .main-nav .navbar-nav .nav-item.active .nav-link {
        background: #f2f6fa !important;
        color: #002b5b !important;
    }
    .main-nav .navbar-nav .nav-item:not(:last-child)::after {
        content: "";
        display: block;
        width: 80%;
        margin: 0 auto;
        border-bottom: 1px solid #e0e0e0;
    }
    .main-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        min-width: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    .main-nav .dropdown-item {
        color: #111 !important;
        background: transparent !important;
        font-size: 13px;
        padding: 0px 0 3px 0px;
        border-radius: 0;
        width: 100%;
        text-align: left;
        transition: background 0.2s, color 0.2s;
    }
    .main-nav .dropdown-item:hover,
    .main-nav .dropdown-item:focus {
        background: #f2f6fa !important;
        color: #002b5b !important;
    }
    .main-nav .dropdown-menu .dropdown-item:not(:last-child)::after {
        content: none !important;
        display: none !important;
        border-bottom: none !important;
    }
    .top-bar .top-social {
        display: none !important;
    }
    .top-bar .top-contact ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        width: 100%;
        margin: 0 auto !important;
        text-align: center;
    }
    .top-bar .top-contact .list-inline-item {
        margin: 0;
        padding: 0 4px;
        font-size: 15px;
        display: flex;
        align-items: center;
    }
    .top-bar .top-contact .list-inline-item a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-white);
        font-size: 12px;
        font-family: 'Lato', sans-serif;
        text-decoration: none;
    }
    .top-bar .top-contact .list-inline-item a i {
        font-size: 16px;
        margin-right: 4px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .top-bar .top-social {
        display: block !important;
    }
}

@media (max-width: 767.98px) {
    .news-ticker {
        flex-direction: column;
    }
    .news-label {
        justify-content: center;
    }
    .news-controls {
        justify-content: center;
        border-top: 1px solid #ddd;
    }
}

/* Remove default Bootstrap dropdown arrow */
.main-nav .dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* Section Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #002b5b;
    margin-bottom: 0.5em;
}

body, p, li, td, th {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #222;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .main-nav .navbar-nav .nav-link {
        font-size: 13px;
        padding: 4px 10px !important;
        min-height: 32px;
    }
    .main-nav .dropdown-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    .sub-nav .nav-link {
        font-size: 13px;
        padding: 4px 10px;
    }
    .dropdown-arrow-item {
        font-size: 1em;
        margin-right: 7px;
    }
}

/* Custom Toggler Styles */
.navbar-toggler.custom-toggler {
    background-color: #002b5b !important;
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    min-width: 30px;
    min-height: 30px;
}
.navbar-toggler.custom-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler-icon.custom-toggler-icon {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide original sub-nav on mobile, show mobile-sub-nav only on mobile */
@media (max-width: 991.98px) {
    .sub-nav.d-none.d-lg-block {
        display: none !important;
    }
    .mobile-sub-nav {
        display: block !important;
    }
}
@media (min-width: 992px) {
    .mobile-sub-nav {
        display: none !important;
    }
}

/* Mobile sub-nav styling to match desktop */
.mobile-sub-nav .nav-link {
    color: var(--text-white);
    background: var(--dark-blue);
    border-bottom: 1px solid #4a6a8a;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    transition: color 0.2s, background 0.2s;
}
.mobile-sub-nav .nav-link:last-child {
    border-bottom: none;
}
.mobile-sub-nav .nav-link:hover,
.mobile-sub-nav .nav-link:focus {
    color: #002b5b;
    background: #f2f6fa;
}

/* Hide navbar-toggler on desktop/laptop */
@media (min-width: 992px) {
    .navbar-toggler.custom-toggler {
        display: none !important;
    }
}

/* Center email and phone only for 320px, 375px, 425px widths */
@media (max-width: 330px) {
    .top-bar .top-contact ul {
        justify-content: center !important;
        text-align: center !important;
    }
}
@media (min-width: 331px) and (max-width: 385px) {
    .top-bar .top-contact ul {
        justify-content: center !important;
        text-align: center !important;
    }
}
@media (min-width: 386px) and (max-width: 435px) {
    .top-bar .top-contact ul {
        justify-content: center !important;
        text-align: center !important;
    }
}

.navbar {
    padding: 0px 10px !important;
}

@media (max-width: 435px) {
    .news-ticker {
        flex-direction: row !important;
        align-items: center !important;
        padding: 0 2px;
        min-width: 0;
    }
    .news-label {
        font-size: 12px;
        padding: 6px 6px;
        min-width: unset;
        white-space: nowrap;
    }
    .news-content {
        padding: 6px 0;
        min-width: 0;
        flex: 1 1 0%;
        overflow: hidden;
    }
    .scrolling-text {
        font-size: 12px;
        padding-left: 100%;
        white-space: nowrap;
        min-width: 0;
    }
    .news-controls {
        padding: 0 2px;
    }
}

/* Carousel Theme Styles */
.slider-section {
    background: #f8f9fa;
}
#mainThemeCarousel .carousel-inner img {
    border-radius: 12px;
    object-fit: cover;
    max-height: 500px;
    width: 100%;
}
#mainThemeCarousel .carousel-indicators li {
    background-color: #002b5b;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}
#mainThemeCarousel .carousel-indicators .active {
    background-color: #0d6efd;
}
.custom-carousel-btn {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.carousel-btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #002b5b;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,43,91,0.08);
    transition: background 0.2s, color 0.2s;
}
.carousel-btn-circle:hover {
    background: #0d6efd;
    color: #fff;
}
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}
@media (max-width: 991.98px) {
    #mainThemeCarousel .carousel-inner img {
        max-height: 350px;
    }
    .carousel-btn-circle {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .custom-carousel-btn {
        width: 40px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
    }
}
@media (max-width: 575.98px) {
    #mainThemeCarousel .carousel-inner img {
        max-height: 250px;
    }
}

/* About Us Section */
.about-us-section {
    background-color: #fff;
}
.about-us-section .section-title {
    font-size: 15px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.about-us-section .section-subtitle {
    font-size: 1.5rem;
    color:var(--dark-blue);
  
}
.about-us-section .about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}
.about-us-section .theme-btn {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: #fff;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s, border-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.about-us-section .theme-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.about-us-section .theme-btn:hover .btn-arrow {
    transform: translateX(5px);
}
.about-us-section .theme-btn:hover {
    background-color: #004a99;
    border-color: #004a99;
}
.about-us-section .about-image-column img {
    border: 5px solid #fff;
    border-radius: 60px !important;
}

@media (max-width: 991.98px) {
    .about-us-section .about-text-column {
        margin-bottom: 2rem;
        text-align: center;
    }
    .about-us-section .about-text {
        text-align: left;
    }
    .about-us-section .section-title,
    .about-us-section .section-subtitle {
        text-align: center;
    }
}

/* --- Latest News & Events --- */
.sky-rtcop-card {
    height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-blue);
    border-radius: 8px;
    background-color: #fff;
}
.sky-rtcop-card .sky-card-header {
    padding: 0.5rem;
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    flex-shrink: 0;
    border-radius: 6px 6px 0 0;
}
.sky-rtcop-card .sky-card-body {
    flex-grow: 1;
    padding: 0.75rem;
    overflow: hidden;
}
.sky-rtcop-card .sky-card-footer {
    padding: 0.5rem;
    background-color: #f8f9fa;
    text-align: center;
    flex-shrink: 0;
    border-radius: 0 0 6px 6px;
    border-top: 1px solid #e9ecef;
}
.sky-rtcop-card:hover {
    box-shadow: 0 0 15px rgba(14, 41, 84, 0.2);
    transform: translateY(-2px);
}
.sky-rtcop-card .sky-d-flex {
    display: flex;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
}
.sky-rtcop-card .sky-me-2 {
    margin-right: 0.5rem;
}
.sky-card-footer a.text-primary {
    color: var(--dark-blue) !important;
    transition: all 0.3s ease;
}
.sky-card-footer a.text-primary:hover {
    color: #f29727 !important;
    text-decoration: none;
}

/* --- Our Leaders Section --- */

.sky-mgmt-title {

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 30px;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}
.sky-mgmt-card {
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}
.sky-mgmt-card:hover {
    transform: translateY(-5px);
}
.sky-mgmt-image-wrapper {
    border: 2px solid #ffc107;
    padding: 0.5rem;
    background-color: white;
    position: relative;
    z-index: 1;
    border-radius: 15px 15px 0 0;
}
.sky-mgmt-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: var(--dark-blue);
    z-index: 0;
    border-radius: 15px 15px 0 0;
}
.sky-mgmt-image {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}
.sky-mgmt-info {
    background-color: var(--dark-blue);
    color: white;
    padding: 1rem;
    position: relative;
    z-index: 0;
    margin-top: -1px;
    border-radius: 0 0 15px 15px;
}
.sky-mgmt-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.sky-mgmt-position {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.sky-mgmt-position .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sky-mgmt-card:hover .sky-mgmt-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.sky-mgmt-card:hover .sky-mgmt-bg-overlay {
    height: 80%;
    transition: height 0.3s ease;
}
.sky-mgmt-section .btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sky-mgmt-section .btn-light i {
    transition: transform 0.3s ease;
}
.sky-mgmt-section .btn-light:hover i {
    transform: translateX(4px);
}
.sky-mgmt-section .btn-light:hover {
    background-color: #f29727;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 151, 39, 0.2);
}
.sky-mgmt-message {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sky-mgmt-image-wrapper .badge {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 20px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .sky-rtcop-card { height: 300px; }
    .sky-rtcop-card .sky-card-body { padding: 0.5rem; }
    .sky-mgmt-image { width: 130px; height: 180px; }
    .sky-mgmt-name { font-size: 0.9rem; }
    .sky-mgmt-position { font-size: 0.8rem; }
    .sky-mgmt-position .badge { font-size: 0.9rem; padding: 0.4rem 0.8rem; }
    .sky-mgmt-section .sky-mgmt-card { min-height: 420px; }
    .sky-mgmt-image-wrapper .badge { font-size: 0.9rem !important; padding: 0.5rem 1rem !important; }
}
@media (max-width: 576px) {
    .sky-rtcop-card { height: 280px; }
    .sky-d-flex { flex-direction: column; }
    .sky-me-2 { margin-bottom: 5px; margin-right: 0; }
    .sky-mgmt-section .sky-mgmt-card { min-height: 400px; }
    .sky-mgmt-image-wrapper .badge { font-size: 0.85rem !important; padding: 0.4rem 0.8rem !important; }
    .sky-mgmt-section .sky-mgmt-name { font-size: 0.8rem !important; }
    .sky-mgmt-section .sky-mgmt-position { font-size: 0.7rem !important; }
    .sky-mgmt-title { font-size: 24px !important; }
}

.latest-news-events {
    padding-top: 20px !important;
    padding-bottom: 0px !important;
}
.sky-mgmt-section {
    padding-top: 8px !important;
    padding-bottom: 0px !important;
}

/* Footer Styles */
.site-footer {
    background: var(--dark-blue) !important;
    color: #fff !important;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}
.footer-main {
    border-bottom: 1px solid #223a5e;
}
.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-links li, .footer-links a {
    color: #fff !important;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none !important;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffc107 !important;
    text-decoration: none !important;
}
.footer-logo-contact {
    text-align: left;
}
.footer-logo {
    max-width: 90px;
    max-height: 90px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,43,91,0.10);
    padding: 0;
    display: inline-block;
    margin-bottom: 10px;
}
.footer-contact-info {
    font-size: 0.98rem;
    color: #fff;
    margin-bottom: 10px;
}
.footer-social {
    margin-top: 10px;
}
.footer-social-icon {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background: #222b3a;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    margin-right: 7px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-icon:last-child { margin-right: 0; }
.footer-social-icon:hover {
    background: #ffc107;
    color: #222b3a;
    transform: translateY(-2px) scale(1.1);
}
.footer-copyright-bar {
    background: #222b3a;
    color: #fff;
    font-size: 0.97rem;
    border-top: 1px solid #223a5e;
}
.footer-copyright-text, .footer-copyright-text a {
    color: #fff !important;
}
.footer-copyright-text a:hover {
    color: #ffc107 !important;
    text-decoration: underline;
}
.footer-powered-text a {
    color: #ffc107;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-powered-text a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-bottom-bar {
    background: #222b3a;
    color: #fff;
    font-size: 1rem;
    border-top: 1px solid #223a5e;
}
.footer-bottom-links .list-inline-item {
    margin: 0 10px;
}
.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: #ffc107;
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .footer-main .row > div {
        text-align: left !important;
        padding-left: 24px !important;
        padding-right: 0 !important;
    }
    .footer-logo-contact {
        text-align: left !important;
        padding-left: 24px !important;
    }
}
@media (max-width: 767.98px) {
    .footer-main .row > div {
        padding-left: 18px !important;
    }
    .footer-logo-contact {
        padding-left: 18px !important;
    }
}

.footer-arrow {
    color: #fff;
    margin-right: 8px;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), color 0.3s;
    font-size: 1em;
    vertical-align: middle;
}
.footer-links a:hover .footer-arrow {
    transform: translateX(6px) scale(1.2);
    color: #ffc107;
}

/* Principal's Desk Styles */
.principal-quote-box {
    background: #f8f9fa;
    border-left: 6px solid var(--dark-blue);
    padding: 24px 24px 16px 32px;
    margin-bottom: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,43,91,0.06);
}
.principal-quote {
    font-size: 1.15rem;
    color: #222;
    font-style: italic;
    margin-bottom: 10px;
}
.principal-quote-author {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1rem;
}
.principal-quote-role {
    color: #b36b00;
    font-size: 0.98rem;
}
.principal-desk-row {
    margin-top: 32px;
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,43,91,0.07);
    padding: 32px 24px;
    align-items: flex-start;
}
.principal-photo-col {
    flex: 0 0 220px;
    max-width: 220px;
    text-align: center;
}
.principal-photo {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid var(--dark-blue);
    box-shadow: 0 2px 12px rgba(0,43,91,0.10);
    margin-bottom: 12px;
}
.principal-name {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.principal-role {
    color: #b36b00;
    font-size: 0.98rem;
    font-weight: 500;
}
.principal-message-col {
    flex: 1 1 350px;
    min-width: 0;
}
.principal-message-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 18px;
}
.principal-message-text {
    font-size: 1.08rem;
    color: #222;
    line-height: 1.8;
    text-align: justify;
}
@media (max-width: 900px) {
    .principal-desk-row {
        flex-direction: column;
        align-items: center;
        padding: 18px 16px;
    }
    .principal-photo-col {
        max-width: 100%;
        margin-bottom: 18px;
    }
    .principal-message-col {
        width: 100%;
    }
}

/* --- Arts Sidebar and Tabs (Updated Theme) --- */
.arts-sidebar {
  background: linear-gradient(135deg, #e3eafc 0%, #c7d2fe 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,43,91,0.13);
  border: 1.5px solid #2563eb22;
}
.arts-sidebar-title {
  background: linear-gradient(90deg, #002b5b 60%, #2563eb 100%);
  color: #fff;
  font-size: 1.7rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,43,91,0.10);
}
.arts-dept-list .list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #dbeafe;
  padding: 0.85rem 1.5rem 0.85rem 1.2rem;
  transition: background 0.2s, color 0.2s, border-left 0.2s;
  position: relative;
}
.arts-dept-link {
  color: #002b5b;
  font-weight: 500;
  font-size: 1.08rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
  border-left: 3px solid transparent;
  padding-left: 0;
}
.arts-dept-list .list-group-item:hover, .arts-dept-link:hover, .arts-dept-list .list-group-item.active, .arts-dept-link.active {
  background: linear-gradient(90deg, #e0e7ff 60%, #2563eb22 100%);
  color: #2563eb;
  text-decoration: none;
}
.arts-dept-list .list-group-item:hover .arts-dept-link,
.arts-dept-link:hover,
.arts-dept-list .list-group-item.active .arts-dept-link,
.arts-dept-link.active {
  color: #2563eb;
  padding-left: 10px;
  border-left: 3px solid #2563eb;
  background: none;
  text-decoration: none;
}
.arts-main-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,43,91,0.08);
}
.arts-main-title {
  color: #002b5b;
  font-weight: 700;
  letter-spacing: 1px;
}
.arts-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.arts-tab-btn {
  background: #f1f5fa;
  border: 1px solid #b6c6e3;
  color: #002b5b;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  cursor: pointer;
}
.arts-tab-btn.active, .arts-tab-btn:hover {
  background: linear-gradient(90deg, #2563eb 0%, #002b5b 100%);
  color: #fff;
  border-color: #ffc107;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
.arts-tab-content {
  min-height: 120px;
  font-size: 1.08rem;
  color: #222;
}
@media (max-width: 991.98px) {
  .arts-sidebar {
    margin-bottom: 1.5rem;
  }
}

.arts-section-padding {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .arts-section-padding {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  .arts-section-padding {
    padding-left: 64px;
    padding-right: 64px;
    }
}

.arts-dept-list .list-group-item.active, .arts-dept-link.active {
  background: linear-gradient(90deg, #e0e7ff 60%, #2563eb22 100%) !important;
  color: #2563eb !important;
}
.arts-dept-list .list-group-item.active .arts-dept-link, .arts-dept-link.active {
  color: #2563eb !important;
  padding-left: 10px;
  border-left: 3px solid #2563eb;
  background: none;
  text-decoration: none;
} 

/* --- Staff Card Custom Styling (Attractive, Theme Color, Justified, Modern) --- */
.staff-card {
  border: 3px solid var(--dark-blue);
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(37,99,235,0.13), 0 1.5px 8px rgba(0,43,91,0.08);
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
  transition: box-shadow 0.3s, transform 0.3s;
  color: #111;
  margin-bottom: 18px;
}
.staff-card:hover {
  box-shadow: 0 12px 32px rgba(37,99,235,0.18), 0 3px 12px rgba(0,43,91,0.13);
  transform: translateY(-4px) scale(1.025);
  border-color: #2563eb;
}
.staff-card .card-body {
  padding-top: 0.7rem;
  padding-bottom: 1rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  text-align: justify;
}
.staff-card .card-title {
  color: var(--dark-blue) !important;
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.staff-card .mb-1, .staff-card .mb-2 {
  color: #111 !important;
  text-align: center;
}
.staff-card a.btn-outline-danger {
  border-radius: 22px;
  font-weight: 600;
  padding: 6px 18px;
  font-size: 1rem;
  border: 2px solid #d32f2f;
  color: #d32f2f;
  background: #fff;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.staff-card a.btn-outline-danger:hover {
  background: #d32f2f;
  color: #fff;
  border-color: #b71c1c;
}
.staff-img {
  border-radius: 16px !important;
  border: 4px solid #002b5b !important;
  box-shadow: 0 2px 12px #2563eb22;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 120px !important;
  height: 170px !important;
  object-fit: cover;
}
.staff-card .card-body a[href^="mailto:"] {
  color: #111 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.staff-card .card-body a[href^="mailto:"]:hover {
  color: #2563eb !important;
  text-decoration: none;
}

.english-staff-cards .btn-outline-danger {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 22px;
  font-weight: 600;
} 