:root {
    --green: #3e152e;
    --deep-green: #081029;
    --mint: #f2ead6;
    --gold: #c9a15b;
    --white: #ffffff;
    --dark: #14020d;
    --muted: #6d756f;
    --soft: #f6f5ef;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Jura", sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}





img {
    max-width: 100%;
    display: block;
}

/* Header Like Attachment */

.kc-header {
    position: relative;
    z-index: 1000;
}

.kc-logo-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 82px;
    height: 82px;
    background: rgba(255,255,255,0.94);
    display: flex;
    align-items: center;
    padding: 0 44px;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.kc-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--green);
}

.kc-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.kc-brand span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--green);
   font-family: "Jura", sans-serif;
}

.kc-side-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 82px;
    height: 100vh;
    background: linear-gradient(135deg, #3e152e, #560737), url(../images/campus.jpg) center / cover;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kc-menu-btn {
    width: 82px;
    height: 82px;
    border: none;
    background: var(--deep-green);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.kc-menu-btn i {
    font-size: 25px;
}

.kc-menu-btn small {
    font-size: 10px;
    letter-spacing: 1px;
}

.kc-side-icons {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kc-side-icons a {
    color: rgba(255,255,255,0.55);
    font-size: 18px;
    transition: 0.3s ease;
}

.kc-side-icons a:hover {
    color: var(--mint);
}

.kc-slider-dots-side {
    margin-top: auto;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
}

.kc-slider-dots-side button {
    width: 7px;
    height: 7px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    padding: 0;
}

.kc-slider-dots-side button.active {
    width: 19px;
    height: 19px;
    border: 2px solid var(--mint);
    background: transparent;
}

/* Full Screen Menu */

.kc-full-menu {
    position: fixed;
    inset: 0;
    right: 82px;
    background: #3e152e;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.45s ease;
}

.kc-full-menu.open {
    transform: translateX(0);
}

.kc-full-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.kc-full-menu li {
    margin: 18px 0;
}

.kc-full-menu a {
    color: #fff;
    font-size: clamp(24px, 4vw, 45px);
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s ease;
    line-height: 1.2;
}

.kc-full-menu a:hover {
    color: var(--mint);
}

.kc-close-menu {
    position: absolute;
    top: 30px;
    right: 36px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
}

/* Hero Slider */

.kc-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    margin-right: 82px;
    overflow: hidden;
    background: #111;
}

.kc-slide {
    position: absolute;
    inset: 82px 0 0 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 1.5s ease;
}

.kc-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.kc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(54, 0, 35, 0.55),
        rgba(54, 0, 25, 0.18),
        rgba(54, 0, 30, 0.05)
    );
}

.kc-slide-caption {
    position: absolute;
    right: 60px;
    bottom: 120px;
    z-index: 5;
    max-width: 470px;
    background: rgba(243, 231, 189, 0.92);
    padding: 28px 34px;
    color: var(--green);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.kc-slide-caption span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.kc-slide-caption h1 {
    font-size: 34px;
    line-height: 1.1;
    margin: 10px 0;
    font-weight: 500;
}

.kc-slide-caption p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.kc-slide-caption a {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Thumbnail Panel */

.kc-thumb-panel {
    position: absolute;
    left: 40px;
    bottom: 28px;
    z-index: 20;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.kc-thumb {
    width: 120px;
    height: 86px;
    cursor: pointer;
    opacity: 0.7;
    border: 3px solid transparent;
    transition: 0.35s ease;
    overflow: hidden;
}

.kc-thumb:first-child {
    width: 260px;
    height: 130px;
    background: rgba(0, 54, 34, 0.85);
}

.kc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kc-thumb.active {
    opacity: 1;
    border-color: var(--mint);
}

/* Slider Controls */

.kc-slider-controls {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}

.kc-slider-controls button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.92);
    color: var(--green);
    transition: 0.3s ease;
}

.kc-slider-controls button:hover {
    background: var(--green);
    color: #fff;
}

/* Home Content */

.kc-intro-section {
    padding: 90px 82px 90px 0;
    background: #fff
}

.kc-section-head {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.kc-section-head span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
}

.kc-section-head h2 {
    color: var(--green);
    font-size: clamp(30px, 4vw, 30px);
    margin: 14px 0;
    line-height: 1.15;
    font-weight: 300;
}

.kc-section-head p {
    color: var(--muted);
    line-height: 1.8;
}

.kc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.kc-soft-card {
    background: #fff;
    padding: 34px;
    border-radius: 1px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.07);
    border: 0.1px solid rgb(62 21 46);
    transition: 0.35s ease;
}

.kc-soft-card:hover {
    transform: translateY(-8px);
}

.kc-soft-card i {
    color: var(--green);
    font-size: 34px;
    margin-bottom: 20px;
}

.kc-soft-card h3 {
    color: var(--green);
    font-size: 22px;
}

.kc-soft-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */

@media (max-width: 991px) {
    .kc-logo-area {
        right: 64px;
        height: 72px;
        padding: 0 20px;
    }

    .kc-brand span {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .kc-brand img {
        width: 44px;
        height: 44px;
    }

    .kc-side-nav {
        width: 64px;
    }

    .kc-menu-btn {
        width: 64px;
        height: 72px;
    }

    .kc-side-icons {
        display: none;
    }

    .kc-slider-dots-side {
        display: none;
    }

    .kc-hero-slider {
        margin-right: 64px;
        min-height: 600px;
    }

    .kc-slide {
        inset: 72px 0 0 0;
    }

    .kc-slide-caption {
        left: 20px;
        right: 20px;
        bottom: 110px;
        max-width: none;
        padding: 24px;
    }

    .kc-slide-caption h1 {
        font-size: 28px;
    }

    .kc-thumb-panel {
        left: 20px;
        bottom: 18px;
    }

    .kc-thumb {
        width: 74px;
        height: 58px;
    }

    .kc-thumb:first-child {
        width: 110px;
        height: 70px;
    }

    .kc-slider-controls {
        right: 20px;
        left: auto;
        transform: none;
        bottom: 18px;
    }

    .kc-slider-controls button {
        width: 42px;
        height: 42px;
    }

    .kc-intro-section {
        padding-right: 64px;
    }

    .kc-card-grid {
        grid-template-columns: 1fr;
    }

    .kc-full-menu {
        right: 64px;
    }
}

@media (max-width: 576px) {
    .kc-brand span {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .kc-brand img {
        width: 38px;
        height: 38px;
    }

    .kc-logo-area {
        padding: 0 12px;
    }

    .kc-hero-slider {
        min-height: 560px;
    }

    .kc-slide-caption {
        bottom: 120px;
    }

    .kc-slide-caption h1 {
        font-size: 24px;
    }

    .kc-slide-caption p {
        font-size: 14px;
    }

    .kc-thumb-panel {
        display: none;
    }

    .kc-slider-controls {
        left: 20px;
        right: auto;
    }
}

.kc-footer {
    margin-right: 82px;
    background:
        
        url('../images/campus.jpg') center/cover;
    color: rgba(255,255,255,0.78);
    position: relative;
}

.kc-footer-top {
    padding: 80px 0 55px;
}

.kc-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.35fr;
    gap: 34px;
}

.kc-footer-brand img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    background: rgba(255,255,255,0.95);
    padding: 8px;
    border-radius: 1px;
    margin-bottom: 18px;
}

.kc-footer-brand h3,
.kc-footer h4 {
    color: #fff;
    font-weight: 300;
    margin-bottom: 16px;
}

.kc-footer-brand h3 {
    font-size: 25px;
    letter-spacing: 0.5px;
}

.kc-footer-brand p,
.kc-footer-contact p {
    line-height: 1.8;
    font-size: 15px;
}

.kc-footer h4 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.kc-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--mint);
}

.kc-footer-col a {
    display: block;
    color: rgba(255,255,255,0.72);
    margin: 10px 0;
    font-size: 15px;
    transition: 0.3s ease;
}

.kc-footer-col a:hover {
    color: var(--mint);
    transform: translateX(5px);
}

.kc-footer-contact i {
    color: var(--mint);
    margin-right: 9px;
}

.kc-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.kc-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    display: grid;
    place-items: center;
    color: #fff;
    transition: 0.3s ease;
}

.kc-footer-social a:hover {
    background: var(--mint);
    color: var(--green);
    transform: translateY(-4px);
}

.kc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
    padding: 20px 0;
    text-align: center;
    background: rgba(35, 0, 27, 0.55);
}

.kc-footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.kc-footer-bottom a {
    color: var(--mint);
    font-weight: 800;
}

@media (max-width: 991px) {
    .kc-footer {
        margin-right: 64px;
    }

    .kc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kc-footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .kc-footer-grid {
        grid-template-columns: 1fr;
    }

    .kc-footer-brand {
        grid-column: span 1;
    }

    .kc-footer-top {
        padding: 55px 0 35px;
    }
}

.kc-stats-section {
    padding: 60px 82px 60px 0;
    background: linear-gradient(135deg, #3e152e, #560737), url(../images/campus.jpg) center / cover;
}

.kc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.kc-stat {
    text-align: center;
    color: #fff;
    padding: 28px 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
}

.kc-stat h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--mint);
}

.kc-stat p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1.0px;
}


.kc-testimonial {
    background: linear-gradient(180deg, #fff, #f8f7f2);
}

.kc-testimonial p {
    font-size: 17px;
    font-style: italic;
}

.kc-testimonial h4 {
    color: var(--green);
    margin-top: 18px;
}

.kc-final-cta {
    padding: 90px 82px 90px 0;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgb(10, 0, 0), rgb(16, 1, 10));
        
}

.kc-final-cta h2 {
    max-width: 500px;
    margin: 14px auto;
    font-size: clamp(30px, 4vw, 30px);
    font-weight: 500;
    line-height: 1.1;
}

.kc-final-cta p {
    max-width: 650px;
    margin: 0 auto 28px;
    opacity: 0.9;
}

.kc-final-cta a {
    display: inline-block;
    background: var(--mint);
    color: var(--green);
    padding: 14px 34px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .kc-stats-section,
    .kc-program-section,
    .kc-campus-section,
    .kc-admission-section,
    .kc-news-section,
    .kc-testimonial-section,
    .kc-final-cta {
        padding-right: 64px;
    }

    .kc-stats-grid,
    .kc-program-grid,
    .kc-news-grid,
    .kc-testimonial-grid,
    .kc-process-grid,
    .kc-campus-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .kc-stats-grid,
    .kc-program-grid,
    .kc-news-grid,
    .kc-testimonial-grid,
    .kc-process-grid,
    .kc-campus-grid {
        grid-template-columns: 1fr;
    }

    .kc-campus-image img {
        height: 340px;
    }
}

/* about */
.kc-about-hero {
    margin-right: 82px;
    padding: 150px 0 80px;
    background:
        linear-gradient(90deg, rgba(0,54,34,0.78), rgba(0,54,34,0.36)),
        url('../images/campus.jpg') center/cover;
}

