/* =========================================================
   S.N. PAREEK COLLEGE OF NURSING
   COMMON CSS
   PRIMARY COLOR: #8A1B0A
========================================================= */


:root {

    --maroon: #8A1B0A;
    --maroon-dark: #641306;
    --maroon-light: #A82B18;

    --dark: #21130F;
    --text: #252525;
    --muted: #697078;

    --light: #F7F6F4;
    --border: #E3E3E3;

    --white: #FFFFFF;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: #fff;

    line-height: 1.7;

}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--maroon);

    color: white;

    font-size: 13px;

}


.top-bar-inner {

    min-height: 38px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.top-links {

    display: flex;

    gap: 12px;

}


.top-links a:hover {
    text-decoration: underline;
}


/* =========================================================
   HEADER
========================================================= */

.header {

    background: white;

    border-bottom: 1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 1000;

}


.header-inner {

    min-height: 84px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.logo-area {

    display: flex;

    align-items: center;

    gap: 12px;

}


.college-logo {

    width: 64px;

    height: 70px;

    object-fit: contain;

}


.college-title {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

    color: var(--maroon);

}


.college-title strong {

    font-size: 20px;

}


.college-title span {

    font-size: 14px;

    font-weight: 600;

    margin-top: 3px;

}


.college-title small {

    font-size: 10px;

    letter-spacing: 3px;

    margin-top: 4px;

}


.navigation {

    display: flex;

    align-items: center;

    gap: 25px;

}


.navigation a {

    position: relative;

    padding: 30px 0;

    font-size: 14px;

    font-weight: 500;

}


.navigation a::after {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    background: var(--maroon);

    left: 50%;

    bottom: 20px;

    transform: translateX(-50%);

    transition: .25s;

}


.navigation a:hover,

.navigation a.active {

    color: var(--maroon);

}


.navigation a:hover::after,

.navigation a.active::after {

    width: 28px;

}


.mobile-menu-btn {

    display: none;

    border: 0;

    background: transparent;

    color: var(--maroon);

    font-size: 28px;

    cursor: pointer;

}


/* =========================================================
   NOTICE BAR
========================================================= */

.notice-bar {

    background: #fff;

    border-bottom: 1px solid var(--border);

}


.notice-inner {

    min-height: 50px;

    display: flex;

    align-items: center;

    gap: 18px;

}


.notice-label {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--maroon);

    white-space: nowrap;

}


.notice-label strong {

    font-size: 12px;

    letter-spacing: 1px;

}


.notice-icon {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--maroon);

    color: white;

    font-weight: bold;

}


.notice-window {

    height: 30px;

    overflow: hidden;

    flex: 1;

}


.notice-track {

    display: flex;

    flex-direction: column;

    animation: noticeSlide 12s infinite;

}


.notice-track a {

    height: 30px;

    display: flex;

    align-items: center;

    color: #4b4b4b;

    font-size: 14px;

}


.notice-track a:hover {

    color: var(--maroon);

}


@keyframes noticeSlide {

    0%, 20% {
        transform: translateY(0);
    }

    25%, 45% {
        transform: translateY(-30px);
    }

    50%, 70% {
        transform: translateY(-60px);
    }

    75%, 95% {
        transform: translateY(-90px);
    }

    100% {
        transform: translateY(0);
    }

}


.view-all {

    color: var(--maroon);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

}


/* =========================================================
   HOME HERO
========================================================= */

.home-hero {

    min-height: 580px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero-bg {

    position: absolute;

    inset: 0;

    background-image:
        url("images/college-building.jpg");

    background-size: cover;

    background-position: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 10, 7, .90),
            rgba(20, 10, 7, .65),
            rgba(20, 10, 7, .25)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    color: white;

}


.hero-text {

    max-width: 720px;

}


.hero-small-title {

    display: block;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: bold;

    margin-bottom: 15px;

}


.hero-text h1 {

    font-size: 52px;

    line-height: 1.15;

    margin-bottom: 20px;

}


.hero-text p {

    font-size: 18px;

    max-width: 650px;

    color: #f3f3f3;

    margin-bottom: 28px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    border-radius: 3px;

    font-weight: 600;

    transition: .25s;

}


.btn-primary {

    background: var(--maroon);

    color: white;

}


.btn-primary:hover {

    background: var(--maroon-dark);

}


