/* Home page refresh
   Keeps the existing Bootstrap/PHP structure while giving the public landing
   page a clearer, more contemporary institutional identity. */

.home-page {
    --navy: #0b2b4b;
    --navy-deep: #061d33;
    --blue: #0d5e8f;
    --sky: #20b9df;
    --gold: #f4b844;
    --ink: #10263b;
    --muted: #627386;
    --line: #dde6ed;
    --paper: #f4f8fb;
    color: var(--muted);
    background: #ffffff;
}

.home-page .container {
    padding-left: 15px;
    padding-right: 15px;
}

.home-page a,
.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible,
.home-page textarea:focus-visible {
    outline: 3px solid rgba(32, 185, 223, .4);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 10000;
    padding: 10px 18px;
    color: var(--navy);
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.skip-link:focus {
    top: 0;
    color: var(--navy);
}

/* Header */
.home-page .main-header {
    background: linear-gradient(115deg, #0b3558, #0a6a98);
    background-image: linear-gradient(115deg, rgba(6, 29, 51, .94), rgba(7, 91, 133, .92)), url(../images/mob_header_bg24.jpg);
    background-size: cover;
    background-position: center;
}

.utility-bar {
    color: rgba(255,255,255,.78);
    background: rgba(4, 24, 42, .72);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.utility-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 12px;
    letter-spacing: .02em;
}

.utility-bar p {
    margin: 0;
}

.utility-bar i {
    width: auto !important;
    height: auto !important;
    margin-right: 7px;
    color: var(--gold) !important;
    line-height: inherit !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.utility-bar__links {
    display: flex;
    gap: 24px;
}

.utility-bar__links a {
    color: rgba(255,255,255,.82);
}

.utility-bar__links a:hover {
    color: #ffffff;
}

.home-page .main-header .header-top .main-logo {
    margin: 0;
}

.college-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.college-brand:hover,
.college-brand:focus,
.college-brand:visited {
    color: #ffffff;
}

.college-brand--main {
    padding: 16px 0 41px;
}

.college-brand__mark {
    display: inline-flex;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 23px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(3, 21, 36, .2);
}

.home-page .main-header .college-brand__mark i {
    width: auto;
    height: auto;
    color: inherit;
    line-height: 1;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.college-brand .college-brand__mark--logo {
    flex: 0 0 125px;
    width: 125px;
    height: 96px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.college-brand__mark--logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 11px rgba(2,18,30,.25));
}

.college-brand__copy,
.college-brand__name,
.college-brand__affiliation {
    display: block;
}

.college-brand__name {
    color: #ffffff;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.025em;
    text-shadow: 0 2px 8px rgba(2, 18, 30, .24);
}

.college-brand__affiliation {
    margin-top: 5px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .02em;
}

.home-page .main-header .header-lower {
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    background: transparent;
}

.home-page .header-lower .header-area {
    min-height: 60px;
    margin: 0;
    padding: 0 32px;
    background: #ffffff;
    border: 1px solid rgba(12, 58, 89, .08);
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(5, 38, 61, .18);
}

.home-page .main-menu .navigation > li > a {
    margin-right: 35px;
    padding: 15px 0;
    color: var(--ink);
    font-size: 13px;
    line-height: 30px;
    letter-spacing: .015em;
}

.home-page .main-menu .navigation > li:hover > a,
.home-page .main-menu .navigation > li.current > a,
.home-page .main-menu .navigation > li.current-menu-item > a {
    color: var(--blue);
}

.home-page .main-menu .navigation > li:before {
    bottom: 12px;
    width: 24px;
    height: 3px;
    background: var(--sky);
    border-radius: 3px;
}

.home-page .main-menu .navigation > li > ul {
    overflow: hidden;
    top: calc(100% + 1px);
    width: 235px;
    background: #ffffff;
    border: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 14px 32px rgba(6, 29, 51, .2);
}

.home-page .main-menu .navigation > li > ul > li {
    border-bottom: 1px solid #edf2f5;
}

.home-page .main-menu .navigation > li > ul > li > a {
    padding: 11px 16px;
    color: var(--ink);
    background: #ffffff;
}

.home-page .main-menu .navigation > li > ul > li:hover > a {
    color: var(--blue);
    background: #eef8fc;
}

.home-page .header-lower .header-area .link-btn {
    top: 7px;
    right: 8px;
    overflow: hidden;
    background: var(--gold);
    border-radius: 7px;
}

.home-page .header-lower .header-area .link-btn:before,
.home-page .header-lower .header-area .link-btn:after {
    display: none;
}

.home-page .btn-style-one {
    padding: 12px 23px;
    color: var(--navy-deep);
    border-radius: 7px;
}

.home-page .header-lower .header-area .link-btn:hover {
    background: #ffc95d;
    transform: translateY(-1px);
}

/* Sticky header */
.home-page .fixed-header .sticky-header {
    background: #20b9df;
    border-bottom: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.home-page .sticky-header .logo {
    width: 330px;
    padding: 9px 0 7px;
}

.college-brand--sticky {
    gap: 10px;
}

.college-brand--sticky .college-brand__mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.college-brand--sticky .college-brand__mark--logo {
    flex-basis: 53px;
    width: 53px;
    height: 41px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.college-brand--sticky .college-brand__name {
    max-width: 275px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.college-brand--sticky .college-brand__affiliation {
    margin-top: 2px;
    font-size: 9px;
}

.home-page .sticky-header .main-menu .navigation > li > a {
    margin-right: 26px;
    padding: 18px 0;
    font-size: 12px;
}

.home-page .sticky-header .main-menu .navigation > li:hover > a,
.home-page .sticky-header .main-menu .navigation > li.current > a {
    color: #061d33;
}

/* Hero */
.home-page .main-slider {
    min-height: 410px;
    overflow: hidden;
    isolation: isolate;
    background: #061d33;
}

.modern-slider {
    position: relative;
    height: clamp(410px, 42.85vw, 560px);
    overflow: hidden;
    background: #061d33;
}

.modern-slider__slides,
.modern-slide,
.modern-slide picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.modern-slide {
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity .8s ease, transform 1.2s ease, visibility .8s ease;
}

.modern-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.modern-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modern-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    padding: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 46px;
    text-align: center;
    background: rgba(6,29,51,.78);
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(4,24,42,.2);
    transition: background .25s ease, transform .25s ease;
}

.modern-slider__arrow:hover,
.modern-slider__arrow:focus {
    color: #ffffff;
    background: #0d5e8f;
    transform: scale(1.06);
}

.modern-slider__arrow--prev {
    left: max(20px, calc((100% - 1260px) / 2));
}

.modern-slider__arrow--next {
    right: max(20px, calc((100% - 1260px) / 2));
}

.modern-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    display: flex;
    padding: 6px 9px;
    gap: 7px;
    background: rgba(6,29,51,.58);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 20px;
    transform: translateX(-50%);
    backdrop-filter: blur(6px);
}

.modern-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(255,255,255,.68);
    border: 0;
    border-radius: 8px;
    transition: width .25s ease, background .25s ease;
}

.modern-slider__dot:hover,
.modern-slider__dot:focus,
.modern-slider__dot.is-active {
    width: 22px;
    background: #f4b844;
}

.modern-slider__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    height: 3px;
    overflow: hidden;
    background: rgba(255,255,255,.2);
}

.modern-slider__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: #f4b844;
    transform: scaleX(0);
    transform-origin: left center;
}

.modern-slider__progress.is-running span {
    animation: slider-progress 7s linear forwards;
}

@keyframes slider-progress {
    to { transform: scaleX(1); }
}

.home-page .main-slider .tp-banner-container {
    position: relative;
    z-index: 1 !important;
}

.home-page .main-slider:after {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(4, 23, 40, .89) 0%, rgba(5, 31, 53, .7) 37%, rgba(5, 31, 53, .08) 70%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-top: 25px;
    pointer-events: none;
}

.hero-content__inner {
    max-width: 620px;
    color: #ffffff;
    pointer-events: auto;
}

.hero-eyebrow,
.section-kicker,
.form-kicker {
    display: inline-block;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-eyebrow {
    margin-bottom: 18px;
    padding: 8px 13px;
    color: #ffffff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.hero-eyebrow i {
    margin-right: 7px;
    color: var(--gold);
}

.home-page .hero-content h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
    text-transform: none;
    text-shadow: 0 3px 18px rgba(0,0,0,.2);
}

.home-page .hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    max-width: 560px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.88);
    font-size: 17px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 6px;
}

