﻿
 .site-announcements

{
    display: flex;
    align-items: center;
}

.announcement-sticker {
    background: #4285F4;
    color: #fff;
    font-weight: bold;
    padding: 18px 12px;
    border-radius: 8px 0 0 8px;
    font-size: 1.2rem;
    margin-right: 12px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.announcements-marquee {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    background: #eaf1fb;
    border-radius: 0 8px 8px 0;
    padding: 12px 0;
}

    .announcements-marquee marquee {
        font-size: 1.1rem;
        color: #2c3e50;
    }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #032c54;
    margin: 0;
    padding: 0;
}

.top-bar {
    background: #4285F4;
    color: #fff;
    font-size: 1rem;
    padding: 6px 0;
    text-align: right;
}

    .top-bar span, .top-bar a {
        margin: 0 12px;
        color: #fff;
        text-decoration: none;
    }

.logo-bar {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

    .logo-bar img {
        height: 60px;
    }

    .logo-bar .logo-title {
        font-size: 1.6rem;
        font-weight: bold;
        color: #2c3e50;
        margin-left: 16px;
    }

    .logo-bar .right-icons {
        display: flex;
        align-items: center;
    }

        .logo-bar .right-icons span {
            margin-left: 18px;
            font-size: 1rem;
        }
/* Reset default styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Style main menu */
nav > ul {
    display: flex; /* Horizontal menu */
    justify-content: flex-end;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #333;
    background-color: #f8f8f8;
}

/* Style dropdown menus */
nav ul ul {
    display: none; /* Hide submenus by default */
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Show dropdown on hover */
nav li:hover > ul {
    display: block;
}

/* Position nested dropdowns */
nav ul ul ul {
    top: 0;
    left: 100%; /* Nested dropdowns appear to the right */
}

/* Hover effect for menu items */
nav a:hover {
    background-color: #e0e0e0;
}

.announcement-bar {
    color: rgb(254, 252, 252);
    padding: 8px 0;
    text-align: center;
    font-size: 1.1rem;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.site-footer {
    background: #00d2ff;
    color: #fff;
    text-align: center;
    font-size: 1rem;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
    backdrop-filter: blur(8px);
    padding: 24px;
    margin-bottom: 32px;
}

    .card h3 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 16px;
        color: #222;
    }

    .card h4 {
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 16px;
        color: white;
    }

    .card p {
        font-size: 1rem;
        color: #333;
        line-height: 1.6;
    }




.principal-desk-content img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
    border: 4px solid #4285F4;
}

.recent-news {
    max-width: 90vw;
    margin: 48px auto 0 auto;
    display: flex;
    gap: 48px;
    justify-content: center;
}

    .recent-news h2 {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 32px;
        padding-left: 16px;
        color: #222;
        letter-spacing: 1px;
    }

    .recent-news a {
        color: #4285F4;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        transition: color 0.2s;
    }

        .recent-news a:hover {
            color: #365eab;
        }

.research-section {
    position: relative;
    background: transparent;
    padding: 64px 0;
    margin-top: 0;
}

    .research-section .section-title {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 32px;
        border-left: 5px solid #4285F4;
        padding-left: 12px;
        color: #fff;
    }

.research-highlights {
    display: flex;
    gap: 32px;
}

.highlight-card {
    width: 260px;
}

    .highlight-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
    }

    .highlight-card h4 {
        font-size: 1.15rem;
        font-weight: bold;
        margin: 18px 0 8px 0;
        color: #fff;
    }

    .highlight-card p {
        color: #fff;
        margin-bottom: 8px;
    }

.centres-column {
    flex: 1;
}

    .centres-column h3 {
        color: #fff;
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 24px;
    }

.centre-card {
    width: 260px;
}

    .centre-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
    }

    .centre-card h4 {
        font-size: 1.15rem;
        font-weight: bold;
        margin-bottom: 8px;
        color: #222;
    }

    .centre-card p {
        color: #222;
        margin-bottom: 8px;
    }

.carousel-inner img {
    width: 10%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    background: #eaf1fb;
}

.fb-page {
    margin: 0 auto;
}

iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}