.btn-outline {

    border: 1px solid white;

    color: white;

}


.btn-outline:hover {

    background: white;

    color: var(--maroon);

}


.btn-light {

    background: white;

    color: var(--maroon);

}


.btn-white {

    background: white;

    color: var(--maroon);

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    padding: 90px 0;

}


.two-column {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-label {

    display: block;

    color: var(--maroon);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.section-label.light {

    color: white;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 40px;

}


.section-heading.center {

    text-align: center;

    margin-left: auto;

    margin-right: auto;

}


.section-heading h2 {

    font-size: 39px;

    line-height: 1.2;

    margin-bottom: 12px;

}


.section-heading p {

    color: var(--muted);

}


.title-line {

    width: 55px;

    height: 3px;

    background: var(--maroon);

    margin: 18px 0 24px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-image {

    position: relative;

}


.about-image > img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);

}


.image-badge {

    position: absolute;

    left: 25px;

    bottom: -25px;

    background: white;

    padding: 16px 22px;

    border-left: 4px solid var(--maroon);

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

}


.image-badge strong {

    display: block;

    font-size: 25px;

    color: var(--maroon);

}


.image-badge span {

    display: block;

    font-size: 12px;

    color: var(--muted);

}


.about-content h2 {

    font-size: 40px;

    line-height: 1.2;

}


.about-content p {

    color: var(--muted);

    margin-bottom: 14px;

}


.text-link {

    display: inline-block;

    margin-top: 12px;

    color: var(--maroon);

    font-weight: bold;

}


/* =========================================================
   COURSES
========================================================= */

.courses-section {

    background: var(--light);

}


.course-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


.course-card {

    display: grid;

    grid-template-columns: 80px 1fr;

    background: white;

    border: 1px solid var(--border);

    transition: .3s;

}


.course-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.10);

}


.course-number {

    background: var(--maroon);

    color: white;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    padding-top: 35px;

    font-size: 15px;

    font-weight: bold;

}


.course-content {

    padding: 35px;

}


.course-type {

    font-size: 11px;

    letter-spacing: 1.5px;

    color: var(--maroon);

    font-weight: bold;

}


.course-content h3 {

    font-size: 27px;

    margin: 8px 0;

}


.course-content p {

    color: var(--muted);

    margin-bottom: 18px;

}


.course-content a {

    color: var(--maroon);

    font-weight: bold;

}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.feature-card {

    padding: 30px;

    border: 1px solid var(--border);

    background: white;

    transition: .25s;

}


.feature-card:hover {

    border-color: var(--maroon);

    transform: translateY(-4px);

}


.feature-number {

    color: var(--maroon);

    font-weight: bold;

    font-size: 12px;

}


.feature-card h3 {

    font-size: 20px;

    margin: 15px 0 8px;

}


.feature-card p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   CAMPUS
========================================================= */

.campus-section {

    padding: 80px 0;

    background: var(--maroon);

    color: white;

}


.campus-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 60px;

    align-items: center;

}


.campus-content h2 {

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 15px;

}


.campus-content p {

    color: #f1dcd7;

    margin-bottom: 25px;

}


.campus-image img {

    width: 100%;

    height: 390px;

    object-fit: cover;

    border-radius: 7px;

}


/* =========================================================
   UPDATES
========================================================= */

.updates-layout {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 35px;

}


.updates-list {

    border-top: 3px solid var(--maroon);

}


.update-item {

    display: grid;

    grid-template-columns: 85px 1fr 25px;

    gap: 18px;

    align-items: center;

    padding: 22px 10px;

    border-bottom: 1px solid var(--border);

    transition: .25s;

}


.update-item:hover {

    background: #fafafa;

}


.update-date {

    text-align: center;

}


.update-date strong {

    display: block;

    color: var(--maroon);

    font-size: 24px;

}


.update-date span {

    font-size: 10px;

    color: var(--muted);

}


.update-item h3 {

    font-size: 18px;

    margin-bottom: 3px;

}


.update-item p {

    color: var(--muted);

    font-size: 13px;

}


.arrow {

    color: var(--maroon);

    font-size: 20px;

}


.updates-image img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 7px;

}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {

    background: var(--dark);

    color: white;

    padding: 55px 0;

}


.contact-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.contact-cta span {

    font-size: 11px;

    letter-spacing: 2px;

}