.hero-button:hover,
.hero-button:focus,
.hero-button:visited {
    color: #ffffff;
}

.hero-button--primary {
    color: var(--navy-deep) !important;
    background: var(--gold);
    border-color: var(--gold);
}

.hero-button--primary:hover {
    background: #ffc95d;
    border-color: #ffc95d;
    transform: translateY(-2px);
}

.hero-button--secondary {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.hero-button--secondary:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

.home-page .main-slider .tp-caption {
    display: none !important;
}

.home-page .main-slider .tp-bullets {
    z-index: 4;
}

.home-page .main-slider .tparrows.preview3 {
    display: block !important;
    width: 46px !important;
    height: 46px !important;
    overflow: hidden;
    background: rgba(6,29,51,.82) !important;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(4,24,42,.2);
    backdrop-filter: blur(8px);
}

.home-page .main-slider .tparrows.preview3:after {
    width: 46px !important;
    height: 46px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 46px !important;
    background: transparent !important;
}

.home-page .main-slider .tparrows.preview3:hover {
    background: #0d5e8f !important;
    border-color: #ffffff;
}

.home-page .main-slider .tparrows.preview3 .tp-arr-iwrapper {
    display: none !important;
}

.home-page .main-slider .tp-bullets.preview3 {
    height: 12px;
    padding: 3px 7px;
    background: rgba(6,29,51,.48);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.home-page .main-slider .tp-bullets.preview3 .bullet {
    display: inline-block !important;
    width: 7px !important;
    height: 7px !important;
    margin: 0 3px !important;
    background: rgba(255,255,255,.58) !important;
    border: 0 !important;
    border-radius: 50%;
    box-sizing: border-box;
}

.home-page .main-slider .tp-bullets.preview3 .bullet:hover,
.home-page .main-slider .tp-bullets.preview3 .bullet.selected {
    width: 19px !important;
    height: 7px !important;
    background: #f4b844 !important;
    border: 0 !important;
    border-radius: 8px;
}

.slider-gallery-link {
    position: absolute;
    top: 28px;
    right: max(24px, calc((100% - 1170px) / 2));
    z-index: 3;
    display: inline-flex;
    min-height: 40px;
    padding: 0 15px;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    background: rgba(6,29,51,.72);
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(4,24,42,.16);
    backdrop-filter: blur(8px);
}

.slider-gallery-link:hover,
.slider-gallery-link:focus,
.slider-gallery-link:visited {
    color: #ffffff;
}

.slider-gallery-link:hover {
    background: #0d5e8f;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.slider-gallery-link i {
    color: #f4b844;
}

/* Quick actions */
.home-actions {
    position: relative;
    z-index: 8;
    margin-top: -38px;
}

.home-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(10, 45, 70, .15);
}

.home-action {
    position: relative;
    display: flex;
    min-height: 102px;
    padding: 22px 20px;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    border-right: 1px solid var(--line);
}

.home-action:first-child {
    border-radius: 10px 0 0 10px;
}

.home-action:last-child {
    border-right: 0;
    border-radius: 0 10px 10px 0;
}

.home-action:hover,
.home-action:focus {
    color: var(--blue);
    background: #f3fbfe;
}

.home-action__icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: var(--blue);
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    background: #e8f6fb;
    border-radius: 50%;
}

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