@media (max-width: 768px) {
    .logo-bar {
        flex-direction: column;
        align-items: flex-start;
    }

        .logo-bar .logo-title {
            margin-left: 0;
            margin-top: 8px;
            text-align: center;
        }

        .logo-bar .right-icons {
            margin-top: 8px;
            justify-content: center;
            width: 100%;
        }

    .top-bar {
        text-align: center;
        font-size: 0.9rem;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav a {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .announcement-bar {
        font-size: 0.9rem;
    }

    .hero-section {
        height: 300px;
    }

    .hero-slide {
        height: 300px;
    }

    .site-footer {
        font-size: 0.9rem;
    }

    .recent-news {
        flex-direction: column;
        align-items: center;
    }

        .recent-news h2 {
            text-align: center;
            padding-left: 0;
        }

        .recent-news a {
            font-size: 1rem;
        }

    .research-section {
        padding: 32px 0;
    }

        .research-section .section-title {
            font-size: 1.8rem;
        }

    .research-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-card {
        width: 100%;
        max-width: 340px;
    }

    .centres-column {
        margin-top: 32px;
    }

        .centres-column h3 {
            text-align: center;
        }

    .centre-card {
        width: 100%;
        max-width: 340px;
    }
}

/* Classic tab look for About section */
.classic-tabs-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    border: 1px solid #e0e0e0;
    margin-top: 24px;
    padding: 32px 32px 24px 32px;
}

    .classic-tabs-card .nav-tabs {
        border-bottom: 2px solid #dee2e6;
        background: #f8f9fa;
        border-radius: 8px 8px 0 0;
        padding: 0 12px;
    }

        .classic-tabs-card .nav-tabs .nav-link {
            color: #495057;
            font-weight: 500;
            border: none;
            border-bottom: 2px solid transparent;
            background: none;
            margin-right: 8px;
            border-radius: 8px 8px 0 0;
            transition: background 0.2s, color 0.2s;
        }

            .classic-tabs-card .nav-tabs .nav-link.active {
                color: #0d6efd;
                background: #fff;
                border-bottom: 2px solid #0d6efd;
            }

    .classic-tabs-card .tab-content {
        background: #fff;
        border-radius: 0 0 8px 8px;
        border-top: none;
        padding: 32px 16px 8px 16px;
        min-height: 180px;
    }

    .classic-tabs-card ul {
        margin-bottom: 0;
    }

.social-sidebar {
    position: fixed;
    top: 400px;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 6px 0 0 6px;
    margin-left: 0;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    text-decoration: none;
}

    .social-sidebar a:hover {
        filter: brightness(1.1);
        transform: translateX(6px) scale(1.08);
    }

@media (max-width: 768px) {
    .social-sidebar {
        top: 120px;
    }

        .social-sidebar a {
            width: 38px;
            height: 38px;
            font-size: 1.15rem;
        }
}


.classic-navbar-wrapper {
    width: 100%;
    background: linear-gradient(90deg, #e1e2e2 60%, #eaf1fb 100%);
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
}

.classic-navbar {
    width: 100%;
    max-width: 1100px;
}

    .classic-navbar ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }

    .classic-navbar li {
        position: relative;
    }

    .classic-navbar a {
        text-decoration: none;
        padding: 12px 28px;
        display: block;
        color: #2c3e50;
        background: transparent;
        border-radius: 0;
        font-size: 1.12rem;
        font-weight: 600;
        border-bottom: 2px solid transparent;
        transition: background 0.2s, color 0.2s, border-bottom 0.2s;
    }

        .classic-navbar a:hover, .classic-navbar li:hover > a {
            background: #eaf1fb;
            color: #4285F4;
            border-bottom: 2px solid #4285F4;
        }

    .classic-navbar ul ul {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        min-width: 220px;
        box-shadow: 0 8px 16px rgba(44,62,80,0.12);
        z-index: 10;
        border: 1px solid #e0e0e0;
        border-radius: 0 0 8px 8px;
    }

    .classic-navbar li:hover > ul {
        display: block;
    }

    .classic-navbar ul ul ul {
        left: 100%;
        top: 0;
    }

    .classic-navbar ul ul li a {
        background: #fff;
        color: #2c3e50;
        border-radius: 0;
        font-size: 1rem;
        padding: 10px 22px;
        border-bottom: none;
    }

        .classic-navbar ul ul li a:hover {
            background: #eaf1fb;
            color: #4285F4;
        }

@media (max-width: 900px) {
    .classic-navbar ul {
        flex-direction: column;
        gap: 0;
    }

    .classic-navbar a {
        padding: 14px 18px;
        font-size: 1rem;
    }
}

.awards-stats-bg-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(30,32,40,0.85);
    border-radius: 0;
    padding: 0;
    z-index: 1;
}

