:root {
    --svv-blue: #123cda;
    --svv-navy: #071b55;
    --svv-green: #16a05d;
    --svv-gold: #f4b23f;
    --svv-ink: #101827;
    --svv-muted: #5c667a;
    --svv-line: #dfe5ef;
    --svv-soft: #f5f8fc;
    --svv-white: #ffffff;
    --svv-shadow: 0 18px 48px rgba(7, 27, 85, .12);
}

body.svv-home-page,
.svv-header,
.svv-footer,
.management-section {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: var(--svv-ink);
}

.svv-home-page {
    background: var(--svv-white);
}

.svv-home-page a,
.svv-header a,
.svv-footer a {
    text-decoration: none;
}

.svv-topbar {
    background: #e7e7e7;
    color: var(--svv-ink);
    font-size: 14px;
}

.svv-topbar .svv-topbar-row {
    justify-content: center;
    gap: 0;
}

.svv-topbar .svv-utility-list {
    justify-content: center;
}

.svv-topbar-row,
.svv-brandbar-row,
.svv-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.svv-utility-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.svv-utility-list a {
    display: block;
    padding: 10px 14px;
    color: var(--svv-ink);
    border-right: 1px solid rgba(7, 27, 85, .15);
    font-weight: 700;
}

.svv-utility-list li:first-child a {
    border-left: 1px solid rgba(7, 27, 85, .15);
}

.svv-utility-list a:hover {
    color: var(--svv-white);
    background: var(--svv-blue);
}

.svv-utility-list-right a {
    background: var(--svv-green);
    color: var(--svv-white);
    border-color: rgba(255, 255, 255, .2);
    font-weight: 700;
}

.svv-utility-list-right li + li a {
    background: var(--svv-gold);
    color: var(--svv-navy);
}

.svv-brandbar {
    background: var(--svv-white);
    border-bottom: 1px solid var(--svv-line);
}

.svv-brandbar-row {
    min-height: 116px;
    padding: 14px 0;
}

.svv-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.svv-brand img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    flex: 0 0 auto;
}

.svv-brand strong {
    display: block;
    color: var(--svv-navy);
    font-size: clamp(21px, 2.4vw, 34px);
    line-height: 1.15;
    font-weight: 800;
}

.svv-brand small {
    display: block;
    margin-top: 6px;
    color: var(--svv-muted);
    font-size: 15px;
    font-weight: 700;
}

.svv-brand-approval {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    margin-top: 7px;
    color: var(--svv-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.svv-brand-approval b {
    color: var(--svv-green);
    font-weight: 800;
}

.svv-brand-approval .svv-approval-highlight {
    display: inline-flex;
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--svv-navy);
    background: #fff176;
    font-weight: 800;
}

.svv-brand-approval b,
.svv-brand-approval span {
    display: inline-flex;
    align-items: center;
}

.svv-brand-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 0 0 auto;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.svv-brand-actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--svv-ink);
    line-height: 1.35;
    white-space: nowrap;
}

.svv-brand-actions i {
    flex: 0 0 auto;
    color: var(--svv-green);
    margin-right: 0;
}

.svv-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--svv-blue);
    box-shadow: 0 10px 28px rgba(18, 60, 218, .18);
}

.svv-nav-row {
    min-height: 56px;
    flex-wrap: nowrap;
}

.svv-nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    margin-left: auto;
}

.svv-main-menu {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.svv-main-menu > li {
    position: relative;
}

.svv-main-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 9px;
    color: var(--svv-white);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.svv-main-menu > li > a:hover,
.svv-main-menu > li:hover > a {
    background: rgba(255, 255, 255, .12);
}

.svv-dropdown > ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 230px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--svv-white);
    border: 1px solid var(--svv-line);
    box-shadow: var(--svv-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}

.svv-dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.svv-dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--svv-ink);
    font-weight: 700;
    font-size: 14px;
}

.svv-dropdown li a:hover {
    color: var(--svv-blue);
    background: var(--svv-soft);
}

.svv-nav-cta,
.svv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
    white-space: nowrap;
}

.svv-nav-cta {
    background: var(--svv-gold);
    color: var(--svv-navy);
}

.svv-nav-cta:hover {
    color: var(--svv-navy);
    transform: translateY(-1px);
}

.svv-know-more-cta {
    background: var(--svv-green);
    color: var(--svv-white);
}

.svv-know-more-cta:hover {
    background: #0f8b4d;
    color: var(--svv-white);
}