.home-action small {
    margin-bottom: 3px;
    color: #8a98a6;
    font-size: 11px;
    line-height: 1.4;
}

.home-action strong {
    color: inherit;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.home-action__arrow {
    margin-left: auto;
    color: #a6b2bc;
    font-size: 11px;
}

/* Shared section elements */
.home-page .section-heading h2,
.home-page .about-section h2 {
    margin: 9px 0 0;
    color: var(--ink);
    font-size: 37px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.section-heading--center {
    max-width: 690px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading--center p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.section-heading--split {
    display: flex;
    margin-bottom: 42px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.text-link,
.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.text-link:hover,
.notice-link:hover {
    color: var(--sky);
}

.text-link i,
.notice-link i {
    font-size: 10px;
}

/* About */
.home-page .about-section {
    padding: 110px 0 100px;
}

.home-page .about-section .colmun-text {
    max-width: 560px;
    padding: 35px 25px 0 0;
}

.about-copy {
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.home-page .about-section .colmun-text .about-copy p {
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 25px;
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.about-points i {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    color: var(--blue);
    line-height: 24px;
    text-align: center;
    background: #e8f6fb;
    border-radius: 50%;
}

.home-page .about-section .link-btn {
    margin-top: 30px;
}

.home-page .btn-style-three {
    padding: 13px 20px;
    color: #ffffff;
    line-height: 22px;
    text-transform: none;
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 6px;
}

.home-page .btn-style-three i {
    margin-left: 10px;
    font-size: 10px;
}

.home-page .btn-style-three:hover {
    color: #ffffff;
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.about-image {
    position: relative;
    min-height: 465px;
    margin-left: 35px;
}

.home-page .about-section .about-image figure {
    height: 440px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 22px 55px rgba(10, 45, 70, .18);
}

.home-page .about-section .about-image img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}

.about-image:before {
    position: absolute;
    content: '';
    top: -18px;
    right: -18px;
    z-index: -1;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(13, 94, 143, .16);
    border-radius: 12px;
}

.about-image__badge {
    position: absolute;
    left: -32px;
    bottom: 0;
    display: flex;
    width: 280px;
    min-height: 100px;
    padding: 20px 22px;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.55;
    background: var(--navy);
    border-left: 5px solid var(--gold);
    border-radius: 7px;
    box-shadow: 0 18px 40px rgba(5, 31, 53, .24);
}

.about-image__number {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 600;
}

/* Values */
.college-values {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
    background: var(--paper);
}

.college-values:before {
    position: absolute;
    content: '';
    top: -160px;
    right: -120px;
    width: 400px;
    height: 400px;
    border: 70px solid rgba(32, 185, 223, .045);
    border-radius: 50%;
}

.value-row {
    display: flex;
    flex-wrap: wrap;
}

.value-row > div {
    display: flex;
}

.value-card {
    position: relative;
    width: 100%;
    min-height: 250px;
    padding: 35px 32px;
    background: #ffffff;
    border: 1px solid #e4ebf0;
    border-radius: 9px;
    box-shadow: 0 12px 35px rgba(10, 45, 70, .06);
}

.value-card:hover {
    border-color: rgba(32, 185, 223, .45);
    box-shadow: 0 18px 42px rgba(10, 45, 70, .11);
    transform: translateY(-5px);
}

.value-card--accent {
    color: rgba(255,255,255,.72);
    background: linear-gradient(145deg, var(--navy), #0d5079);
    border-color: transparent;
}

.value-card__icon {
    display: block;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 21px;
    line-height: 54px;
    text-align: center;
    background: #e9f7fb;
    border-radius: 8px;
}

.value-card--accent .value-card__icon {
    color: var(--gold);
    background: rgba(255,255,255,.1);
}

.home-page .value-card h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.home-page .value-card--accent h3 {
    color: #ffffff;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.value-card--accent p {
    color: rgba(255,255,255,.72);
}

/* News + enquiry */
.home-page .events-section {
    padding: 100px 0 110px;
}

.home-page .events-section h3 {
    padding: 0;
    margin: 0;
    color: var(--ink);
    background: none;
    font-size: 20px;
    line-height: 1.4;
    text-transform: none;
}

.home-page .events-section .bx-wrapper {
    margin: 0;
    padding: 0;
}

.home-page .events-section .slide-item,
.events-static {
    min-height: 195px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 9px;
}

.home-page .events-section .slide-item {
    margin-bottom: 15px;
}

.home-page .events-section .left-side {
    left: 26px;
    top: 26px;
    width: 145px;
    height: 145px;
}

.home-page .events-section .slide-item img {
    width: 145px;
    height: 145px;
    object-fit: cover;
    border-radius: 7px;
}

.home-page .events-section .right-side {
    margin: 0 0 0 172px;
}

.home-page .events-section .right-side h4 {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.45;
    text-transform: none;
}

.notice-meta {
    margin-top: 8px !important;
}

.home-page .events-section .right-side li {
    color: #82909d;
    font-size: 12px;
}

.home-page .events-section .right-side li i {
    margin-right: 6px;
    color: var(--sky);
}

.home-page .events-section .right-side p {
    max-height: 52px;
    overflow: hidden;
    margin: 9px 0 10px;
    color: var(--muted);
    line-height: 1.7;
}

.notice-empty {
    display: flex;
    min-height: 280px;
    padding: 44px;
    align-items: center;
    gap: 28px;
    background: linear-gradient(145deg, #ffffff, #f5fafc);
    border: 1px solid var(--line);
    border-radius: 9px;
}

.notice-empty__icon {
    flex: 0 0 82px;
    width: 82px;
    height: 82px;
    color: var(--blue);
    font-size: 30px;
    line-height: 82px;
    text-align: center;
    background: #e7f6fb;
    border-radius: 50%;
}

.home-page .events-section .notice-empty h3 {
    margin-bottom: 9px;
    font-size: 23px;
}

.notice-empty p {
    margin: 0 0 16px;
    color: var(--muted);
}

.home-page .events-section .slider-pager {
    top: auto;
    right: 15px;
    bottom: -52px;
}

.home-page .events-section .slider-pager .nav-link li {
    color: var(--blue);
    border-color: var(--line);
    border-radius: 6px;
}

.home-page .events-section .slider-pager .nav-link li:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.home-page .comment-box {
    margin-left: 28px;
    overflow: hidden;
    color: var(--muted);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(10, 45, 70, .12);
}

.home-page .comment-box:before {
    display: block;
    content: '';
    height: 5px;
    background: linear-gradient(90deg, var(--sky), var(--gold));
}

.home-page .comment-box .default-form-area {
    padding: 34px 36px 30px;
}

.form-kicker {
    margin-bottom: 5px;
}

.home-page .comment-box h3 {
    margin-bottom: 9px;
    font-size: 27px;
}

.home-page .comment-box p {
    margin-bottom: 23px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0;
}

.home-page .comment-box .form-group {
    margin-bottom: 15px;
}

.home-page .comment-box label {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.home-page .comment-box label span {
    color: #91a0ad;
    font-weight: 400;
}

.home-page .comment-box .form-control {
    width: 100%;
    height: 43px;
    padding: 9px 12px;
    color: var(--ink);
    background: #f8fafb;
    border: 1px solid #dce5eb;
    border-radius: 5px;
    box-shadow: none;
    font-size: 13px;
}

.home-page .comment-box textarea.form-control {
    height: auto;
    min-height: 74px;
    resize: vertical;
}

.home-page .comment-box .form-control:focus {
    background: #ffffff;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(32, 185, 223, .1);
}

.home-page .comment-box .btn-style-two {
    width: 100%;
    margin-top: 5px;
    padding: 12px 20px;
    color: #ffffff;
    line-height: 22px;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 5px;
}

.home-page .comment-box .btn-style-two i {
    margin-left: 9px;
    font-size: 10px;
}

.home-page .comment-box .btn-style-two:hover {
    color: #ffffff;
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* Footer refresh */
.home-page .sponsors-subscribe {
    padding: 34px 0 28px;
    background: linear-gradient(110deg, #0b517d, #0a75a3);
}

.home-page .sponsors-subscribe .section-text h5 {
    font-size: 19px;
    letter-spacing: .02em;
    text-transform: none;
}

.home-page .sponsors-subscribe .icon-links i {
    width: 42px;
    height: 42px;
    margin-right: 7px;
    padding: 8px 0;
    line-height: 24px;
}

.home-page .sponsors-subscribe .icon-links:after {
    opacity: .35;
}

.home-page .sponsors-subscribe input[type="email"] {
    width: 100%;
    height: 50px;
    padding-right: 190px;
    background: rgba(255,255,255,.07);
}

.home-page .main-footer {
    padding-top: 55px;
    background: var(--navy-deep);
}

.home-page .main-footer .widgets-section {
    padding-bottom: 35px;
    background: transparent;
}

.home-page .main-footer .footer-logo img {
    max-width: 240px;
}

.home-page .main-footer h4 {
    margin: 0 0 20px;
    padding: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
    text-transform: none;
}

.home-page .main-footer .widgets-section .links-widget,
.home-page .main-footer .widgets-section .contact-links {
    margin: 0;
}

.home-page .main-footer .widgets-section .links-list li {
    margin-bottom: 8px;
}

.home-page .main-footer .widgets-section .links-list li a,
.home-page .main-footer .widgets-section .footer-info h6,
.home-page .main-footer .widgets-section p {
    color: rgba(255,255,255,.62);
}

.home-page .main-footer .widgets-section .links-list li a:hover,
.home-page .main-footer .widgets-section .link-btn a {
    color: var(--sky);
}

.home-page .main-footer .gallery-widget img {
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
}

.home-page .footer-bottom {
    background: #041523;
    border-top: 1px solid rgba(255,255,255,.06);
}

.home-page .footer-bottom .copyright-text {
    color: rgba(255,255,255,.52);
    font-size: 12px;
}

.home-page .footer-bottom .copyright-text a {
    color: rgba(255,255,255,.68) !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .home-page .header-lower .header-area {
        padding-left: 24px;
    }

    .home-page .main-menu .navigation > li > a {
        margin-right: 23px;
        font-size: 12px;
    }

    .college-brand__name {
        font-size: 26px;
    }

    .home-action {
        padding: 20px 15px;
    }

    .home-action__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .home-action__arrow {
        display: none;
    }
}

@media (max-width: 991px) {
    .utility-bar__inner {
        justify-content: center;
    }

    .utility-bar p {
        display: none;
    }

    .home-page .main-header .header-top .main-logo {
        text-align: left;
    }

    .college-brand--main {
        padding-bottom: 42px;
    }

    .home-page .main-menu .navigation > li > a {
        margin-right: 17px;
        font-size: 11px;
    }

    .home-page .header-lower .header-area .link-btn {
        display: none;
    }

    .home-page .hero-content h1 {
        font-size: 50px;
    }

    .home-actions__grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-action:nth-child(2) {
        border-right: 0;
    }

    .home-action:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .home-page .about-section .colmun-text {
        max-width: none;
        padding: 0 0 50px;
    }

    .about-image {
        margin-left: 32px;
    }

    .value-row > div {
        margin-bottom: 30px;
    }

    .value-row > div:last-child {
        margin-bottom: 0;
    }

    .home-page .comment-box {
        margin: 80px 0 0;
    }
}

@media (max-width: 767px) {
    .utility-bar {
        display: none;
    }

    .college-brand--main {
        display: flex;
        padding: 13px 0 15px;
        gap: 11px;
    }

    .college-brand--main .college-brand__mark {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .college-brand--main .college-brand__mark--logo {
        flex-basis: 82px;
        width: 82px;
        height: 63px;
        background: transparent;
        border-radius: 0;
    }

    .college-brand--main .college-brand__copy {
        min-width: 0;
    }

    .college-brand--main .college-brand__name {
        font-size: 18px;
        line-height: 1.25;
    }

    .college-brand--main .college-brand__affiliation {
        margin-top: 3px;
        font-size: 9px;
    }

    .home-page .main-header .header-lower {
        position: relative;
        bottom: auto;
    }

    .home-page .header-lower .header-area {
        min-height: 56px;
        margin: 0 0 -1px;
        padding: 0 15px;
        background: var(--navy-deep);
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .home-page .main-header .main-menu {
        right: 0;
    }

    .home-page .main-menu .navbar-header {
        padding: 9px 0;
    }

    .home-page .main-menu .navbar-header .navbar-toggle {
        padding: 9px 10px;
        background: var(--blue);
        border: 0;
        border-radius: 5px;
    }

    .home-page .main-menu .navbar-collapse > .navigation {
        background: var(--navy-deep);
        border: 0;
    }

    .home-page .main-menu .navbar-collapse > .navigation > li > a {
        color: #ffffff;
    }

    .home-page .main-menu .navigation > li > ul > li > a {
        color: #ffffff;
        background: #0c3c60;
    }

    .home-page .sticky-header {
        display: none;
    }

    .home-page .main-slider {
        min-height: 0;
    }

    .modern-slider {
        height: auto;
        min-height: 0;
        aspect-ratio: 1916 / 821;
    }

    .modern-slider__arrow {
        display: none;
    }

    .modern-slider__dots {
        bottom: 10px;
        padding: 5px 8px;
    }

    .home-page .main-slider .tp-banner-container,
    .home-page .main-slider .tp-banner,
    .home-page .main-slider .tp-revslider-mainul,
    .home-page .main-slider .tp-revslider-mainul > li {
        min-height: 215px !important;
    }

    .home-page .main-slider .tp-bullets.preview3 {
        bottom: 13px !important;
    }

    .slider-gallery-link {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(4, 23, 40, .9), rgba(5, 31, 53, .5));
    }

    .hero-content {
        padding: 10px 20px 0;
    }

    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .home-page .hero-content h1 {
        margin-bottom: 15px;
        font-size: 39px;
    }

    .hero-content p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-button {
        min-height: 45px;
        padding: 0 16px;
        font-size: 12px;
    }

    .home-actions {
        margin-top: 0;
        padding: 20px 0;
        background: var(--paper);
    }

    .home-actions__grid {
        grid-template-columns: 1fr;
    }

    .home-action,
    .home-action:nth-child(2),
    .home-action:last-child {
        min-height: 82px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .home-action:first-child {
        border-radius: 8px 8px 0 0;
    }

    .home-action:last-child {
        border-bottom: 0;
        border-radius: 0 0 8px 8px;
    }

    .home-action__arrow {
        display: block;
    }

    .home-page .about-section,
    .college-values,
    .home-page .events-section {
        padding: 70px 0;
    }

    .home-page .section-heading h2,
    .home-page .about-section h2 {
        font-size: 29px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 390px;
        margin: 0 0 0 18px;
    }

    .home-page .about-section .about-image figure {
        height: 360px;
    }

    .about-image__badge {
        left: -18px;
        width: 250px;
    }

    .section-heading--split {
        display: block;
    }

    .section-heading--split .text-link {
        margin-top: 16px;
    }

    .notice-empty {
        display: block;
        min-height: 0;
        padding: 30px;
    }

    .notice-empty__icon {
        margin-bottom: 20px;
    }

    .home-page .events-section .slide-item {
        padding: 20px;
    }

    .home-page .events-section .left-side {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 190px;
        margin-bottom: 20px;
    }

    .home-page .events-section .slide-item img {
        width: 100%;
        height: 190px;
    }

    .home-page .events-section .right-side {
        margin: 0 !important;
    }

    .home-page .comment-box {
        margin-top: 60px;
    }

    .home-page .comment-box .default-form-area {
        padding: 28px 22px 24px;
    }

    .home-page .sponsors-subscribe .right-side {
        margin-bottom: 25px;
    }

    .home-page .sponsors-subscribe .section-text,
    .home-page .sponsors-subscribe .icon-links {
        display: block;
        margin: 0 0 12px;
    }

    .home-page .sponsors-subscribe .icon-links:after {
        display: none;
    }

    .home-page .sponsors-subscribe .subscribe-form {
        padding: 0;
    }

    .home-page .sponsors-subscribe input[type="email"] {
        padding-right: 20px;
    }

    .home-page .sponsors-subscribe button {
        position: relative;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 420px) {
    .college-brand--main {
        gap: 9px;
    }

    .college-brand--main .college-brand__mark {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .college-brand--main .college-brand__mark--logo {
        flex-basis: 68px;
        width: 68px;
        height: 52px;
    }

    .college-brand--main .college-brand__name {
        font-size: 15px;
    }

    .college-brand--main .college-brand__affiliation {
        font-size: 8px;
    }

    .home-page .hero-content h1 {
        font-size: 34px;
    }

    .hero-button--secondary {
        display: none;
    }

    .about-image {
        min-height: 350px;
    }

    .home-page .about-section .about-image figure {
        height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modern-slide {
        transform: none;
    }

    .modern-slider__progress {
        display: none;
    }

    .home-page *,
    .home-page *:before,
    .home-page *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