.kc-about-hero-inner {
    max-width: 650px;
    background: rgba(255,255,255,0.88);
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.kc-about-hero-inner span,
.kc-about-text span,
.kc-mini-heading span,
.kc-campus-panel span,
.kc-message-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kc-about-hero-inner h1 {
    color: var(--green);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 650;
    line-height: 1.18;
    margin: 12px 0;
}

.kc-about-hero-inner p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.kc-about-intro,
.kc-about-values,
.kc-about-campus,
.kc-about-message {
    margin-right: 82px;
    padding: 80px 0;
}

.kc-about-intro {
    background: #fff;
}

.kc-about-intro-grid,
.kc-about-campus-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.kc-about-text h2,
.kc-mini-heading h2,
.kc-campus-panel h2,
.kc-message-card h2 {
    color: var(--green);
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.18;
    font-weight: 650;
    margin: 12px 0 18px;
}

.kc-about-text p,
.kc-campus-panel p,
.kc-message-card p {
    color: var(--muted);
    line-height: 1.82;
    font-size: 15.5px;
}

.kc-about-points {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.kc-about-points div {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #faf9f5;
}

.kc-about-points b {
    color: var(--green);
    font-size: 14px;
    border-right: 1px solid rgba(0,0,0,0.14);
    padding-right: 14px;
}

.kc-about-points p {
    margin: 0;
    color: var(--dark);
}

.kc-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

.kc-about-values {
    background: var(--soft);
}

.kc-mini-heading {
    max-width: 620px;
    margin-bottom: 38px;
}

.kc-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.kc-value-card {
    background: #fff;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 45px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.kc-value-card:hover {
    transform: translateY(-6px);
}

.kc-value-card small {
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.kc-value-card h3 {
    color: var(--green);
    font-size: 22px;
    font-weight: 650;
    margin: 12px 0;
}

.kc-value-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.kc-about-campus {
    background: #fff;
}

.kc-campus-panel {
    background: #faf9f5;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 34px;
}

.kc-campus-panel ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.kc-campus-panel li {
    margin: 13px 0;
    color: var(--dark);
    font-size: 15px;
}

.kc-campus-panel li i {
    color: var(--green);
    margin-right: 8px;
}

.kc-about-stat-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.kc-about-stat-box div {
    padding: 30px 22px;
    background: var(--green);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.kc-about-stat-box h3 {
    color: var(--mint);
    font-size: 38px;
    font-weight: 650;
    margin-bottom: 8px;
}

.kc-about-stat-box p {
    margin: 0;
    opacity: 0.86;
}

.kc-about-message {
    background:
        linear-gradient(90deg, rgba(0,54,34,0.88), rgba(0,54,34,0.62)),
        url('../images/hero-2.jpg') center/cover;
}

.kc-message-card {
    max-width: 720px;
    background: rgba(255,255,255,0.92);
    padding: 38px;
    border: 1px solid rgba(255,255,255,0.72);
}

.kc-message-card a {
    display: inline-block;
    margin-top: 14px;
    background: var(--green);
    color: #fff;
    padding: 12px 26px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .kc-about-hero,
    .kc-about-intro,
    .kc-about-values,
    .kc-about-campus,
    .kc-about-message {
        margin-right: 64px;
    }

    .kc-about-intro-grid,
    .kc-about-campus-grid,
    .kc-value-grid {
        grid-template-columns: 1fr;
    }

    .kc-about-image img {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .kc-about-hero {
        padding: 115px 0 55px;
    }

    .kc-about-hero-inner,
    .kc-campus-panel,
    .kc-message-card {
        padding: 24px;
    }

    .kc-about-stat-box {
        grid-template-columns: 1fr;
    }

    .kc-about-intro,
    .kc-about-values,
    .kc-about-campus,
    .kc-about-message {
        padding: 58px 0;
    }
}

.kc-journey-strip,
.kc-philosophy-section,
.kc-principal-note,
.kc-learning-flow,
.kc-campus-mood {
    margin-right: 82px;
}

/* Journey Strip */

.kc-journey-strip {
    padding: 75px 0;
    background: #fff;
}

.kc-journey-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 42px;
    align-items: center;
    border-left: 3px solid var(--green);
    padding-left: 34px;
}

.kc-journey-year {
    color: var(--green);
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -1px;
}

.kc-journey-wrap span,
.kc-philosophy-title span,
.kc-flow-head span,
.kc-mood-content span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kc-journey-wrap h2,
.kc-philosophy-title h2,
.kc-flow-head h2,
.kc-mood-content h2 {
    color: var(--green);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 550;
    line-height: 1.2;
    margin: 10px 0;
}

.kc-journey-wrap p,
.kc-philosophy-list p,
.kc-flow-step p,
.kc-mood-content p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* Philosophy */

.kc-philosophy-section {
    padding: 80px 0;
    background: #f7f5ed;
}

.kc-philosophy-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
}

.kc-philosophy-list {
    border-top: 1px solid rgba(0,0,0,0.12);
}

.kc-philosophy-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.kc-philosophy-list b {
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
}

/* Principal Note */

.kc-principal-note {
    padding: 85px 0;
    background: var(--green);
}

.kc-note-card {
    max-width: 780px;
    margin: auto;
    color: #fff;
    text-align: center;
}

.kc-note-mark {
    font-size: 90px;
    line-height: 0.7;
    color: var(--mint);
    font-family: Georgia, serif;
}

.kc-note-card p {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.45;
    font-weight: 300;
    margin: 20px 0 28px;
}

.kc-note-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: var(--mint);
}

.kc-note-author span {
    width: 44px;
    height: 1px;
    background: var(--mint);
}

/* Learning Flow */

.kc-learning-flow {
    padding: 85px 0;
    background: #fff;
}

.kc-flow-head {
    max-width: 620px;
    margin-bottom: 46px;
}

.kc-flow-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 0;
}

.kc-flow-line::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,75,47,0.22);
}

.kc-flow-step {
    position: relative;
    padding-right: 32px;
}

