/* ── MODERN INDEX GLOBAL DESIGN SYSTEM ── */
:root {
    --navy-dark: #12225a;
    --navy-mid: #1d3681;
    --navy-light: #3952a3;
    --gold: #d4af37;
    --gold-light: #f3d56b;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-800: #1e293b;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Times New Roman', Times, serif !important;
    background-color: var(--slate-50);
    color: #333;
}

/* ── 1. TOP HEADER & NAVIGATION ── */
.top-header {
    background: linear-gradient(135deg, #ffffff, #fdfdfd);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--gold);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.college-logo img {
    max-width: 90px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s var(--transition);
}

.college-logo img:hover {
    transform: scale(1.05);
}

.college-info {
    text-align: center;
}

.college-info h1 {
    color: var(--navy-dark);
    font-size: clamp(1.6rem, 3.6vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.college-info p {
    color: #334155;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.4px;
    line-height: 40px;
}

.fixed-action-buttons {
    position: fixed;
    right: 30px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.action-btn {
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: all 0.7s ease;
    z-index: -1;
}

.action-btn:hover::after {
    transform: translateX(50%) skewX(-15deg);
}

.admin-btn {
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
    animation: admin-pulse 2s infinite;
}

.school-btn {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 5px 15px rgba(56, 239, 125, 0.4);
    animation: school-pulse 2s infinite;
}

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.admin-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 75, 43, 0.6) !important;
}

.school-btn:hover {
    box-shadow: 0 10px 25px rgba(56, 239, 125, 0.6) !important;
}

.action-btn i {
    transition: transform 0.4s;
}

.action-btn:hover i {
    transform: rotate(15deg) scale(1.2);
}

@keyframes admin-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 75, 43, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
    }
}

@keyframes school-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 239, 125, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(56, 239, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 239, 125, 0);
    }
}

/* Main Navigation */
.main-navigation {
    background: var(--navy-dark);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;
}

.ak-container {
    margin: 0 auto;
}

#primary-menu {
    display: flex;
    justify-content: left;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    overflow: visible;
}

#primary-menu::-webkit-scrollbar {
    display: none;
}

#primary-menu>li {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#primary-menu>li:last-child {
    border-right: none;
}

#primary-menu>li>a {
    display: block;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.4rem;
    padding: 12px 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

#primary-menu>li.current-menu-item>a,
#primary-menu>li.current_page_item>a {
    background: var(--navy-light);
}

#primary-menu>li:hover>a {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Dropdown styling */
.sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    border-top: 4px solid var(--gold) !important;
    border-radius: 0 0 12px 12px !important;
    min-width: 300px !important;
    padding: 0px 0 !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    list-style: none !important;
    margin: 0 !important;
    z-index: 1001 !important;
}

#primary-menu li:hover>.sub-menu {
    display: block !important;
}

.sf-arrows .sf-with-ul:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.5em;
    margin-top: -3px;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: #dFeEFF;
    border-top-color: rgb(122 255 113);
}

.sub-menu li a {
    display: block !important;
    color: var(--navy-dark) !important;
    background: transparent !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    padding: 14px 25px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: 0.3s !important;
}

.sub-menu li:last-child a {
    border-bottom: none !important;
}

.sub-menu li a:hover {
    background: var(--navy-dark) !important;
    color: #ffffff !important;
    padding-left: 32px !important;
}

.sub-menu .sub-menu {
    top: -4px !important;
    left: 100% !important;
    border-radius: 12px !important;
}