.svv-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--svv-white);
    font-weight: 800;
    min-height: 56px;
}

.svv-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    color: var(--svv-white);
    overflow: hidden;
}

.svv-hero-media {
    position: absolute;
    inset: 0;
}

.svv-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 27, 85, .90) 0%, rgba(7, 27, 85, .66) 48%, rgba(7, 27, 85, .20) 100%);
    z-index: 1;
}

.svv-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(260px, 360px);
    gap: 36px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 80px;
}

.svv-hero-content h1 {
    margin: 0;
    color: var(--svv-white);
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.05;
    font-weight: 900;
}

.svv-hero-content p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.65;
}

.svv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.svv-hero.svv-hero-slider {
    display: block;
    min-height: clamp(380px, 50vw, 640px);
    background: var(--svv-navy);
}

.svv-hero.svv-hero-slider::before {
    display: none;
}

.svv-hero-slider .carousel,
.svv-hero-slider .carousel-inner,
.svv-hero-slider .carousel-item {
    height: clamp(380px, 50vw, 640px);
}

.svv-hero-slider .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.svv-hero-slider .carousel-indicators {
    bottom: 22px;
    margin-bottom: 0;
}

.svv-hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border: 2px solid var(--svv-white);
    border-radius: 50%;
    background: transparent;
    opacity: 1;
}

.svv-hero-slider .carousel-indicators .active {
    background: var(--svv-white);
}

.svv-hero-slider .carousel-control-prev,
.svv-hero-slider .carousel-control-next {
    width: 76px;
    opacity: .92;
}

.svv-hero.svv-hero-layout {
    display: block;
    min-height: 0;
    color: var(--svv-ink);
    background: #f4f7fb;
}

.svv-hero.svv-hero-layout::before {
    display: none;
}

.svv-admission-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 54px;
    padding: 8px 36px;
    background: var(--svv-white);
    border-top: 7px solid var(--svv-blue);
    box-shadow: 0 6px 18px rgba(7, 27, 85, .08);
}

.svv-admission-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 5px;
    color: var(--svv-white);
    background: #d92f2f;
    font-weight: 900;
}

.svv-admission-badge:hover {
    color: var(--svv-white);
    background: var(--svv-blue);
}

.svv-admission-marquee {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.svv-admission-marquee span {
    display: inline-block;
    min-width: 100%;
    padding-left: 100%;
    color: #f01414;
    font-size: 16px;
    font-weight: 900;
    animation: svvAdmissionMarquee 24s linear infinite;
}

.svv-admission-marquee:hover span {
    animation-play-state: paused;
}

.svv-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: 22px;
    padding: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
}

.svv-hero-main-slider,
.svv-hero-main-slider .carousel-inner,
.svv-hero-main-slider .carousel-item,
.svv-home-events {
    height: clamp(380px, 33vw, 520px);
}

.svv-hero-main-slider {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 27, 85, .14);
    border-radius: 10px;
    background: var(--svv-navy);
    box-shadow: 0 22px 50px rgba(7, 27, 85, .20);
    isolation: isolate;
}

.svv-hero-main-slider .carousel-inner {
    position: relative;
    z-index: 1;
}

.svv-hero-main-slider .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.svv-hero-main-slider .carousel-indicators {
    z-index: 6;
    right: auto;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: auto;
    padding: 5px 8px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: rgba(7, 27, 85, .36);
}

.svv-hero-main-slider .carousel-indicators [data-bs-target] {
    width: 26px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    opacity: 1;
}

.svv-hero-main-slider .carousel-indicators .active {
    width: 40px;
    background: var(--svv-white);
}

.svv-hero-main-slider .carousel-control-prev,
.svv-hero-main-slider .carousel-control-next {
    z-index: 7;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(7, 27, 85, .42);
    opacity: 1;
    transition: .2s ease;
}

.svv-hero-main-slider .carousel-control-prev {
    left: clamp(14px, 3.4vw, 52px);
}

.svv-hero-main-slider .carousel-control-next {
    right: clamp(14px, 3.4vw, 52px);
}

.svv-hero-main-slider .carousel-control-prev:hover,
.svv-hero-main-slider .carousel-control-next:hover {
    background: var(--svv-blue);
    transform: translateY(-1px);
}