.kc-flow-step em {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(0,75,47,0.22);
    color: var(--green);
    font-style: normal;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.kc-flow-step h3 {
    color: var(--green);
    font-size: 22px;
    font-weight: 550;
}

/* Campus Mood Split */

.kc-campus-mood {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 520px;
    background: #eef3eb;
}

.kc-mood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kc-mood-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive */

@media (max-width: 991px) {
    .kc-journey-strip,
    .kc-philosophy-section,
    .kc-principal-note,
    .kc-learning-flow,
    .kc-campus-mood {
        margin-right: 64px;
    }

    .kc-journey-wrap,
    .kc-philosophy-grid,
    .kc-campus-mood {
        grid-template-columns: 1fr;
    }

    .kc-flow-line {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .kc-flow-line::before {
        display: none;
    }

    .kc-mood-content {
        padding: 55px 30px;
    }
}

@media (max-width: 576px) {
    .kc-journey-wrap {
        padding-left: 20px;
        gap: 18px;
    }

    .kc-philosophy-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .kc-flow-line {
        grid-template-columns: 1fr;
    }

    .kc-note-card p {
        font-size: 22px;
    }
}

.kc-belief-orbit,
.kc-signature-section,
.kc-experience-wall {
    margin-right: 82px;
}

.kc-belief-orbit {
    padding: 90px 0;
    background: #f7f5ed;
}

.kc-orbit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.kc-orbit-text span,
.kc-signature-card small,
.kc-wall-head span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kc-orbit-text h2,
.kc-signature-card h2,
.kc-wall-head h2 {
    color: var(--green);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 550;
    line-height: 1.16;
    margin: 12px 0;
}

.kc-orbit-text p,
.kc-signature-card p,
.kc-wall-card p {
    color: var(--muted);
    line-height: 1.75;
}

.kc-orbit-box {
    height: 430px;
    position: relative;
    border: 1px solid rgba(0,75,47,0.18);
    background:
        radial-gradient(circle at center, rgba(189,243,223,0.45), transparent 34%),
        #fff;
}

.kc-orbit-box::before {
    content: "";
    position: absolute;
    inset: 54px;
    border: 1px dashed rgba(0,75,47,0.28);
    border-radius: 50%;
}

.kc-orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    background: var(--green);
    color: var(--mint);
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.16);
}

.kc-orbit-item {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0,75,47,0.18);
    color: var(--green);
    padding: 12px 22px;
    font-weight: 600;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.item-1 { left: 50%; top: 42px; transform: translateX(-50%); }
.item-2 { right: 48px; top: 48%; }
.item-3 { left: 50%; bottom: 42px; transform: translateX(-50%); }
.item-4 { left: 48px; top: 48%; }

.kc-signature-section {
    padding: 100px 0;
    background:
        linear-gradient(120deg, rgba(0,54,34,0.88), rgba(0,75,47,0.62)),
        url('../images/hero-3.jpg') center/cover fixed;
}

.kc-signature-card {
    max-width: 760px;
    background: rgba(255,255,255,0.9);
    padding: 44px;
    border-left: 4px solid var(--mint);
}

.kc-experience-wall {
    padding: 90px 0;
    background: #fff;
}

.kc-wall-head {
    max-width: 650px;
    margin-bottom: 42px;
}

.kc-wall-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 18px;
}

.kc-wall-card {
    padding: 28px;
    background: #f8f7f2;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.35s ease;
}

.kc-wall-card:hover {
    background: var(--green);
    transform: translateY(-6px);
}

.kc-wall-card:hover h3,
.kc-wall-card:hover p {
    color: #fff;
}

.kc-wall-card h3 {
    color: var(--green);
    font-weight: 550;
}

.kc-wall-card.tall {
    grid-row: span 2;
    background:
        linear-gradient(180deg, rgba(0,54,34,0.15), rgba(0,54,34,0.65)),
        url('../images/campus.jpg') center/cover;
}

.kc-wall-card.tall h3,
.kc-wall-card.tall p {
    color: #fff;
}

.kc-wall-card.wide {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .kc-belief-orbit,
    .kc-signature-section,
    .kc-experience-wall {
        margin-right: 64px;
    }

    .kc-orbit-grid,
    .kc-wall-grid {
        grid-template-columns: 1fr;
    }

    .kc-wall-card.tall,
    .kc-wall-card.wide {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .kc-orbit-box {
        height: 360px;
    }

    .kc-orbit-item {
        padding: 9px 14px;
        font-size: 13px;
    }

    .kc-signature-card {
        padding: 28px;
    }
}

/* Living Campus Animated Section */

.kc-living-campus {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    margin-right: 82px;
    background:
        linear-gradient(135deg,#f7f6f0,#eef5ef);
}

/* Floating Shapes */

.kc-floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.5;
}

.shape-1 {
    width: 260px;
    height: 260px;
    background: rgba(189,243,223,0.55);
    top: -70px;
    left: -60px;
    animation: floatMove 9s ease-in-out infinite;
}

.shape-2 {
    width: 170px;
    height: 170px;
    background: rgba(0,75,47,0.10);
    right: 12%;
    top: 20%;
    animation: floatMove 11s ease-in-out infinite reverse;
}

.shape-3 {
    width: 140px;
    height: 140px;
    background: rgba(201,161,91,0.20);
    bottom: -40px;
    right: 20%;
    animation: floatMove 8s ease-in-out infinite;
}

/* Layout */

.kc-living-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text */

.kc-living-content span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
}

.kc-living-content h2 {
    color: var(--green);
    font-size: clamp(32px,4vw,52px);
    line-height: 1.1;
    font-weight: 550;
    margin: 14px 0 18px;
}

.kc-living-content p {
    color: var(--muted);
    line-height: 1.85;
    max-width: 520px;
}

/* Animated Points */