/* ── 2. HERO VIDEO ── */
.video-header {
    height: 75vh;
    min-height: 550px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

/* ── 3. FLASH NEWS ── */
.SJ_flash-news-marquee {
    background: var(--slate-800);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.SJ_flash-wrapper {
    display: flex;
    height: 55px;
    align-items: center;
}

.SJ_flash-label {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    font-weight: 800;
    padding: 0 30px;
    font-size: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 0 30px 30px 0;
    z-index: 2;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.SJ_marquee-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.SJ_marquee-track {
    white-space: nowrap;
    animation: sj-marquee 30s linear infinite;
    color: white;
    font-size: 1.1rem;
    padding-left: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.SJ_marquee-track:hover {
    animation-play-state: paused;
}

.SJ_marquee-item {
    white-space: nowrap;
    margin-right: 50px;
    color: #ffffff;
    /* Light blue text for dark background */
    font-weight: 500;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.main-navigation ul ul li,
.main-navigation ul ul ul li {
    background: #f1f5f9 !important;
    border: 1px solid rgb(119, 0, 255) !important;
}

.SJ_marquee-item:hover {
    color: #004696;
    text-decoration: underline;
}

.SJ_marquee-item::before {
    content: "•";
    margin-right: 15px;
    color: var(--gold);
    /* Gold bullet */
    font-size: 1.5rem;
}

@keyframes sj-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ── 4. THREE IMAGES MOTO ── */
.SJ_three_images_wrapper {
    max-width: 100%;
    padding: 3rem 1rem;
    background: var(--slate-50);
}

.SJ_three_images_inner {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--slate-100);
}

.SJ_three_images_inner img {
    transition: transform 0.6s var(--transition);
}

.SJ_three_images_inner img:hover {
    transform: scale(1.08);
}

/* ── 5. ADMINISTRATIVE HEADS ── */
.Sj_leadership_section {
    background: var(--slate-50);
    padding: 60px 20px;
}

.Sj_leadership_section * {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
}

.Sj_leadership_block {
    max-width: 1350px;
    margin: 0 auto 80px auto;
}

.Sj_leadership_block:last-child {
    margin-bottom: 0;
}

.Sj_leadership_title {
    color: var(--navy-dark);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.Sj_leadership_underline {
    background: var(--gold);
    height: 4px;
    width: 60px;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.Sj_leadership_content {
    display: block;
}

.Sj_leadership_content::after {
    content: "";
    display: table;
    clear: both;
}

.Sj_leadership_profile {
    float: left;
    width: 650px;
    margin: 0 50px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Sj_leadership_block:nth-child(even) .Sj_leadership_profile {
    float: right;
    margin: 0 0 20px 50px;
}

.Sj_leadership_image_container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    z-index: 1;
}

.Sj_leadership_image_container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    border-radius: 20px;
    z-index: -1;
    transition: 0.3s;
}

.Sj_leadership_block:nth-child(even) .Sj_leadership_image_container::before {
    left: auto;
    right: 20px;
}

.Sj_leadership_image_container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 4/3;
    border-radius: 20px;
    border: 8px solid var(--slate-50);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.Sj_leadership_name {
    color: var(--navy-light);
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0 0 5px 0;
    text-align: center;
    text-transform: capitalize;
}

.Sj_leadership_role {
    color: #444;
    font-size: 1.05rem;
    font-weight: bold;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.Sj_leadership_message {
    display: block;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.Sj_leadership_message p {
    margin-bottom: 20px;
    text-align: justify !important;
    letter-spacing: 0.2px;
}

.Sj_leadership_message p:first-child {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--navy-dark);
    font-weight: 700;
    line-height: 1.7;
}

.Sj_leadership_message strong {
    color: var(--navy-dark);
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 900px) {

    .Sj_leadership_profile,
    .Sj_leadership_block:nth-child(even) .Sj_leadership_profile {
        float: none;
        margin: 0 auto 30px auto;
        width: 100%;
        max-width: 380px;
    }

    .Sj_leadership_content {
        text-align: center;
    }

    .Sj_leadership_message {
        text-align: left;
    }

    .Sj_leadership_message p {
        text-align: left;
    }
}

/* ── 6. VISION & MISSION ── */
.Sj_vm_section {
    padding: 100px 20px 80px 20px;
    background: #ffffff;
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Elegant Heading */
.Sj_elegant_heading {
    margin-bottom: 70px;
}

.Sj_elegant_heading h2 {
    font-size: 4rem;
    font-weight: 500;
    color: #4A3C31;
    /* Deep elegant brown/grey */
    letter-spacing: 10px;
    margin: 0;
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
}

.Sj_elegant_heading h2 span {
    font-family: "Georgia", serif;
    font-style: italic;
    color: #C39B66;
    /* Elegant gold/bronze */
    font-size: 4.5rem;
    font-weight: normal;
    padding: 0 15px;
}

.Sj_elegant_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.Sj_elegant_divider .Sj_line {
    height: 1px;
    background-color: #C39B66;
    width: 100px;
}

.Sj_elegant_divider i {
    color: #C39B66;
    font-size: 1rem;
}

.Sj_vm_wrapper {
    display: flex;
    gap: 40px;
    padding: 100px;
    margin: 0 auto;
    justify-content: center;
}

.Sj_vm_card {
    flex: 1;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(195, 155, 102, 0.4);
    /* Light gold/bronze border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.Sj_card_header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.Sj_icon_wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F7F1E9;
    /* Soft cream/tan */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A3C31;
    font-size: 1.6rem;
}

.Sj_card_header h3 {
    margin: 0;
    font-size: 2.2rem;
    font-family: "Times New Roman", Times, serif;
    color: #4A3C31;
    letter-spacing: 3px;
    font-weight: 600;
}

.Sj_card_divider {
    height: 2px;
    width: 60px;
    background-color: #D6C2A5;
    margin-bottom: 30px;
}

.Sj_vm_card p {
    font-size: 2rem;
    line-height: 2;
    color: #7b7b7b;
    font-weight: 400;
    flex: 1;
    margin-bottom: 40px;
    text-align: left;
}

.Sj_card_footer {
    border-top: 1px dashed rgba(195, 155, 102, 0.5);
    padding-top: 20px;
    text-align: right;
    color: #A3855E;
    font-style: italic;
    font-family: "Georgia", serif;
    font-size: 1.05rem;
}

.Sj_card_footer i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* ── 7. GRID CONTENT (VIDEOS, EVENTS, GALLERY) ── */
.Sj_main_container {
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1100px) {
    .Sj_main_container {
        grid-template-columns: 1fr;
    }

    .Sj_vm_wrapper {
        flex-direction: column;
    }
}

.Sj_video_section,
.Sj_events_section,
.Sj_gallery_section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.Sj_section_header,
.Sj_events_header {
    background: var(--navy-dark) !important;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
}

.Sj_video_item {
    margin: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.Sj_video_item iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.Sj_event_item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #eef2f6;
    transition: 0.3s;
}

.Sj_event_item:hover {
    background: #f8fafc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.Sj_event_date {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin-right: 25px;
    min-width: 90px;
}

.Sj_day {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.Sj_month_year {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 8px;
}

.Sj_event_content h5 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: var(--navy-dark);
    font-weight: bold;
    line-height: 1.4;
}

.Sj_event_content a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Sj_event_content a:hover {
    color: var(--gold);
}

.Sj_gallery_item {
    display: block;
    padding: 10px;
    text-decoration: none;
}

.Sj_gallery_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.Sj_gallery_item:hover .Sj_gallery_image {
    transform: scale(1.05);
}

.Sj_gallery_title {
    font-weight: bold;
    color: var(--navy-dark);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.Sj_view_more_btn {
    background: var(--navy-mid);
    color: white !important;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: block;
    margin-top: auto;
    transition: 0.3s;
    letter-spacing: 1px;
}

.Sj_view_more_btn:hover {
    background: var(--navy-dark);
}

.Sj_marquee_wrapper,
.Sj_events_marquee_container,
.Sj_gallery_marquee_wrapper {
    height: 500px;
    overflow-y: auto;
}

/* ── 8. FOOTER CUSTOM ── */
.custom-footer-wrapper {
    background: var(--navy-dark);
    margin-top: 0px;
    position: relative;
    color: white;
}

.custom-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 10px;
}

.custom-footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .custom-footer-main-grid {
        grid-template-columns: 1fr;
    }
}

.custom-footer-logo-container {
    width: 180px;
    height: 180px;
    background: white;
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-footer-logo-placeholder img {
    max-width: 120px;
    height: auto;
}

.custom-footer-section-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.custom-footer-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .custom-footer-link-grid {
        grid-template-columns: 1fr;
    }
}

.custom-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer-link-item {
    margin-bottom: 15px;
}

.custom-footer-link,
.custom-footer-submenu-link {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

.custom-footer-link::before {
    content: '\276F';
    /* Clean small right chevron */
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.custom-footer-link:hover,
.custom-footer-submenu-link:hover {
    color: var(--gold-light);
    padding-left: 25px;
}

.custom-footer-link:hover::before {
    left: 5px;
}

.custom-footer-address-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer-address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.custom-footer-address-icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.custom-footer-address-text p {
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.custom-footer-address-text strong {
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.custom-footer-address-text a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.custom-footer-address-text a:hover {
    color: var(--gold-light);
}

.custom-footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 1.05rem;
}

.custom-footer-copyright a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

.custom-footer-submenu {
    list-style: none;
    padding-left: 15px;
    margin: 10px 0 0 0;
}

.custom-footer-submenu .custom-footer-submenu-link {
    font-size: 0.95rem;
    font-weight: normal;
    color: #ccc;
}

.custom-footer-submenu-item {
    margin-bottom: 8px;
}