.contact-cta h2 {

    font-size: 32px;

    margin: 5px 0;

}


.contact-cta p {

    color: #cfc4c0;

}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.inner-hero {

    min-height: 380px;

    position: relative;

    display: flex;

    align-items: center;

}


.inner-hero-bg {

    position: absolute;

    inset: 0;

    background:
        url("images/college-building.jpg")
        center / cover no-repeat;

}


.inner-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25,12,8,.88),
            rgba(25,12,8,.55)
        );

}


.inner-hero-content {

    position: relative;

    z-index: 2;

    color: white;

}


.inner-hero-content > span {

    display: block;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.inner-hero-content h1 {

    font-size: 54px;

    line-height: 1.15;

    margin-bottom: 10px;

}


.inner-hero-content p {

    font-size: 18px;

}


.breadcrumb {

    display: flex;

    gap: 10px;

    margin-top: 20px;

    font-size: 13px;

}


.breadcrumb a {

    color: #ddd;

}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-main {

    background: white;

}


.about-facts {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 28px;

    border: 1px solid var(--border);

}


.about-facts div {

    padding: 16px;

    border-right: 1px solid var(--border);

}


.about-facts div:last-child {

    border-right: 0;

}


.about-facts strong,

.about-facts span {

    display: block;

}


.about-facts strong {

    color: var(--maroon);

    font-size: 20px;

}


.about-facts span {

    color: var(--muted);

    font-size: 12px;

}


/* =========================================================
   VALUES
========================================================= */

.values-section {

    background: var(--light);

}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.value-card {

    background: white;

    padding: 35px;

    border-top: 4px solid var(--maroon);

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    border-left: 1px solid var(--border);

}


.value-card > span {

    color: var(--maroon);

    font-weight: bold;

    font-size: 12px;

}


.value-card h3 {

    font-size: 24px;

    margin: 20px 0 10px;

}


.value-card p {

    color: var(--muted);

}


/* =========================================================
   CHECK LIST
========================================================= */

.check-list {

    list-style: none;

    display: grid;

    gap: 12px;

    margin-top: 20px;

}


.check-list li {

    display: flex;

    gap: 10px;

    align-items: flex-start;

}


.check-list b {

    color: var(--maroon);

}


/* =========================================================
   GLANCE
========================================================= */

.glance-section {

    background: var(--dark);

    color: white;

    padding: 85px 0;

}


.light-heading h2 {

    color: white;

}


.glance-table {

    max-width: 850px;

    margin: auto;

    border: 1px solid rgba(255,255,255,.15);

}


.glance-row {

    display: grid;

    grid-template-columns: 38% 62%;

    padding: 17px 22px;

    border-bottom: 1px solid rgba(255,255,255,.12);

}


.glance-row:last-child {

    border-bottom: 0;

}


.glance-row span {

    color: #cdbeb8;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: white;

}


.contact-box {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding: 50px;

    background: var(--light);

    border-left: 4px solid var(--maroon);

}


.contact-box h2 {

    font-size: 36px;

    line-height: 1.2;

}


.contact-box p {

    color: var(--muted);

    margin-top: 15px;

}


.contact-details {

    display: grid;

    gap: 20px;

}


.contact-details strong,

.contact-details span,

.contact-details a {

    display: block;

}


.contact-details strong {

    color: var(--maroon);

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 3px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #160D0A;

    color: #ddd;

    padding-top: 60px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 40px;

    padding-bottom: 45px;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.footer-brand img {

    width: 58px;

    height: 62px;

    object-fit: contain;

}


.footer-brand strong,

.footer-brand span,

.footer-brand small {

    display: block;

}


.footer-brand strong {

    color: white;

}


.footer-brand span {

    font-size: 13px;

}


.footer-brand small {

    font-size: 9px;

    letter-spacing: 2px;

}


.footer-about > p {

    color: #afa19d;

    margin-top: 18px;

    font-size: 14px;

}


.footer h4 {

    color: white;

    margin-bottom: 15px;

}


.footer a {

    display: block;

    color: #bdb0ab;

    margin: 7px 0;

    font-size: 14px;

}


.footer a:hover {

    color: white;

}


.footer p {

    color: #bdb0ab;

    font-size: 14px;

}


.copyright {

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.1);

    padding: 18px;

    color: #91827d;

    font-size: 13px;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 900px) {


    .top-links {

        display: none;

    }


    .mobile-menu-btn {

        display: block;

    }


    .navigation {

        position: absolute;

        left: 0;

        right: 0;

        top: 100%;

        background: white;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 10px 5%;

        border-bottom: 1px solid var(--border);

    }


    .navigation.open {

        display: flex;

    }


    .navigation a {

        padding: 12px 0;

        border-bottom: 1px solid #eee;

    }


    .navigation a::after {

        display: none;

    }


    .two-column,

    .campus-grid,

    .updates-layout,

    .contact-box {

        grid-template-columns: 1fr;

    }


    .course-grid {

        grid-template-columns: 1fr;

    }


    .features-grid,

    .values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width: 600px) {


    .container {

        width: 90%;

    }


    .header-inner {

        min-height: 75px;

    }


    .college-logo {

        width: 52px;

        height: 58px;

    }


    .college-title strong {

        font-size: 16px;

    }


    .college-title span {

        font-size: 11px;

    }


    .college-title small {

        font-size: 8px;

    }


    .notice-inner {

        gap: 8px;

    }


    .notice-label strong {

        display: none;

    }


    .view-all {

        font-size: 11px;

    }


    .home-hero {

        min-height: 500px;

    }


    .hero-text h1 {

        font-size: 37px;

    }


    .hero-text p {

        font-size: 16px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }


    .section {

        padding: 65px 0;

    }


    .section-heading h2,

    .about-content h2 {

        font-size: 31px;

    }


    .about-image > img {

        height: 370px;

    }


    .course-card {

        grid-template-columns: 60px 1fr;

    }


    .course-content {

        padding: 25px;

    }


    .features-grid,

    .values-grid {

        grid-template-columns: 1fr;

    }


    .campus-content h2 {

        font-size: 32px;

    }


    .campus-image img {

        height: 300px;

    }


    .update-item {

        grid-template-columns:
            55px 1fr 15px;

        gap: 10px;

    }


    .updates-image img {

        height: 260px;

    }


    .inner-hero {

        min-height: 330px;

    }


    .inner-hero-content h1 {

        font-size: 40px;

    }


    .about-facts {

        grid-template-columns: 1fr;

    }


    .about-facts div {

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }


    .about-facts div:last-child {

        border-bottom: 0;

    }


    .glance-row {

        grid-template-columns: 1fr;

        gap: 5px;

    }


    .contact-box {

        padding: 30px 25px;

    }


    .contact-box h2 {

        font-size: 29px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }

}
/* =========================================================
   COURSES PAGE
========================================================= */


/* Course Hero */

.courses-page-hero .inner-hero-bg {

    background-image:
        url("images/nursing-lab.jpg");

    background-position: center;

}


/* Introduction */

.courses-introduction {

    padding-bottom: 45px;

}


.courses-introduction
.section-heading {

    max-width: 800px;

}


/* Course Detail */

.course-detail-section {

    padding: 85px 0;

    background: white;

}


.course-detail-section:nth-of-type(even) {

    background: #f8f7f5;

}


.course-detail-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


/* Course Image */

.course-detail-image {

    position: relative;

}


.course-detail-image img {

    width: 100%;

    height: 470px;

    object-fit: cover;

    border-radius: 7px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.13);

}