.svv-hero-main-slider .carousel-control-prev-icon,
.svv-hero-main-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.svv-home-events {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 14px 14px;
    border: 1px solid var(--svv-line);
    border-radius: 4px;
    background: var(--svv-white);
    box-shadow: 0 12px 30px rgba(7, 27, 85, .10);
}

.svv-home-events h2 {
    margin: 0 0 14px;
    color: #075fc4;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
}

.svv-home-events-window {
    flex: 1;
    overflow: hidden;
}

.svv-home-events-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: svvEventsScroll 44s linear infinite;
}

.svv-home-events-window:hover .svv-home-events-track {
    animation-play-state: paused;
}

.svv-home-event {
    padding: 13px 16px;
    border: 1px solid rgba(7, 27, 85, .08);
    border-radius: 0 0 8px 8px;
    background: var(--svv-white);
    box-shadow: 0 6px 18px rgba(7, 27, 85, .08);
}

.svv-home-event time {
    display: block;
    margin-bottom: 8px;
    color: #f01414;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
}

.svv-home-event p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.45;
}

.svv-home-event p span {
    color: #f01414;
    font-weight: 900;
}

.svv-hero-layout + .svv-quick-tabs {
    margin-top: 0;
}

@keyframes svvAdmissionMarquee {
    0% {
        transform: translateX(0);
    }

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

@keyframes svvEventsScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.svv-btn-primary {
    color: var(--svv-white);
    background: var(--svv-blue);
}

.svv-btn-primary:hover {
    color: var(--svv-white);
    background: var(--svv-green);
}

.svv-btn-light {
    color: var(--svv-navy);
    background: var(--svv-white);
}

.svv-btn-light:hover {
    color: var(--svv-white);
    background: var(--svv-green);
}

.svv-hero-card {
    background: rgba(255, 255, 255, .94);
    color: var(--svv-ink);
    border-left: 5px solid var(--svv-gold);
    padding: 26px;
    box-shadow: var(--svv-shadow);
    border-radius: 6px;
}

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

.svv-hero-card strong {
    color: var(--svv-navy);
    font-size: 21px;
    margin-bottom: 12px;
}

.svv-hero-card span {
    color: var(--svv-muted);
    line-height: 1.55;
}

.svv-hero-card span + span {
    margin-top: 10px;
}

.svv-quick-tabs {
    position: relative;
    z-index: 4;
    margin-top: -38px;
}

.svv-tabs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--svv-white);
    border-radius: 6px;
    box-shadow: var(--svv-shadow);
    overflow: hidden;
}

.svv-tabs-grid a {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--svv-navy);
    font-weight: 900;
    border-right: 1px solid var(--svv-line);
}

.svv-tabs-grid a:last-child {
    border-right: 0;
}

.svv-tabs-grid i {
    color: var(--svv-green);
    font-size: 22px;
}

.svv-tabs-grid a:hover {
    background: var(--svv-blue);
    color: var(--svv-white);
}

.svv-tabs-grid a:hover i {
    color: var(--svv-gold);
}

.svv-section {
    padding: 88px 0;
}

.svv-section-title {
    margin-bottom: 32px;
}

.svv-section-title span {
    display: block;
    color: var(--svv-green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.svv-section-title h2 {
    margin: 8px 0 0;
    color: var(--svv-navy);
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.12;
    font-weight: 900;
}

.svv-section-title p {
    max-width: 790px;
    margin: 18px 0 0;
    color: var(--svv-muted);
    line-height: 1.75;
}

.svv-center {
    text-align: center;
}

.svv-center p {
    margin-left: auto;
    margin-right: auto;
}

.svv-about p {
    color: var(--svv-muted);
    line-height: 1.75;
}

.svv-image-stack {
    position: relative;
    min-height: 460px;
}

.svv-image-stack img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--svv-shadow);
}

.svv-image-badge {
    position: absolute;
    right: 26px;
    bottom: -26px;
    width: 170px;
    background: var(--svv-green);
    color: var(--svv-white);
    padding: 22px;
    border-radius: 6px;
    box-shadow: var(--svv-shadow);
}

.svv-image-badge strong {
    display: block;
    color: var(--svv-white);
    font-size: 46px;
    line-height: 1;
}

.svv-image-badge span {
    display: block;
    margin-top: 6px;
    font-weight: 800;
}

.svv-fact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 32px;
}

.svv-fact-row div {
    background: var(--svv-soft);
    border: 1px solid var(--svv-line);
    padding: 18px;
    border-radius: 6px;
}

.svv-fact-row strong,
.svv-fact-row span {
    display: block;
}