.awards-stats-content {
    max-width: 1100px;
    margin: 12px auto 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    border-radius: 16px;
    padding: 32px 40px;
    color: #fff;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .awards-stats-content {
        flex-direction: column;
        gap: 24px;
        padding: 24px 10px;
    }

    .awards-stats-bg-full {
        padding: 0;
    }
}

.academic-calendar-section-unique {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    background: linear-gradient(120deg, #23243a 60%, #3a3b5a 100%);
    padding: 0;
    margin: 0;
    min-height: 340px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    position: relative;
    overflow: hidden;
}

.calendar-glass {
    flex: 2;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    margin: 32px 0 32px 32px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.calendar-title {
    color: #4fd1ff;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-timeline {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

    .calendar-timeline li {
        display: flex;
        align-items: center;
        margin-bottom: 18px;
        position: relative;
    }

.timeline-dot {
    width: 14px;
    height: 14px;
    background: #4fd1ff;
    border-radius: 50%;
    margin-right: 18px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-label {
    background: #2ecc71;
    color: #fff;
    font-size: 0.92rem;
    border-radius: 4px;
    padding: 2px 10px;
    font-weight: 600;
}

.calendar-timeline a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    transition: color 0.2s;
}

    .calendar-timeline a:hover {
        color: #4fd1ff;
    }

.calendar-divider {
    border-top: 1.5px solid #4fd1ff;
    width: 80px;
    margin: 18px 0 10px 0;
}

.calendar-link {
    color: #4fd1ff;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.2s;
}

    .calendar-link:hover {
        color: #fff;
    }

.calendar-image-glass {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
}

    .calendar-image-glass img {
        width: 340px;
        height: 220px;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
        background: #222;
        border: 4px solid rgba(79,209,255,0.18);
    }

.calendar-quicklinks-glass {
    flex: 2;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    margin: 32px 32px 32px 0;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

    .calendar-quicklinks-glass h4 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 24px;
        letter-spacing: 1px;
    }

.quicklinks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 12px;
    width: 100%;
    justify-content: space-between;
}

.quicklink-card {
    background: rgba(79,209,255,0.18);
    border-radius: 12px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 18px 0;
    width: 48%;
    text-align: center;
    margin-bottom: 0;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

    .quicklink-card.full {
        width: 100%;
    }

.quicklink-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4fd1ff;
    color: #23243a;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    margin-right: 6px;
    box-shadow: 0 1px 4px rgba(44,62,80,0.10);
    transition: background 0.2s, color 0.2s;
}

.quicklink-card:hover {
    background: #4fd1ff;
    color: #23243a;
    transform: translateY(-4px) scale(1.04);
}

    .quicklink-card:hover .quicklink-btn {
        background: #fff;
        color: #4fd1ff;
    }

@media (max-width: 1100px) {
    .academic-calendar-section-unique {
        flex-direction: column;
        gap: 0;
        min-height: unset;
    }

    .calendar-glass, .calendar-quicklinks-glass {
        margin: 24px 24px 0 24px;
        padding: 28px 18px;
    }

    .calendar-image-glass {
        margin: 0 0 24px 0;
    }
}

@media (max-width: 768px) {
    .academic-calendar-section-unique {
        flex-direction: column;
        gap: 0;
        min-height: unset;
    }

    .calendar-glass, .calendar-quicklinks-glass {
        margin: 18px 8px 0 8px;
        padding: 18px 8px;
    }

    .calendar-image-glass img {
        width: 98vw;
        max-width: 340px;
        height: 160px;
    }
}