.course-image-label {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: var(--maroon);

    color: white;

    padding: 15px 25px;

    min-width: 110px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.20);

}


.course-image-label strong {

    display: block;

    font-size: 27px;

    line-height: 1;

}


.course-image-label span {

    font-size: 12px;

}


/* Course Content */

.course-detail-content h2 {

    font-size: 43px;

    line-height: 1.15;

    margin-bottom: 5px;

}


.course-detail-content > p {

    color: var(--muted);

    margin-bottom: 15px;

}


/* Highlights */

.course-highlights {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin: 28px 0;

}


.course-highlight {

    display: flex;

    gap: 12px;

    padding: 15px;

    border: 1px solid var(--border);

    background: #fff;

}


.highlight-icon {

    min-width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    background: #f3e9e6;

    color: var(--maroon);

    font-size: 11px;

    font-weight: bold;

}


.course-highlight strong {

    display: block;

    font-size: 14px;

    margin-bottom: 2px;

}


.course-highlight p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;

}


/* Course Info */

.course-info-section {

    padding: 0 0 80px;

    background: #f8f7f5;

}


.course-info-box {

    background: var(--dark);

    color: white;

    padding: 45px;

}


.course-info-heading {

    margin-bottom: 30px;

}


.course-info-heading h2 {

    font-size: 30px;

}