.svv-fact-row strong {
    color: var(--svv-blue);
    font-size: 28px;
    font-weight: 900;
}

.svv-fact-row span {
    color: var(--svv-muted);
    font-size: 13px;
    font-weight: 800;
}

.svv-news,
.svv-departments,
.svv-programs,
.svv-faq {
    background: var(--svv-soft);
}

.svv-panel,
.svv-program-card,
.svv-testimonial-grid article,
.svv-accordion .accordion-item {
    background: var(--svv-white);
    border: 1px solid var(--svv-line);
    border-radius: 6px;
    box-shadow: 0 10px 34px rgba(7, 27, 85, .07);
}

.svv-panel {
    padding: 28px;
    height: 100%;
}

.svv-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--svv-line);
    padding-bottom: 16px;
}

.svv-panel-head h3 {
    margin: 0;
    color: var(--svv-navy);
    font-size: 26px;
    font-weight: 900;
}

.svv-panel-head a,
.svv-news-list article a,
.svv-program-card a {
    color: var(--svv-blue);
    font-weight: 900;
}

.svv-news-list {
    display: grid;
    gap: 18px;
}

.svv-news-list article {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.svv-news-list img {
    width: 148px;
    height: 104px;
    object-fit: cover;
    border-radius: 5px;
}

.svv-news-list span,
.svv-event-card span,
.svv-program-card span {
    display: block;
    color: var(--svv-green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.svv-news-list h4,
.svv-event-card h4 {
    margin: 7px 0 8px;
    color: var(--svv-ink);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 850;
}

.svv-event-card {
    padding: 22px;
    background: var(--svv-soft);
    border-left: 4px solid var(--svv-green);
    border-radius: 5px;
}

.svv-event-card + .svv-event-card {
    margin-top: 16px;
}

.svv-event-card p {
    margin: 0;
    color: var(--svv-muted);
    line-height: 1.65;
}

.svv-department-grid,
.svv-program-grid,
.svv-link-grid,
.svv-testimonial-grid,
.svv-footer-grid {
    display: grid;
    gap: 22px;
}

.svv-department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svv-department-grid a {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 22px 24px;
    background: var(--svv-white);
    border: 1px solid var(--svv-line);
    border-left: 5px solid var(--svv-blue);
    border-radius: 6px;
    color: var(--svv-navy);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(7, 27, 85, .06);
}

.svv-department-grid a:hover {
    border-left-color: var(--svv-green);
    color: var(--svv-blue);
    transform: translateY(-2px);
}

.svv-program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svv-program-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svv-program-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.svv-program-card div {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svv-program-card h3 {
    margin: 8px 0 14px;
    color: var(--svv-navy);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 900;
}

.svv-program-card ul {
    margin: 0 0 20px 18px;
    padding: 0;
    color: var(--svv-muted);
    line-height: 1.7;
}

.svv-program-card a {
    margin-top: auto;
}

.svv-link-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.svv-link-grid a {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    text-align: center;
    color: var(--svv-navy);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--svv-line);
    border-radius: 6px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(7, 27, 85, .06);
}

.svv-link-grid i {
    color: var(--svv-green);
    font-size: 30px;
}

.svv-link-grid a:hover {
    background: var(--svv-blue);
    color: var(--svv-white);
    transform: translateY(-2px);
}

.svv-link-grid a:hover i {
    color: var(--svv-gold);
}

.svv-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svv-testimonial-grid article {
    padding: 28px;
}

.svv-testimonial-grid p {
    color: var(--svv-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.svv-testimonial-grid strong {
    color: var(--svv-navy);
    font-weight: 900;
}

.svv-faq img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--svv-shadow);
}

.svv-accordion {
    display: grid;
    gap: 12px;
}

.svv-accordion .accordion-item {
    overflow: hidden;
}

.svv-accordion .accordion-button {
    padding: 20px 22px;
    color: var(--svv-navy);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
    text-align: left;
    background: var(--svv-white);
    box-shadow: none;
}

.svv-accordion .accordion-button:not(.collapsed) {
    color: var(--svv-white);
    background: var(--svv-blue);
}

.svv-accordion .accordion-body {
    color: var(--svv-muted);
    line-height: 1.7;
    padding: 20px 22px;
}

.management-section {
    padding: 44px 0;
    background: var(--svv-white);
}

.management-section + .management-section {
    border-top: 1px solid #edf1f7;
}

.management-section .th-container4 {
    max-width: 1220px;
}

.management-row {
    align-items: center;
    --bs-gutter-x: 34px;
    --bs-gutter-y: 24px;
}

.management-content {
    max-width: 610px;
}

.management-row > .col-xl-6:first-child .management-content {
    margin-left: auto;
}

.management-content .title-area {
    margin-bottom: 14px;
}

.management-content .sec-title {
    margin-bottom: 0;
    color: var(--svv-blue);
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.22;
    letter-spacing: 0;
}

.management-content .box-title {
    margin-top: 13px;
    margin-bottom: 0;
    color: var(--svv-green);
    font-size: 17px;
    line-height: 1.45;
}

.management-content p {
    margin: 0;
    color: var(--svv-navy);
    font-size: 15.5px;
    line-height: 1.62;
    text-align: justify;
}

.management-content p + p {
    margin-top: 10px;
}

.management-photo {
    width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(7, 27, 85, .18);
    border-radius: 12px;
    background: var(--svv-white);
    box-shadow: 0 12px 28px rgba(7, 27, 85, .12);
}

.management-photo img {
    display: block;
    width: 100%;
    height: clamp(310px, 29vw, 430px);
    object-fit: cover;
    object-position: center top;
    border-radius: 11px;
}

.svv-footer {
    background: var(--svv-navy);
    color: rgba(255, 255, 255, .78);
    padding-top: 70px;
}

.svv-footer-grid {
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    align-items: start;
}

.svv-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--svv-white);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.svv-footer-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    background: var(--svv-white);
    border-radius: 4px;
}

.svv-footer p {
    color: rgba(255, 255, 255, .78);
    margin: 22px 0;
    line-height: 1.7;
}

.svv-footer h3 {
    color: var(--svv-white);
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 900;
}

.svv-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.svv-footer li + li {
    margin-top: 10px;
}

.svv-footer a {
    color: rgba(255, 255, 255, .78);
}

.svv-footer a:hover {
    color: var(--svv-gold);
}

.svv-footer-contact {
    display: grid;
    gap: 8px;
}

.svv-footer-contact i {
    color: var(--svv-gold);
    margin-right: 8px;
}

.svv-footer-corner-logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.svv-footer-corner-logo img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(255, 255, 255, .85);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
}