.kc-live-points {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kc-live-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--green);
    font-weight: 500;
    animation: fadeSlide 1s ease forwards;
}

.pulse-dot {
    width: 14px;
    height: 14px;
    background: var(--green);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(0,75,47,0.28);
    animation: pulseRing 2s infinite;
}

/* Motion Gallery */

.kc-motion-gallery {
    position: relative;
    height: 520px;
}

.kc-motion-card {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    background: #fff;
}

.kc-motion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s ease;
}

.kc-motion-card:hover img {
    transform: scale(1.08);
}

/* Card Positions */

.card-a {
    width: 320px;
    height: 380px;
    left: 0;
    top: 40px;
    animation: floatCard 7s ease-in-out infinite;
}

.card-b {
    width: 220px;
    height: 260px;
    right: 20px;
    top: 0;
    animation: floatCard 9s ease-in-out infinite reverse;
}

.card-c {
    width: 260px;
    height: 210px;
    right: 60px;
    bottom: 20px;
    animation: floatCard 8s ease-in-out infinite;
}

/* Animations */

@keyframes floatMove {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(18px) translateX(12px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-16px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */

@media (max-width:991px) {

    .kc-living-campus {
        margin-right: 64px;
    }

    .kc-living-grid {
        grid-template-columns: 1fr;
    }

    .kc-motion-gallery {
        height: 460px;
    }

    .card-a {
        width: 260px;
        height: 320px;
    }

    .card-b {
        width: 180px;
        height: 220px;
    }

    .card-c {
        width: 220px;
        height: 180px;
    }
}

@media (max-width:576px) {

    .kc-motion-gallery {
        height: 420px;
    }

    .card-a {
        width: 220px;
        height: 280px;
    }

    .card-b {
        width: 140px;
        height: 170px;
        right: 0;
    }

    .card-c {
        width: 170px;
        height: 140px;
        right: 20px;
    }

    .kc-living-campus {
        padding: 70px 0;
    }
}

/* Academics Page */

.kc-academic-hero,
.kc-stream-section,
.kc-learning-motion,
.kc-academic-timeline,
.kc-academic-support,
.kc-academic-cta {
    margin-right: 82px;
}

.kc-academic-hero {
    position: relative;
    overflow: hidden;
    padding: 155px 0 95px;
    background: linear-gradient(135deg, #f7f6f0, #eaf4ee);
}

.kc-academic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.55;
}

.orb-a {
    width: 260px;
    height: 260px;
    background: rgba(189,243,223,0.75);
    top: -80px;
    left: -70px;
    animation: academicFloat 9s ease-in-out infinite;
}

.orb-b {
    width: 190px;
    height: 190px;
    background: rgba(201,161,91,0.22);
    right: 12%;
    bottom: 30px;
    animation: academicFloat 11s ease-in-out infinite reverse;
}

.kc-academic-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.kc-academic-hero-text span,
.kc-stream-head span,
.kc-learning-copy span,
.kc-support-card span,
.kc-academic-cta span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kc-academic-hero-text h1,
.kc-stream-head h2,
.kc-learning-copy h2,
.kc-support-card h2,
.kc-academic-cta h2 {
    color: var(--green);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 550;
    margin: 12px 0 18px;
}

.kc-academic-hero-text p,
.kc-learning-copy p,
.kc-support-card p,
.kc-academic-cta p {
    color: var(--muted);
    line-height: 1.82;
    max-width: 560px;
}

.kc-academic-hero-text a,
.kc-academic-cta a {
    display: inline-block;
    margin-top: 16px;
    background: var(--green);
    color: #fff;
    padding: 13px 28px;
    font-weight: 700;
}

/* Ring Visual */

.kc-academic-hero-visual {
    height: 430px;
    position: relative;
}

.kc-subject-ring {
    height: 100%;
    position: relative;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,75,47,0.16);
    box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}

.kc-subject-ring::before,
.kc-subject-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0,75,47,0.24);
    animation: rotateRing 18s linear infinite;
}

.kc-subject-ring::before {
    inset: 55px;
}

.kc-subject-ring::after {
    inset: 105px;
    animation-direction: reverse;
}

.kc-ring-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
    background: var(--green);
    color: var(--mint);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 700;
    z-index: 3;
}

.kc-ring-item {
    position: absolute;
    z-index: 4;
    background: #fff;
    color: var(--green);
    border: 1px solid rgba(0,75,47,0.14);
    padding: 12px 22px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    font-weight: 600;
    animation: softBob 5s ease-in-out infinite;
}

.ri-1 { top: 38px; left: 50%; transform: translateX(-50%); }
.ri-2 { right: 42px; top: 45%; animation-delay: .5s; }
.ri-3 { bottom: 42px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.ri-4 { left: 42px; top: 45%; animation-delay: 1.5s; }

/* Streams */

.kc-stream-section {
    padding: 90px 0;
    background: #fff;
}

.kc-stream-head {
    max-width: 650px;
    margin-bottom: 42px;
}

.kc-stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kc-stream-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background: #f8f7f2;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.kc-stream-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(189,243,223,0.45);
    transition: 0.4s ease;
}

.kc-stream-card:hover {
    transform: translateY(-8px);
    background: #fff;
}

.kc-stream-card:hover::before {
    transform: scale(1.35);
}