.course-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.course-info-grid > div {

    padding: 20px;

    border-left:
        1px solid rgba(255,255,255,.15);

}


.course-info-grid span {

    display: block;

    color: #bcaea9;

    font-size: 11px;

    letter-spacing: .7px;

    margin-bottom: 7px;

}


.course-info-grid strong {

    display: block;

    font-size: 14px;

    line-height: 1.5;

}


/* GNM */

.gnm-section {

    background: #f8f7f5;

}


/* Learning */

.learning-section {

    background: white;

}


.learning-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.learning-card {

    border:
        1px solid var(--border);

    background: white;

    transition: .3s;

}


.learning-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);

}


.learning-image img {

    width: 100%;

    height: 220px;

    object-fit: cover;

}


.learning-content {

    padding: 25px;

}


.learning-content > span {

    color: var(--maroon);

    font-weight: bold;

    font-size: 12px;

}


.learning-content h3 {

    font-size: 21px;

    margin: 8px 0;

}


.learning-content p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   COURSES RESPONSIVE
========================================================= */


@media(max-width: 900px) {


    .course-detail-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .course-detail-grid
    .course-detail-image {

        order: 1;

    }


    .course-detail-grid
    .course-detail-content {

        order: 2;

    }


    .course-highlights {

        grid-template-columns:
            1fr;

    }


    .course-info-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .course-info-grid > div {

        border-bottom:
            1px solid rgba(255,255,255,.15);

    }


    .learning-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


@media(max-width: 600px) {


    .course-detail-section {

        padding: 60px 0;

    }


    .course-detail-image img {

        height: 330px;

    }


    .course-detail-content h2 {

        font-size: 34px;

    }


    .course-info-box {

        padding: 30px 20px;

    }


    .course-info-grid {

        grid-template-columns:
            1fr;

    }


    .course-info-grid > div {

        border-left: 0;

    }


    .learning-grid {

        grid-template-columns:
            1fr;

    }


    .learning-image img {

        height: 230px;

    }

}
/* =========================================================
   FACILITIES PAGE
========================================================= */


/* Hero */

.facilities-page-hero .inner-hero-bg {

    background-image:
        url("images/college-building.jpg");

    background-position: center;

}


/* Introduction */

.facilities-intro {

    padding-bottom: 45px;

}


.facilities-intro
.section-heading {

    max-width: 820px;

}


/* Main Facilities */

.facilities-main {

    padding: 30px 0 90px;

    background: #f8f7f5;

}


.facilities-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;

}


/* Facility Card */

.facility-card {

    background: white;

    border:
        1px solid var(--border);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.facility-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);

}


/* Image */

.facility-image {

    position: relative;

    height: 245px;

    overflow: hidden;

}


.facility-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.facility-card:hover
.facility-image img {

    transform:
        scale(1.06);

}


/* Number */

.facility-number {

    position: absolute;

    top: 18px;

    left: 18px;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    background:
        var(--maroon);

    color: white;

    font-size: 12px;

    font-weight: 700;

}


/* Content */

.facility-content {

    padding: 27px;

}


.facility-category {

    color:
        var(--maroon);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.1px;

}


.facility-content h3 {

    font-size: 23px;

    margin:
        8px 0 10px;

}


.facility-content p {

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;

}


.facility-content a {

    display: inline-block;

    color:
        var(--maroon);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

}


.facility-content a:hover {

    text-decoration:
        underline;

}


/* =========================================================
   FACILITY APPROACH
========================================================= */

.facility-approach {

    padding: 90px 0;

    background: white;

}


.facility-approach-box {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background:
        #f5efed;

    overflow: hidden;

}


.facility-approach-content {

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

}


.facility-approach-content h2 {

    font-size: 38px;

    line-height: 1.2;

    margin:
        8px 0 18px;

}


.facility-approach-content p {

    color:
        var(--muted);

    max-width: 560px;

    line-height: 1.8;

    margin-bottom: 25px;

}


.facility-approach-image {

    min-height: 420px;

}


.facility-approach-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1000px) {


    .facilities-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .facility-approach-box {

        grid-template-columns:
            1fr;

    }


    .facility-approach-image {

        min-height: 350px;

    }

}