.svv-copyright {
    margin-top: 54px;
    background: rgba(0, 0, 0, .18);
    padding: 18px 0;
}

.svv-copyright p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, .78);
}

@media (min-width: 992px) {
    .svv-nav-collapse {
        display: block !important;
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (min-width: 1200px) {
    .svv-navbar .container {
        max-width: 1380px;
    }
}

@media (max-width: 1199px) {
    .svv-main-menu > li > a {
        padding: 0 6px;
        font-size: 13px;
    }

    .svv-nav-cta {
        min-height: 40px;
        padding: 0 11px;
        font-size: 12px;
    }

    .svv-link-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .management-section {
        padding: 38px 0;
    }

    .management-row > .col-xl-6:first-child .management-content {
        margin-left: 0;
    }

    .management-content,
    .management-photo {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .svv-topbar-row,
    .svv-brandbar-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .svv-brandbar-row {
        min-height: 0;
        gap: 14px;
        padding: 12px 0;
    }

    .svv-brand-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px 18px;
    }

    .svv-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 9px;
    }

    .svv-nav-row {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .svv-nav-collapse {
        width: 100%;
    }

    .svv-main-menu {
        display: block;
        padding: 8px 0 16px;
    }

    .svv-main-menu > li > a {
        min-height: 44px;
        padding: 0 8px;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .svv-dropdown > ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        padding: 0 0 8px 18px;
        background: rgba(255, 255, 255, .08);
        border: 0;
        box-shadow: none;
    }

    .svv-dropdown li a {
        color: rgba(255, 255, 255, .88);
    }

    .svv-dropdown li a:hover {
        background: transparent;
        color: var(--svv-gold);
    }

    .svv-nav-actions {
        margin-left: auto;
        align-self: center;
    }

    .svv-admission-strip {
        padding: 8px 18px;
    }

    .svv-hero-grid {
        grid-template-columns: 1fr;
        padding: 16px 14px;
    }

    .svv-hero-main-slider,
    .svv-hero-main-slider .carousel-inner,
    .svv-hero-main-slider .carousel-item {
        height: 420px;
    }

    .svv-home-events {
        height: 360px;
    }

    .svv-hero .container {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .svv-tabs-grid,
    .svv-department-grid,
    .svv-program-grid,
    .svv-testimonial-grid,
    .svv-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .svv-footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .svv-utility-list-right {
        width: 100%;
    }

    .svv-utility-list a {
        padding: 9px 10px;
        font-size: 13px;
    }

    .svv-brand {
        align-items: flex-start;
        width: 100%;
        gap: 12px;
    }

    .svv-brand img {
        width: 68px;
        height: 68px;
    }

    .svv-brand strong {
        font-size: 21px;
    }

    .svv-brand small,
    .svv-brand-approval,
    .svv-brand-actions {
        font-size: 13px;
    }

    .svv-brand-actions {
        gap: 7px 14px;
    }

    .svv-hero {
        min-height: 620px;
    }

    .svv-admission-strip {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 10px 14px;
    }

    .svv-admission-badge {
        width: max-content;
        max-width: 100%;
        min-height: 36px;
        padding: 0 12px;
        font-size: 14px;
    }

    .svv-admission-marquee span {
        font-size: 14px;
        animation-duration: 18s;
    }

    .svv-hero-grid {
        gap: 12px;
        padding: 12px 0;
    }

    .svv-hero-main-slider,
    .svv-hero-main-slider .carousel-inner,
    .svv-hero-main-slider .carousel-item {
        height: 300px;
    }

    .svv-hero-main-slider {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .svv-hero-main-slider .carousel-control-prev,
    .svv-hero-main-slider .carousel-control-next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .svv-hero-main-slider .carousel-control-prev {
        left: 12px;
    }

    .svv-hero-main-slider .carousel-control-next {
        right: 12px;
    }

    .svv-hero-main-slider .carousel-indicators {
        bottom: 12px;
        padding: 4px 7px;
    }

    .svv-hero-main-slider .carousel-indicators [data-bs-target] {
        width: 18px;
    }

    .svv-hero-main-slider .carousel-indicators .active {
        width: 30px;
    }

    .svv-home-events {
        height: 340px;
        margin: 0 10px;
        padding: 18px 12px 12px;
    }

    .svv-home-event {
        padding: 12px 13px;
    }

    .svv-home-event time {
        font-size: 19px;
    }

    .svv-home-event p {
        font-size: 14px;
    }

    .svv-hero.svv-hero-slider {
        min-height: 360px;
    }

    .svv-hero-slider .carousel,
    .svv-hero-slider .carousel-inner,
    .svv-hero-slider .carousel-item {
        height: 360px;
    }

    .svv-hero::before {
        background: rgba(7, 27, 85, .82);
    }

    .svv-hero .container {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .svv-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .svv-hero-card {
        padding: 20px;
    }

    .svv-quick-tabs {
        margin-top: 0;
    }

    .svv-tabs-grid,
    .svv-department-grid,
    .svv-program-grid,
    .svv-link-grid,
    .svv-testimonial-grid,
    .svv-footer-grid,
    .svv-fact-row {
        grid-template-columns: 1fr;
    }

    .svv-tabs-grid {
        border-radius: 0;
    }

    .svv-tabs-grid a {
        justify-content: flex-start;
        min-height: 64px;
        padding: 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--svv-line);
    }

    .svv-section {
        padding: 64px 0;
    }

    .svv-image-stack,
    .svv-image-stack img {
        min-height: 0;
        height: 330px;
    }

    .svv-image-badge {
        right: 16px;
        bottom: 16px;
    }

    .svv-panel {
        padding: 22px;
    }

    .svv-news-list article {
        grid-template-columns: 1fr;
    }

    .svv-news-list img {
        width: 100%;
        height: 190px;
    }

    .svv-footer {
        padding-top: 54px;
    }

    .svv-footer-corner-logo {
        justify-content: flex-start;
    }

    .management-section {
        padding: 34px 0;
    }

    .management-content .sec-title {
        font-size: 24px;
    }

    .management-content p {
        font-size: 14.5px;
        text-align: left;
    }

    .management-photo img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .svv-topbar-row {
        gap: 4px;
    }

    .svv-utility-list {
        width: 100%;
    }

    .svv-utility-list li {
        flex: 1 1 auto;
    }

    .svv-utility-list a {
        text-align: center;
        border-left: 0;
    }

    .svv-nav-cta {
        display: none;
    }

    .svv-hero-content h1 {
        font-size: 36px;
    }
}
