:root {
    --sh-primary: #001F5B;
    --sh-primary-dark: #03133a;
    --sh-navy: #001F5B;
    --sh-link-blue: #0047ff;
    --sh-accent: #d69e2e;
    --sh-ink: #0b1d45;
    --sh-muted: #64718d;
    --sh-soft: #f2f6ff;
}

body {
    color: var(--sh-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
}

a {
    color: var(--sh-primary);
}

.btn-primary {
    --bs-btn-bg: var(--sh-primary);
    --bs-btn-border-color: var(--sh-primary);
    --bs-btn-hover-bg: var(--sh-primary-dark);
    --bs-btn-hover-border-color: var(--sh-primary-dark);
}

.btn-outline-secondary {
    --bs-btn-color: var(--sh-navy);
    --bs-btn-border-color: #c7d2ee;
    --bs-btn-hover-bg: var(--sh-soft);
    --bs-btn-hover-color: var(--sh-navy);
    --bs-btn-hover-border-color: var(--sh-link-blue);
}

.text-bg-success {
    color: #fff !important;
    background-color: var(--sh-navy) !important;
}

.site-header {
    background: #fff;
    box-shadow: 0 4px 18px rgba(6, 31, 85, .06);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.top-contact-bar {
    background: var(--sh-navy);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: .55rem 0 .45rem;
    max-height: 180px;
    overflow: hidden;
    transition: max-height .24s ease, padding .24s ease, opacity .18s ease;
}

.site-header.hide-contact-bar .top-contact-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.top-contact-bar a {
    color: #fff;
    text-decoration: none;
}

.top-contact-bar i {
    color: #dce8ff;
}

.latest-news-marquee {
    border-top: 1px solid rgba(255, 255, 255, .18);
    margin-top: .45rem;
    padding-top: .4rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    overflow: hidden;
}

.latest-news-label {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .25rem .75rem;
    flex: 0 0 auto;
    font-weight: 800;
}

.latest-news-track {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
    white-space: nowrap;
}

.latest-news-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    min-width: max-content;
    animation: latestNewsScroll 32s linear infinite;
}

.latest-news-content:hover {
    animation-play-state: paused;
}

.latest-news-content a {
    color: #fff;
    text-decoration: none;
}

.latest-news-content a::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #dce8ff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 2rem;
    vertical-align: middle;
}

@keyframes latestNewsScroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
}

.college-title-band {
    padding: .4rem 0 .95rem;
    text-align: center;
    max-height: 160px;
    overflow: hidden;
    transition: max-height .24s ease, padding .24s ease, opacity .18s ease;
}