@media(max-width: 650px) {


    .facilities-main {

        padding:
            20px 0 60px;

    }


    .facilities-grid {

        grid-template-columns:
            1fr;

        gap: 22px;

    }


    .facility-image {

        height: 230px;

    }


    .facility-content {

        padding: 23px;

    }


    .facility-approach {

        padding: 60px 0;

    }


    .facility-approach-content {

        padding: 35px 25px;

    }


    .facility-approach-content h2 {

        font-size: 30px;

    }


    .facility-approach-image {

        min-height: 280px;

    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */


/* Hero */

.contact-page-hero .inner-hero-bg {

    background-image:
        url("images/college-building.jpg");

    background-position: center;

}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {

    padding-bottom: 55px;

}


.contact-information
.section-heading {

    max-width: 800px;

}


/* Contact Cards */

.contact-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 45px;

}


.contact-card {

    display: flex;

    gap: 18px;

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.contact-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.09);

}


.contact-card-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    display: grid;

    place-items: center;

    background:
        #f3e9e6;

    color:
        var(--maroon);

    font-size: 22px;

}


.contact-card > div:last-child > span {

    display: block;

    color:
        var(--maroon);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 5px;

}


.contact-card h3 {

    font-size: 19px;

    margin-bottom: 7px;

}


.contact-card p {

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.6;

}


.contact-card a {

    color:
        var(--muted);

    text-decoration: none;

}


.contact-card a:hover {

    color:
        var(--maroon);

}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {

    padding: 75px 0 90px;

    background:
        #f8f7f5;

}


.contact-main-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: start;

}


/* Form */

.contact-form-wrapper {

    background: white;

    padding: 45px;

    border:
        1px solid var(--border);

}


.contact-form-wrapper h2 {

    font-size: 34px;

    margin:
        8px 0 10px;

}


.form-intro {

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 28px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;

}


.form-group label span {

    color:
        var(--maroon);

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border:
        1px solid #ddd;

    background:
        #fff;

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition:
        border .2s ease,
        box-shadow .2s ease;

}


.form-group textarea {

    resize: vertical;

    min-height: 125px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--maroon);

    box-shadow:
        0 0 0 3px rgba(138,27,10,.08);

}


.form-group.error input,
.form-group.error select {

    border-color:
        #c62828;

}


.form-error {

    display: block;

    color:
        #c62828;

    font-size: 11px;

    margin-top: 5px;

    min-height: 14px;

}


.form-submit {

    border: 0;

    cursor: pointer;

    margin-top: 5px;

}


.form-success {

    display: none;

    margin-top: 18px;

    padding: 13px 15px;

    background:
        #edf7ee;

    color:
        #28632d;

    font-size: 13px;

    border-left:
        3px solid #388e3c;

}


.form-success.show {

    display: block;

}


/* =========================================================
   MAP
========================================================= */

.contact-map-wrapper {

    position: sticky;

    top: 30px;

}


.contact-map-title h2 {

    font-size: 34px;

    margin:
        8px 0 20px;

}


.map-box {

    width: 100%;

    height: 425px;

    background:
        #ddd;

    overflow: hidden;

    border:
        1px solid var(--border);

}


.map-box iframe {

    display: block;

}


.map-note {

    padding: 20px 22px;

    background:
        var(--dark);

    color: white;

}


.map-note strong {

    display: block;

    font-size: 15px;

    margin-bottom: 5px;

}


.map-note p {

    color:
        #cfc5c1;

    font-size: 12px;

}


/* =========================================================
   QUICK CONTACT
========================================================= */

.quick-contact-section {

    padding: 0 0 90px;

    background:
        #f8f7f5;

}


.quick-contact-box {

    padding: 50px 55px;

    background:
        var(--maroon);

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 35px;

}


.quick-contact-box > div:first-child > span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color:
        #e8c9c2;

}


.quick-contact-box h2 {

    font-size: 30px;

    margin:
        7px 0 8px;

}


.quick-contact-box p {

    color:
        #f1ddda;

    font-size: 13px;

}


.quick-contact-buttons {

    display: flex;

    gap: 12px;

    flex-shrink: 0;

}


.btn-outline-white {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        13px 23px;

    color: white;

    border:
        1px solid rgba(255,255,255,.7);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

}