.kc-stream-icon {
    width: 58px;
    height: 58px;
    background: var(--green);
    color: var(--mint);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.kc-stream-card h3 {
    color: var(--green);
    font-weight: 550;
    font-size: 24px;
}

.kc-stream-card p,
.kc-stream-card li {
    color: var(--muted);
    line-height: 1.7;
}

.kc-stream-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

/* Motion Section */

.kc-learning-motion {
    padding: 95px 0;
    background: var(--green);
    color: #fff;
    overflow: hidden;
}

.kc-learning-motion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kc-motion-stack {
    position: relative;
    height: 430px;
}

.kc-motion-tile {
    position: absolute;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 24px 34px;
    font-size: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    animation: floatTile 7s ease-in-out infinite;
}

.tile-1 { left: 20px; top: 25px; }
.tile-2 { right: 20px; top: 115px; animation-delay: .8s; }
.tile-3 { left: 70px; bottom: 115px; animation-delay: 1.4s; }
.tile-4 { right: 70px; bottom: 30px; animation-delay: 2s; }

.kc-learning-copy h2,
.kc-learning-copy p {
    color: #fff;
}

.kc-learning-copy span {
    color: var(--mint);
}

/* Timeline */

.kc-academic-timeline {
    padding: 90px 0;
    background: #fff;
}

.kc-academic-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 20px;
}

.kc-academic-flow::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(0,75,47,0.22);
}

.kc-flow-node {
    position: relative;
    background: #fff;
    padding: 0 22px 22px 0;
}

.kc-flow-node b {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 1px solid rgba(0,75,47,0.24);
    color: var(--green);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: pulseBox 2.8s ease-in-out infinite;
}

.kc-flow-node h3 {
    color: var(--green);
    font-size: 22px;
    font-weight: 550;
}

.kc-flow-node p {
    color: var(--muted);
    line-height: 1.7;
}

/* Support */

.kc-academic-support {
    padding: 90px 0;
    background: #f7f5ed;
}

.kc-support-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.kc-support-card {
    background: #fff;
    padding: 40px;
    border-left: 4px solid var(--green);
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.kc-support-list {
    display: grid;
    gap: 16px;
}

.kc-support-list div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    background: #fff;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.kc-support-list div:hover {
    transform: translateX(8px);
}

.kc-support-list i {
    width: 54px;
    height: 54px;
    background: var(--green);
    color: var(--mint);
    display: grid;
    place-items: center;
}

.kc-support-list h3 {
    color: var(--green);
    font-size: 20px;
    font-weight: 550;
    margin: 0 0 6px;
}

.kc-support-list p {
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}

/* CTA */

.kc-academic-cta {
    padding: 95px 0;
    text-align: center;
    background:
        linear-gradient(120deg, rgba(0,54,34,0.90), rgba(0,75,47,0.72)),
        url('../images/hero-2.jpg') center/cover;
}

.kc-academic-cta h2,
.kc-academic-cta p {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}

.kc-academic-cta span {
    color: var(--mint);
}

.kc-academic-cta a {
    background: var(--mint);
    color: var(--green);
}

/* Animations */

@keyframes academicFloat {
    0%, 100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(18px, -16px);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes softBob {
    0%, 100% {
        margin-top: 0;
    }
    50% {
        margin-top: -12px;
    }
}

@keyframes floatTile {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(-1deg);
    }
}

@keyframes pulseBox {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0,75,47,0.18);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0,75,47,0);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .kc-academic-hero,
    .kc-stream-section,
    .kc-learning-motion,
    .kc-academic-timeline,
    .kc-academic-support,
    .kc-academic-cta {
        margin-right: 64px;
    }

    .kc-academic-hero-grid,
    .kc-learning-motion-grid,
    .kc-support-grid {
        grid-template-columns: 1fr;
    }

    .kc-stream-grid,
    .kc-academic-flow {
        grid-template-columns: 1fr 1fr;
    }

    .kc-academic-flow::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .kc-academic-hero {
        padding: 115px 0 60px;
    }

    .kc-stream-grid,
    .kc-academic-flow {
        grid-template-columns: 1fr;
    }

    .kc-academic-hero-visual,
    .kc-motion-stack {
        height: 360px;
    }

    .kc-ring-item {
        padding: 9px 13px;
        font-size: 13px;
    }

    .kc-subject-ring::before {
        inset: 38px;
    }

    .kc-subject-ring::after {
        inset: 84px;
    }

    .kc-motion-tile {
        font-size: 15px;
        padding: 16px 20px;
    }
}


/* News & Events */

.kc-news-events {
    margin-right: 82px;
    padding: 90px 0;
    background: #fff;
}

.kc-news-event-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.kc-feature-news {
    background: linear-gradient(135deg, #3e152e, #560737), url(../images/campus.jpg) center / cover;
    padding: 38px;
    color: #fff;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.kc-feature-news span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}




.kc-feature-news h3 {
    font-size: clamp(30px, 4vw, 30px);
    font-weight: 500;
    line-height: 1.15;
    margin: 14px 0;
}

.kc-feature-news p {
    line-height: 1.75;
    opacity: 0.9;
}

.kc-feature-news a {
    color: var(--green);
    background: var(--mint);
    display: inline-block;
    width: fit-content;
    padding: 12px 24px;
    font-weight: 700;
    margin-top: 12px;
}

.kc-event-list {
    display: grid;
    gap: 16px;
}

.kc-event-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    align-items: center;
    background: #f8f7f2;
    border: 1px solid rgba(0,0,0,0.07);
    padding: 22px;
    transition: 0.35s ease;
}

.kc-event-item:hover {
    background: #fff;
    transform: translateX(2px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.07);
}

.kc-event-date {
    width: 74px;
    height: 74px;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
}

.kc-event-date b {
    font-size: 28px;
    line-height: 1;
    font-weight: 550;
}

.kc-event-date small {
    color: var(--mint);
    font-weight: 800;
    letter-spacing: 1px;
}

.kc-event-item h4 {
    color: var(--green);
    font-size: 18px;
    font-weight: 3000;
    margin-bottom: 6px;
}

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

/* Home Gallery */

.kc-home-gallery {
    margin-right: 82px;
    padding: 90px 0;
    background: #f7f5ed;
}

.kc-gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 38px;
}