.site-header.hide-contact-bar .college-title-band {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.college-title-band h1 {
    color: var(--sh-navy);
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0;
}

.main-menu {
    padding: .55rem 0 .85rem;
}

.college-logo-link {
    margin-right: 2rem;
    padding: 0;
}

.college-logo {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.college-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav-links {
    gap: 1.35rem;
}

.main-nav-links .nav-link {
    color: var(--sh-navy);
    font-weight: 700;
    font-size: 1rem;
    padding: .45rem 0;
}

.main-nav-links .nav-link.active,
.main-nav-links .nav-link:hover {
    color: var(--sh-link-blue);
}

.main-menu .dropdown-toggle::after {
    border-top-color: #63739a;
    margin-left: .35rem;
    vertical-align: .12em;
}

.main-menu .dropdown-menu {
    border: 1px solid #dce5f6;
    border-radius: 4px;
    box-shadow: 0 18px 36px rgba(0, 31, 91, .12);
    padding: .45rem;
    min-width: 260px;
    max-height: 72vh;
    overflow-y: auto;
}

.main-menu .dropdown-item {
    color: var(--sh-navy);
    font-weight: 600;
    border-radius: 4px;
    padding: .55rem .8rem;
}

.main-menu .dropdown-item:hover,
.main-menu .dropdown-item:focus {
    background: var(--sh-soft);
    color: var(--sh-link-blue);
}

@media (min-width: 992px) {
    .main-menu .dropdown:hover > .dropdown-menu,
    .main-menu .dropdown:focus-within > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.hero {
    position: relative;
    color: #fff;
    background: var(--sh-navy);
}

.hero .carousel-item {
    min-height: 74vh;
}

.hero-slide {
    min-height: 74vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 5rem 0 6rem;
}

.hero h1 {
    font-size: clamp(2.35rem, 6vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
    margin-bottom: 1.35rem;
    max-width: 880px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: .45rem .9rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
}

.hero-lead {
    color: #e8efff;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.hero .carousel-item.active .hero-kicker {
    animation: heroFadeUp .75s ease both;
}

.hero .carousel-item.active h1 {
    animation: heroFadeUp .85s ease .12s both;
}

.hero .carousel-item.active .hero-lead {
    animation: heroFadeUp .85s ease .24s both;
}

.hero .carousel-item.active .hero-actions {
    animation: heroFadeUp .85s ease .36s both;
}

.hero-control {
    width: 46px;
    height: 46px;
    top: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--sh-navy);
    opacity: 1;
    margin: 0 1rem;
}

.hero-control:hover {
    background: var(--sh-link-blue);
    color: #fff;
}

.hero-indicators {
    bottom: 1.35rem;
    margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-portal-layout {
    background: linear-gradient(180deg, #f4f7fc 0%, #fff 100%);
    padding: 2rem 0 3rem;
}

.home-portal-layout .container {
    max-width: 1380px;
}

.home-side-panel,
.home-news-card {
    background: #f8faff;
    border: 1px solid #dce5f6;
    border-radius: 8px;
    padding: 1.65rem;
    height: auto;
    box-shadow: 0 14px 34px rgba(0, 31, 91, .07);
}

.home-side-panel h2,
.home-news-card h2 {
    color: var(--sh-navy);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.home-side-panel h2::after,
.home-news-card h2::after {
    content: "";
    width: 30px;
    height: 4px;
    background: var(--sh-link-blue);
    border-radius: 999px;
    position: absolute;
    left: 0;
    bottom: -.7rem;
}

.home-link-list {
    display: flex;
    flex-direction: column;
    gap: .72rem;
}

.home-side-panel a {
    min-height: 54px;
    border: 1px solid #d6e0f2;
    border-radius: 5px;
    background: #fff;
    color: var(--sh-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.home-side-panel a span {
    min-width: 0;
}

.home-side-panel a:hover {
    color: var(--sh-link-blue);
    border-color: #b9c8ee;
}

.home-side-panel a i {
    color: #7d8ba9;
    flex: 0 0 auto;
}

.home-panel-empty {
    color: var(--sh-muted);
    margin: 0;
}

.home-main-feature {
    background: #fff;
    border: 1px solid #dce5f6;
    border-radius: 8px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 18px 42px rgba(0, 31, 91, .08);
}

.home-welcome-title {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .22), transparent 32%),
        linear-gradient(135deg, #54c3e2 0%, #0047ff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.35rem;
}

.home-welcome-title span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    font-size: 1.45rem;
    box-shadow: 0 12px 26px rgba(0, 31, 91, .18);
}

.home-welcome-title small,
.home-welcome-title strong {
    display: block;
}

.home-welcome-title small {
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #eaf8ff;
}

.home-welcome-title strong {
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    line-height: 1.25;
    font-weight: 900;
}

.home-main-feature img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

.principal-message {
    background:
        radial-gradient(circle at top right, rgba(84, 195, 226, .35), transparent 36%),
        linear-gradient(135deg, #001F5B 0%, #073a88 100%);
    color: #fff;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
}

.principal-message h2 {
    color: #fff;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 900;
    margin: .25rem 0 .75rem;
}

.principal-message p {
    color: #dce8ff;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 720px;
    margin: 0;
}

.principal-message-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex: 0 0 62px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.principal-message-kicker {
    color: #8ee6ff;
    display: block;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.principal-message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem;
}

.principal-message-actions .btn {
    font-weight: 800;
    border-radius: 999px;
    padding: .55rem 1rem;
}

.home-news-card {
    background: #fff;
}

.home-news-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.recent-news-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    border: 1px solid #dce5f6;
    border-radius: 6px;
    padding: .85rem;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.recent-news-item:hover {
    border-color: #b9c8ee;
    box-shadow: 0 12px 24px rgba(0, 31, 91, .1);
    color: inherit;
    transform: translateY(-2px);
}

.new-badge {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    color: #ff0000;
    font-weight: 900;
    font-size: .78rem;
    background: #d5ff28;
    clip-path: polygon(50% 0%, 60% 26%, 85% 12%, 74% 39%, 100% 50%, 74% 61%, 85% 88%, 60% 74%, 50% 100%, 40% 74%, 15% 88%, 26% 61%, 0% 50%, 26% 39%, 15% 12%, 40% 26%);
    transform: rotate(-12deg);
}

.news-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
}

.recent-news-item small {
    color: #6c7896;
    font-weight: 700;
    display: block;
    margin-bottom: .55rem;
}

.recent-news-item strong {
    color: var(--sh-navy);
    display: block;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.post-hero {
    background:
        linear-gradient(90deg, rgba(0, 31, 91, .96), rgba(0, 71, 255, .62)),
        url("https://images.unsplash.com/photo-1571260899304-425eee4c7efc?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    padding: 5rem 0;
}

.post-hero h1 {
    font-size: clamp(2.1rem, 5vw, 4.1rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: 0;
    margin: .7rem 0 1.15rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    color: #dce8ff;
    font-weight: 700;
}

.post-card {
    border: 1px solid #dce5f6;
    border-radius: 8px;
    background: #fff;
    padding: clamp(1.4rem, 4vw, 3rem);
    box-shadow: 0 20px 46px rgba(0, 31, 91, .09);
}

.post-summary {
    color: var(--sh-navy);
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    line-height: 1.6;
    font-weight: 800;
    border-left: 5px solid var(--sh-link-blue);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.post-body p {
    color: #59667f;
    font-size: 1.06rem;
    line-height: 1.85;
}

.post-actions {
    border-top: 1px solid #e6edf9;
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.home-side-image {
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
    margin-top: 1.4rem;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 31, 91, .08);
}

.admission-panel {
    background: #f7f9fe;
}

.featured-courses-section {
    background: linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
    padding: 2rem 0 0;
}

.featured-courses-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 1.25rem;
}

.featured-courses-title {
    color: var(--sh-navy);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 900;
    letter-spacing: 0;
    margin: .35rem 0 .55rem;
}

.featured-courses-heading p {
    color: var(--sh-muted);
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
}

.featured-courses-carousel-band {
    background:
        radial-gradient(circle at top left, rgba(84, 195, 226, .18), transparent 34%),
        linear-gradient(180deg, #0f2230 0%, #101820 100%);
    padding: 3rem 0 4.25rem;
    position: relative;
    overflow: hidden;
}

.featured-course-card {
    background: #fff;
    border: 1px solid rgba(220, 229, 246, .18);
    border-radius: 8px;
    height: 100%;
    min-height: 455px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.featured-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(0, 0, 0, .22);
}

.featured-course-image {
    height: 205px;
    position: relative;
    overflow: hidden;
}

.featured-course-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 31, 91, .46));
}

.featured-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.featured-course-card:hover .featured-course-image img {
    transform: scale(1.045);
}

.featured-course-image span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(0, 31, 91, .92);
    color: #fff;
    border-radius: 999px;
    padding: .4rem .85rem;
    font-weight: 800;
    font-size: .85rem;
    z-index: 1;
}

.featured-course-content {
    padding: 1.55rem;
    text-align: left;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-course-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sh-soft);
    color: var(--sh-link-blue);
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.featured-course-label {
    color: var(--sh-link-blue);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .4rem;
    font-size: .72rem;
}

.featured-course-card h3 {
    color: var(--sh-navy);
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: .9rem;
}

.featured-course-card p {
    color: #6f7280;
    line-height: 1.6;
    min-height: 78px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-course-footer {
    border-top: 1px solid #e6edf9;
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
}

.featured-course-footer a {
    color: var(--sh-link-blue);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.featured-course-control {
    width: 44px;
    height: 44px;
    top: calc(50% - 22px);
    border-radius: 50%;
    background: #fff;
    color: var(--sh-navy);
    opacity: 1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.featured-course-control:hover {
    background: var(--sh-link-blue);
    color: #fff;
}

.carousel-control-prev.featured-course-control {
    left: .5rem;
}

.carousel-control-next.featured-course-control {
    right: .5rem;
}

#featuredCoursesCarousel {
    padding: 0 3.25rem 2.4rem;
}

#featuredCoursesCarousel .carousel-indicators {
    bottom: -1.25rem;
    margin-bottom: 0;
}

#featuredCoursesCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.home-cta-band {
    background: var(--sh-soft);
    padding: 4rem 0;
}

.home-cta-band h2 {
    color: var(--sh-navy);
    font-weight: 800;
    margin: .45rem 0 .65rem;
}

.home-cta-band p {
    color: var(--sh-muted);
    margin-bottom: 0;
}

.section-kicker {
    color: var(--sh-link-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
}

.info-band {
    background: var(--sh-soft);
}

.program-card,
.news-card,
.value-card,
.facility-card,
.auth-panel {
    border: 1px solid #dce5f6;
    border-radius: 8px;
    background: #fff;
    height: 100%;
}

.program-card {
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(28, 43, 51, .1);
}

.program-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: var(--sh-soft);
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.program-detail-hero {
    background:
        linear-gradient(90deg, rgba(0, 31, 91, .96), rgba(0, 71, 255, .62)),
        url("https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    padding: 5.25rem 0;
}

.program-detail-hero h1 {
    font-size: clamp(2.25rem, 5.4vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    margin: .7rem 0 1rem;
}

.program-detail-hero p {
    color: #dce8ff;
    font-size: 1.15rem;
    line-height: 1.75;
    max-width: 820px;
}

.program-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.5rem;
}

.program-hero-card {
    background: rgba(255, 255, 255, .96);
    border-radius: 8px;
    padding: 2rem;
    color: var(--sh-navy);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
}

.program-hero-card span {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--sh-soft);
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.program-hero-card strong,
.program-hero-card small {
    display: block;
}

.program-hero-card strong {
    font-size: 2rem;
    font-weight: 900;
}

.program-hero-card small {
    color: var(--sh-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.program-detail-card,
.program-apply-panel,
.program-fees-panel,
.program-related-panel {
    border: 1px solid #dce5f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 31, 91, .08);
}

.program-detail-card {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.program-detail-card h2 {
    color: var(--sh-navy);
    font-weight: 900;
    margin: .4rem 0 1rem;
}

.program-detail-card > p {
    color: #59667f;
    font-size: 1.08rem;
    line-height: 1.8;
}

.program-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.program-detail-grid > div,
.program-learning-panel {
    background: #f8faff;
    border: 1px solid #dce5f6;
    border-radius: 8px;
    padding: 1.35rem;
}

.program-detail-grid i {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #fff;
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.program-detail-grid h3,
.program-learning-panel h3,
.program-apply-panel h2,
.program-fees-panel h2,
.program-related-panel h2 {
    color: var(--sh-navy);
    font-size: 1.25rem;
    font-weight: 900;
}

.program-detail-grid p,
.program-learning-panel li,
.program-apply-panel p {
    color: #59667f;
    line-height: 1.7;
}

.program-learning-panel ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.program-learning-panel li {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
}

.program-learning-panel li i {
    color: var(--sh-link-blue);
    margin-top: .3rem;
}

.program-apply-panel,
.program-fees-panel,
.program-related-panel {
    padding: 1.5rem;
}

.program-fees-panel,
.program-related-panel {
    margin-top: 1.25rem;
}

.program-fees-panel a {
    display: flex;
    align-items: center;
    gap: .9rem;
    border: 1px solid #dce5f6;
    border-radius: 6px;
    padding: .9rem;
    color: var(--sh-navy);
    text-decoration: none;
    margin-top: .75rem;
}

.program-fees-panel a:hover {
    border-color: #b9c8ee;
    color: var(--sh-link-blue);
}

.program-fees-panel a > i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--sh-soft);
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.program-fees-panel strong,
.program-fees-panel small {
    display: block;
}

.program-fees-panel strong {
    font-weight: 900;
}

.program-fees-panel small {
    color: var(--sh-muted);
}

.program-related-panel a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #dce5f6;
    border-radius: 6px;
    padding: .85rem;
    color: var(--sh-navy);
    text-decoration: none;
    font-weight: 800;
    margin-top: .75rem;
}

.program-related-panel a:hover {
    border-color: #b9c8ee;
    color: var(--sh-link-blue);
}

.program-related-panel small {
    color: var(--sh-muted);
    flex: 0 0 auto;
}

.campus-photo {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.page-hero {
    background: var(--sh-soft);
    padding: 5rem 0 3.5rem;
}

.map-frame {
    min-height: 360px;
    border: 0;
    width: 100%;
    border-radius: 8px;
}

.contact-hero {
    background:
        linear-gradient(90deg, rgba(0, 31, 91, .96), rgba(0, 71, 255, .68)),
        url("https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    padding: 5rem 0;
}

.contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.contact-hero .lead {
    color: #dce8ff;
    max-width: 760px;
}

.contact-kicker {
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .08em;
}

.contact-hero-card {
    background: rgba(255, 255, 255, .96);
    color: var(--sh-navy);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .18);
}

.contact-hero-card img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.contact-hero-card strong,
.contact-hero-card span {
    display: block;
}

.contact-method-card {
    border: 1px solid #dce5f6;
    border-radius: 8px;
    background: #fff;
    min-height: 170px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
    color: var(--sh-navy);
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(0, 31, 91, .07);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-method-card:hover {
    color: var(--sh-navy);
    border-color: #aebff0;
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(0, 31, 91, .12);
}

.contact-method-card small {
    color: var(--sh-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-method-card strong {
    font-size: 1.08rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--sh-soft);
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: .45rem;
}

.contact-form-panel,
.contact-info-panel,
.map-panel {
    border: 1px solid #dce5f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 31, 91, .08);
}

.contact-form-panel,
.contact-info-panel {
    padding: 2rem;
}

.contact-info-row {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid #e7eefb;
}

.contact-info-row i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--sh-soft);
    color: var(--sh-link-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.contact-info-row strong,
.contact-info-row span,
.contact-info-row a {
    display: block;
}

.contact-info-row strong {
    color: var(--sh-navy);
    margin-bottom: .15rem;
}

.office-hours {
    background: var(--sh-soft);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.25rem;
}

.office-hours strong,
.office-hours span {
    display: block;
}

.map-panel {
    overflow: hidden;
}

.map-panel .map-frame {
    display: block;
    min-height: 420px;
    border-radius: 0;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(0, 31, 91, .96), rgba(0, 71, 255, .62)),
        url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    padding: 5.5rem 0;
}

.about-hero h1 {
    font-size: clamp(2.35rem, 5.5vw, 4.55rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.about-hero .lead {
    color: #dce8ff;
    max-width: 760px;
}

.about-stat-card {
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    color: var(--sh-navy);
    padding: 2rem;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
}

.about-stat-card span {
    display: block;
    font-size: clamp(4rem, 8vw, 6.4rem);
    line-height: .9;
    font-weight: 900;
    color: var(--sh-link-blue);
}

.about-stat-card strong {
    display: block;
    font-size: 1.5rem;
    margin: .5rem 0;
}

.about-image-panel {
    min-height: 430px;
    border-radius: 8px;
    border: 1px solid #dce5f6;
    box-shadow: 0 22px 46px rgba(0, 31, 91, .09);
    overflow: hidden;
    position: relative;
    background: #fff;
}

.about-image-panel img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.about-image-caption {
    background: rgba(255, 255, 255, .94);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #dce5f6;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    box-shadow: 0 14px 30px rgba(0, 31, 91, .12);
}

.about-image-caption strong,
.about-image-caption span {
    display: block;
}

.about-image-caption span {
    color: var(--sh-muted);
}

.about-mini-card,
.mission-card,
.core-value-card {
    border: 1px solid #dce5f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 31, 91, .07);
}

.about-mini-card {
    min-height: 92px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .9rem;
}

.about-mini-card i,
.core-value-card i,
.mission-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-link-blue);
    background: var(--sh-soft);
    flex: 0 0 48px;
}

.about-mission-section {
    background: var(--sh-soft);
}

.mission-card {
    min-height: 255px;
    padding: 2rem;
}

.mission-card h3 {
    color: var(--sh-navy);
    margin-top: 1rem;
}

.mission-card p {
    font-size: 1.15rem;
    color: var(--sh-muted);
    margin-bottom: 0;
}

.core-value-card {
    min-height: 210px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    transition: transform .18s ease, box-shadow .18s ease;
}

.core-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(0, 31, 91, .12);
}

.core-value-card h4 {
    font-size: 1.1rem;
    color: var(--sh-navy);
    margin-bottom: 0;
}

.about-location-band {
    background: #fff;
    border-top: 1px solid #e4ebfb;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sh-link-blue);
    box-shadow: 0 0 0 .2rem rgba(0, 71, 255, .14);
}

.site-footer {
    background: #061f55;
    color: #dce8ff;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.table td,
.table th {
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .site-header {
        position: relative;
    }

    .top-contact-bar {
        font-size: .82rem;
        max-height: 220px;
    }

    .top-contact-row,
    .top-contact-left,
    .top-contact-right {
        justify-content: center;
        text-align: center;
    }

    .latest-news-marquee {
        align-items: flex-start;
        flex-direction: column;
        gap: .45rem;
    }

    .latest-news-content {
        animation-duration: 24s;
    }

    .college-title-band {
        padding: .8rem 0;
        max-height: 190px;
    }

    .college-title-band h1 {
        font-size: clamp(1.25rem, 5.6vw, 2rem);
    }

    .main-menu {
        padding: .65rem 0;
        border-top: 1px solid #eef1f6;
    }

    .college-logo {
        width: 50px;
        height: 50px;
    }

    .main-nav-links {
        gap: .25rem;
        padding-top: .75rem;
    }

    .main-nav-links .nav-link {
        padding: .6rem 0;
    }

    .main-menu .dropdown-menu {
        border: 0;
        box-shadow: none;
        padding-left: .5rem;
    }

    .hero .carousel-item,
    .hero-slide {
        min-height: 66vh;
    }

    .hero-slide {
        padding: 4rem 0 5rem;
    }

    .hero-control {
        display: none;
    }

    .home-portal-layout {
        padding-top: 1rem;
    }

    .home-side-panel,
    .home-news-card {
        padding: 1.25rem;
    }

    .home-main-feature {
        border: 1px solid #dce5f6;
        margin: 1rem 0;
    }

    .home-main-feature img {
        height: 240px;
    }

    .principal-message {
        flex-direction: column;
        padding: 1.35rem;
    }

    .home-welcome-title {
        align-items: flex-start;
        padding: 1rem;
    }

    .home-welcome-title span {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 1.2rem;
    }

    .program-detail-grid {
        grid-template-columns: 1fr;
    }

    .program-detail-hero {
        padding: 3.5rem 0;
    }

    #featuredCoursesCarousel {
        padding: 0 0 2.4rem;
    }

    .featured-course-control {
        display: none;
    }

    .featured-course-card {
        min-height: 0;
    }

    .featured-course-card p {
        min-height: 0;
    }

    .contact-hero {
        padding: 3.5rem 0;
    }

    .contact-form-panel,
    .contact-info-panel {
        padding: 1.35rem;
    }

    .about-hero {
        padding: 3.5rem 0;
    }

    .about-image-panel {
        min-height: 340px;
    }

    .about-image-panel img {
        height: 340px;
    }
}