.btn-outline-white:hover {

    background: white;

    color:
        var(--maroon);

}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media(max-width: 950px) {


    .contact-cards {

        grid-template-columns:
            1fr 1fr;

    }


    .contact-cards
    .contact-card:last-child {

        grid-column:
            span 2;

    }


    .contact-main-grid {

        grid-template-columns:
            1fr;

    }


    .contact-map-wrapper {

        position: static;

    }


    .quick-contact-box {

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}


@media(max-width: 650px) {


    .contact-cards {

        grid-template-columns:
            1fr;

    }


    .contact-cards
    .contact-card:last-child {

        grid-column:
            auto;

    }


    .contact-form-wrapper {

        padding: 30px 22px;

    }


    .contact-form-wrapper h2,
    .contact-map-title h2 {

        font-size: 28px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .map-box {

        height: 330px;

    }


    .quick-contact-box {

        padding:
            35px 25px;

    }


    .quick-contact-box h2 {

        font-size: 26px;

    }


    .quick-contact-buttons {

        width: 100%;

        flex-direction:
            column;

    }


    .quick-contact-buttons .btn,
    .quick-contact-buttons
    .btn-outline-white {

        width: 100%;

    }

}
/* =========================================================
   NOTICES PAGE
========================================================= */


/* Hero */

.notices-page-hero .inner-hero-bg {

    background-image:
        url("images/college-building.jpg");

    background-position: center;

}


/* =========================================================
   NOTICE SECTION
========================================================= */

.notices-section {

    background:
        #ffffff;

}


.notice-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 40px;

}


.notice-heading > div:first-child {

    max-width: 650px;

}


/* Search */

.notice-search {

    width: 290px;

}


.notice-search input {

    width: 100%;

    height: 46px;

    padding:
        0 16px;

    border:
        1px solid #ddd;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    background:
        #fafafa;

}


.notice-search input:focus {

    border-color:
        var(--maroon);

    background:
        white;

}


/* =========================================================
   LATEST NOTICE
========================================================= */

.latest-notice {

    display: grid;

    grid-template-columns:
        100px 1fr 70px;

    gap: 30px;

    align-items: center;

    background:
        var(--maroon);

    color: white;

    padding:
        35px 38px;

    margin-bottom: 55px;

    position: relative;

    overflow: hidden;

}


.latest-notice::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.12);

    right: -100px;

    top: -120px;

}


.latest-notice-date {

    width: 82px;

    height: 92px;

    background:
        white;

    color:
        var(--maroon);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}


.latest-notice-date span {

    font-size: 9px;

    letter-spacing: 1px;

    font-weight: 700;

}


.latest-notice-date strong {

    font-size: 31px;

    line-height: 1;

}


.latest-notice-content {

    position: relative;

    z-index: 2;

}


.latest-notice-content .notice-meta {

    color:
        #ead2cd;

}


.latest-notice-content h2 {

    font-size: 27px;

    margin:
        8px 0 10px;

}


.latest-notice-content p {

    color:
        #f2ded9;

    font-size: 13px;

    line-height: 1.7;

    max-width: 700px;

}


.latest-notice-icon {

    width: 58px;

    height: 58px;

    border:
        1px solid rgba(255,255,255,.45);

    display: grid;

    place-items: center;

    font-size: 25px;

    font-weight: 700;

    position: relative;

    z-index: 2;

}


.notice-read-btn {

    display: inline-block;

    margin-top: 16px;

    color: white;

    border-bottom:
        1px solid rgba(255,255,255,.6);

    padding-bottom: 3px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   NOTICE META
========================================================= */

.notice-meta {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        #888;

    font-size: 10px;

}


.notice-tag {

    display: inline-flex;

    align-items: center;

    padding:
        5px 9px;

    background:
        #f2e7e4;

    color:
        var(--maroon);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .7px;

}


.notice-tag.important {

    background:
        rgba(255,255,255,.15);

    color: white;

}


/* =========================================================
   FILTER
========================================================= */

.notice-filter-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    border-bottom:
        1px solid #ddd;

    padding-bottom: 18px;

    margin-bottom: 8px;

}


.notice-filter-title {

    display: flex;

    align-items: center;

    gap: 10px;

}


.notice-filter-title strong {

    font-size: 20px;

}