.kc-gallery-head span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kc-gallery-head h2 {
    color: var(--green);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 550;
    line-height: 1.15;
    margin: 10px 0 0;
}

.kc-gallery-head a {
    color: var(--green);
    border: 1px solid rgba(0,75,47,0.22);
    padding: 12px 24px;
    font-weight: 700;
    background: #fff;
    white-space: nowrap;
    transition: 0.3s ease;
}

.kc-gallery-head a:hover {
    background: var(--green);
    color: #fff;
}

.kc-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 230px;
    gap: 16px;
}

.kc-gallery-box {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.kc-gallery-box.large {
    grid-row: span 2;
}

.kc-gallery-box.wide {
    grid-column: span 2;
}

.kc-gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.kc-gallery-box:hover img {
    transform: scale(1.08);
}

/* Responsive */

@media (max-width: 991px) {
    .kc-news-events,
    .kc-home-gallery {
        margin-right: 64px;
    }

    .kc-news-event-grid {
        grid-template-columns: 1fr;
    }

    .kc-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .kc-gallery-box.large,
    .kc-gallery-box.wide {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .kc-gallery-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .kc-gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .kc-event-item {
        grid-template-columns: 1fr;
    }
}

/* Modern Program Grid */

.kc-program-modern {
    margin-right: 82px;
    padding: 95px 0;
    background: #fff;
}

.kc-modern-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.kc-modern-program {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 26px 28px;
    border-radius: 1px;
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.kc-modern-program::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.28),
        rgba(255,255,255,0.08)
    );
    transform: translateX(-100%);
    transition: 0.8s ease;
}

.kc-modern-program:hover::before {
    transform: translateX(100%);
}

.kc-modern-program:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.kc-modern-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.kc-modern-program h3 {
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 4px;
    line-height: 1.2;
}

.kc-modern-program p {
    margin: 0;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.5;
}

/* Soft Colors */

.mint {
    background: #edf8f2;
}

.mint .kc-modern-icon {
    color: #62c39b;
}

.blush {
    background: #fff1f3;
}

.blush .kc-modern-icon {
    color: #f090a5;
}

.sage {
    background: #edf7f0;
}

.sage .kc-modern-icon {
    color: #74c28f;
}

.cream {
    background: #fff9ed;
}

.cream .kc-modern-icon {
    color: #e0b544;
}

.lavender {
    background: #f3efff;
}

.lavender .kc-modern-icon {
    color: #9d86ea;
}

.rose {
    background: #fff0f5;
}

.rose .kc-modern-icon {
    color: #eb6f92;
}

.purple {
    background: #f2efff;
}

.purple .kc-modern-icon {
    color: #8f82eb;
}

.sand {
    background: #fff8ec;
}

.sand .kc-modern-icon {
    color: #e0af4f;
}

.sky {
    background: #eef9ff;
}

.sky .kc-modern-icon {
    color: #63bfe8;
}

/* Responsive */

@media (max-width: 991px) {

    .kc-program-modern {
        margin-right: 64px;
    }

    .kc-modern-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

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

    .kc-modern-program {
        padding: 22px;
    }

    .kc-modern-program h3 {
        font-size: 20px;
    }
}

/* Perfect Centered Hexagon Gallery */

.kc-hex-gallery {
    margin-right: 82px;
    padding: 20px 0 90px;
    background:
        radial-gradient(circle at top center, rgba(243, 189, 239, 0.28), transparent 36%),
        linear-gradient(180deg, #f3efe1, #ede6d3);
    overflow: hidden;
}

.kc-hex-gallery .kc-gallery-title {
    max-width: 500px;
    margin: 0 auto 42px;
    text-align: center;
}

.kc-hex-gallery .kc-gallery-title span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.kc-hex-gallery .kc-gallery-title h2 {
    color: var(--green);
    font-size: clamp(30px, 4vw, 30px);
    font-weight: 500;
    margin: 8px 0 10px;
}

.kc-hex-gallery .kc-gallery-title p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.kc-hex-wrap {
    position: relative;
    width: 680px;
    height: 560px;
    margin: 0 auto;
}

.kc-hex-card {
    position: absolute;
    width: 190px;
    height: 218px;
    clip-path: polygon(
        50% 0%,
        96% 25%,
        96% 75%,
        50% 100%,
        4% 75%,
        4% 25%
        
    );
    overflow: hidden;
    display: block;
    background: #3e152e;
    box-shadow: 0 22px 50px rgba(0,0,0,0.16);
   
}

.kc-hex-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(200, 6, 6, 0.05),
        rgba(0,54,34,0.30),
        rgba(0,0,0,0.78)
    );
    z-index: 2;
}

.kc-hex-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}



.kc-hex-card:hover img {
    transform: scale(1.1);
}

.kc-hex-content {
    position: absolute;
    z-index: 4;
    left: 22px;
    right: 22px;
    bottom: 38px;
    text-align: center;
    color: #fff;
}

.kc-hex-content h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 8px;
}

.kc-hex-content span {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.78);
    color: #fff;
    padding: 5px 14px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Balanced Honeycomb Position */

.hex-1 {
    left: 55px;
    top: 20px;
}

.hex-2 {
    left: 245px;
    top: 0;
    animation-delay: .3s;
}

.hex-3 {
    left: 435px;
    top: 20px;
    animation-delay: .6s;
}

.hex-4 {
    left: 150px;
    top: 165px;
    animation-delay: .9s;
}

.hex-5 {
    left: 340px;
    top: 165px;
    animation-delay: 1.2s;
}

.hex-6 {
    left: 245px;
    top: 330px;
    animation-delay: 1.5s;
}