.notice-filter-title span {

    font-size: 11px;

    color:
        #888;

}


.notice-filters {

    display: flex;

    gap: 6px;

    flex-wrap: wrap;

}


.notice-filter {

    border: 0;

    background:
        #f4f3f2;

    color:
        #555;

    padding:
        9px 15px;

    font-family: inherit;

    font-size: 11px;

    cursor: pointer;

    transition:
        all .2s ease;

}


.notice-filter:hover {

    background:
        #eee1dd;

    color:
        var(--maroon);

}


.notice-filter.active {

    background:
        var(--maroon);

    color: white;

}


/* =========================================================
   NOTICE ITEM
========================================================= */

.notice-list {

    border-top:
        0 solid transparent;

}


.notice-item {

    display: grid;

    grid-template-columns:
        90px 1fr 45px;

    align-items: center;

    gap: 25px;

    padding:
        27px 10px;

    border-bottom:
        1px solid #e6e6e6;

    transition:
        background .25s ease,
        padding .25s ease;

}


.notice-item:hover {

    background:
        #faf7f6;

    padding-left:
        18px;

    padding-right:
        18px;

}


/* Date */

.notice-date {

    width: 68px;

    height: 72px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border:
        1px solid #ddd;

    background:
        white;

}


.notice-date strong {

    font-size: 25px;

    color:
        var(--maroon);

    line-height: 1;

}


.notice-date span {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-top: 3px;

}


.notice-date small {

    font-size: 9px;

    color:
        #888;

    margin-top: 2px;

}


/* Content */

.notice-item-content h3 {

    font-size: 19px;

    margin:
        9px 0 6px;

    color:
        #292525;

}


.notice-item-content p {

    font-size: 13px;

    color:
        var(--muted);

    line-height: 1.6;

    margin-bottom: 8px;

}


.notice-link {

    color:
        var(--maroon);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

}


.notice-link:hover {

    text-decoration:
        underline;

}


/* Arrow */

.notice-arrow {

    width: 40px;

    height: 40px;

    border:
        1px solid #ddd;

    display: grid;

    place-items: center;

    color:
        var(--maroon);

    transition:
        all .25s ease;

}


.notice-item:hover
.notice-arrow {

    background:
        var(--maroon);

    color: white;

    border-color:
        var(--maroon);

}


/* =========================================================
   NO NOTICE
========================================================= */

.no-notice {

    display: none;

    text-align: center;

    padding:
        60px 20px;

    border:
        1px solid #eee;

    margin-top: 20px;

}


.no-notice.show {

    display: block;

}


.no-notice > div {

    font-size: 30px;

    margin-bottom: 10px;

}


.no-notice h3 {

    font-size: 20px;

    margin-bottom: 5px;

}


.no-notice p {

    color:
        #888;

    font-size: 13px;

}


/* =========================================================
   NOTICE INFO
========================================================= */

.notice-info-section {

    padding:
        0 0 80px;

    background:
        white;

}


.notice-info-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding:
        25px 30px;

    background:
        #f7f1ef;

    border-left:
        4px solid var(--maroon);

}


.notice-info-icon {

    width: 35px;

    height: 35px;

    min-width: 35px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--maroon);

    color: white;

    font-weight: 700;

}


.notice-info-box h3 {

    font-size: 17px;

    margin-bottom: 5px;

}


.notice-info-box p {

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   NOTICE RESPONSIVE
========================================================= */

@media(max-width: 800px) {


    .notice-heading {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .notice-search {

        width: 100%;

        max-width: 400px;

    }


    .latest-notice {

        grid-template-columns:
            80px 1fr;

        padding:
            28px;

    }


    .latest-notice-icon {

        display: none;

    }


    .notice-filter-row {

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}


@media(max-width: 600px) {


    .latest-notice {

        grid-template-columns:
            1fr;

        gap: 18px;

    }


    .latest-notice-date {

        width: 70px;

        height: 75px;

    }


    .latest-notice-content h2 {

        font-size: 23px;

    }


    .notice-item {

        grid-template-columns:
            70px 1fr;

        gap: 16px;

        padding:
            22px 0;

    }


    .notice-arrow {

        display: none;

    }


    .notice-item-content h3 {

        font-size: 16px;

    }


    .notice-meta {

        flex-wrap: wrap;

    }


    .notice-info-box {

        padding:
            20px;

    }

}