@keyframes hexFloat {
    0%, 100% {
        margin-top: 0;
    }

    50% {
        margin-top: -9px;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .kc-hex-gallery {
        margin-right: 64px;
        padding: 75px 0 85px;
    }

    .kc-hex-wrap {
        width: 100%;
        max-width: 620px;
        height: 520px;
    }

    .kc-hex-card {
        width: 175px;
        height: 202px;
    }

    .hex-1 {
        left: 45px;
        top: 20px;
    }

    .hex-2 {
        left: 222px;
        top: 0;
    }

    .hex-3 {
        left: 399px;
        top: 20px;
    }

    .hex-4 {
        left: 133px;
        top: 152px;
    }

    .hex-5 {
        left: 310px;
        top: 152px;
    }

    .hex-6 {
        left: 222px;
        top: 304px;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .kc-hex-gallery {
        padding: 60px 0 70px;
    }

    .kc-hex-gallery .kc-gallery-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .kc-hex-wrap {
        width: 100%;
        max-width: 360px;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin: 0 auto;
    }

    .kc-hex-card {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        height: 190px;
        animation: none;
    }

    .kc-hex-content {
        bottom: 32px;
    }

    .kc-hex-content h3 {
        font-size: 13px;
    }
}

/* Small Mobile */

@media (max-width: 420px) {
    .kc-hex-wrap {
        max-width: 300px;
        gap: 12px;
    }

    .kc-hex-card {
        height: 165px;
    }

    .kc-hex-content {
        left: 14px;
        right: 14px;
        bottom: 26px;
    }

    .kc-hex-content h3 {
        font-size: 12px;
    }

    .kc-hex-content span {
        font-size: 8px;
        padding: 4px 10px;
    }
}

/* Extra About Sections */

.kc-about-deep,
.kc-team-section,
.kc-infra-section,
.kc-affiliation-section,
.kc-achievement-section {
    margin-right: 82px;
    padding: 82px 0;
}

.kc-about-deep,
.kc-infra-section,
.kc-achievement-section {
    background: #fff;
}

.kc-team-section,
.kc-affiliation-section {
    background: #f7f5ed;
}

.kc-about-deep-grid,
.kc-infra-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.kc-about-deep-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.kc-about-deep-text span,
.kc-soft-heading span,
.kc-infra-text span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 2px;
}

.kc-about-deep-text h2,
.kc-soft-heading h2,
.kc-infra-text h2 {
    color: var(--green);
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 520;
    line-height: 1.18;
    margin: 12px 0 16px;
}

.kc-about-deep-text p,
.kc-soft-heading p,
.kc-infra-text p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15.5px;
}

.kc-soft-heading {
    max-width: 700px;
    margin-bottom: 38px;
}

/* Team */

.kc-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kc-team-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 15px 42px rgba(0,0,0,0.05);
}

.kc-team-card:hover {
    transform: translateY(-7px);
}

.kc-team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.kc-team-card div {
    padding: 24px;
}

.kc-team-card h3 {
    color: var(--green);
    font-size: 21px;
    font-weight: 520;
    margin-bottom: 8px;
}

.kc-team-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Infrastructure */

.kc-infra-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.kc-infra-list div {
    background: #f8f7f2;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 6px;
    padding: 15px 16px;
    color: var(--green);
    font-weight: 500;
}

.kc-infra-list i {
    color: var(--gold);
    margin-right: 8px;
}

.kc-infra-photos {
    position: relative;
    min-height: 440px;
}

.kc-infra-photos img {
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.infra-main {
    width: 78%;
    height: 390px;
}

.infra-small {
    width: 46%;
    height: 210px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 6px;
}

/* Certificates */

.kc-certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.kc-certificate-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 15px 42px rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.kc-certificate-card:hover {
    transform: translateY(-6px);
}

.kc-certificate-card i {
    color: var(--green);
    font-size: 30px;
    margin-bottom: 18px;
}

.kc-certificate-card h3 {
    color: var(--green);
    font-size: 21px;
    font-weight: 520;
}

.kc-certificate-card p {
    color: var(--muted);
    line-height: 1.7;
}

.kc-certificate-card a {
    display: inline-block;
    color: var(--green);
    border-bottom: 1px solid var(--green);
    font-weight: 600;
}

/* Achievements */

.kc-achievement-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,75,47,0.22);
    margin-top: 42px;
}

.kc-achievement-item {
    position: relative;
    padding: 34px 24px 0 0;
}

.kc-achievement-item::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    width: 13px;
    height: 13px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(0,75,47,0.10);
}

.kc-achievement-item b {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 1px;
}

.kc-achievement-item h3 {
    color: var(--green);
    font-size: 21px;
    font-weight: 520;
    margin: 12px 0 8px;
}

.kc-achievement-item p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .kc-about-deep,
    .kc-team-section,
    .kc-infra-section,
    .kc-affiliation-section,
    .kc-achievement-section {
        margin-right: 64px;
        padding: 68px 0;
    }

    .kc-about-deep-grid,
    .kc-infra-grid,
    .kc-team-grid,
    .kc-certificate-grid,
    .kc-achievement-line {
        grid-template-columns: 1fr;
    }

    .kc-achievement-line {
        border-top: none;
        gap: 18px;
    }

    .kc-achievement-item {
        border-left: 1px solid rgba(0,75,47,0.22);
        padding: 0 0 0 28px;
    }

    .kc-achievement-item::before {
        top: 0;
        left: -7px;
    }
}

@media (max-width: 576px) {
    .kc-infra-list {
        grid-template-columns: 1fr;
    }

    .kc-about-deep-img img,
    .infra-main {
        height: 310px;
        width: 100%;
    }

    .kc-infra-photos {
        min-height: 420px;
    }

    .infra-small {
        width: 68%;
        height: 185px;
    }

    .kc-team-card img {
        height: 210px;
    }
}