/* =========================================
   NSS ABOUT SECTION
========================================= */

.ktct-nss-about {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7fbfc;
}


/* Background Shapes */

.nss-about-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.nss-shape-one {
    width: 450px;
    height: 450px;
    top: -180px;
    left: -180px;
    background: rgba(33, 143, 209, 0.07);
}

.nss-shape-two {
    width: 400px;
    height: 400px;
    right: -170px;
    bottom: -170px;
    background: rgba(30, 104, 50, 0.07);
}


/* =========================================
   HEADING
========================================= */

.nss-section-heading {
    position: relative;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
    z-index: 2;
}

.nss-heading-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;

    color: #218fd1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.nss-heading-label span {
    display: block;
    width: 35px;
    height: 2px;
    background: #218fd1;
}

.nss-section-heading h2 {
    margin: 0 0 15px;
    color: #104c70;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.nss-section-heading h2 strong {
    color: #1e6832;
}

.nss-section-heading>p {
    max-width: 650px;
    margin: auto;
    color: #707070;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MAIN ABOUT WRAPPER
========================================= */

.nss-about-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}


/* =========================================
   VISUAL
========================================= */

.nss-about-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nss-image-box {
    position: relative;
    width: 390px;
    height: 430px;
    border-radius: 190px 190px 25px 25px;
    padding: 12px;
    background: linear-gradient(145deg,
            #218fd1,
            #1e6832);
    box-shadow: 0 25px 60px rgba(25, 90, 110, 0.18);
    transform: rotate(-3deg);
    animation: nssImageFloat 5s ease-in-out infinite;
}

.nss-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 180px 180px 18px 18px;
    background: linear-gradient(145deg,
            #e8f7fb,
            #ffffff);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #218fd1;
}

.nss-image-placeholder i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    color: #ffffff;
    font-size: 42px;

    background: linear-gradient(135deg,
            #218fd1,
            #1e6832);

    box-shadow: 0 15px 30px rgba(33, 143, 209, 0.2);
}

.nss-image-placeholder span {
    color: #124b70;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nss-image-placeholder small {
    margin-top: 8px;
    color: #777;
    font-size: 13px;
    letter-spacing: 1px;
}


/* Decorative Circle */

.nss-circle-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    right: -55px;
    top: 45px;

    border: 18px solid rgba(33, 143, 209, 0.15);
    border-radius: 50%;

    animation: nssRotate 12s linear infinite;
}


/* Dots */

.nss-dots-decoration {
    position: absolute;
    width: 110px;
    height: 110px;
    left: -50px;
    bottom: 35px;

    background-image: radial-gradient(#1e6832 2px,
            transparent 2px);

    background-size: 14px 14px;
    opacity: 0.35;
}


/* =========================================
   FLOATING CARD
========================================= */

.nss-floating-card {
    position: absolute;
    right: -25px;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px 22px;

    background: #ffffff;
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    animation: nssCardFloat 4s ease-in-out infinite;
}

.nss-floating-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    font-size: 20px;

    background: linear-gradient(135deg,
            #218fd1,
            #1e6832);
}

.nss-floating-card strong,
.nss-floating-card span {
    display: block;
}

.nss-floating-card strong {
    color: #124b70;
    font-size: 15px;
}

.nss-floating-card span {
    margin-top: 3px;
    color: #777;
    font-size: 12px;
}


/* =========================================
   CONTENT
========================================= */

.nss-about-content {
    position: relative;
}

.nss-small-title {
    display: inline-block;
    margin-bottom: 12px;

    color: #218fd1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nss-about-content h3 {
    max-width: 650px;
    margin: 0 0 20px;

    color: #124b70;
    font-size: 39px;
    line-height: 1.2;
}

.nss-about-content h3 span {
    color: #1e6832;
}

.nss-about-content>p {
    margin-bottom: 15px;

    color: #686868;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.nss-highlight-list {
    margin-top: 30px;
}

.nss-highlight-item {
    display: flex;
    gap: 17px;
    align-items: flex-start;

    margin-bottom: 20px;
    padding: 18px;

    border-radius: 12px;
    background: #ffffff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;
}

.nss-highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.nss-highlight-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #ffffff;
    font-size: 19px;

    background: linear-gradient(135deg,
            #218fd1,
            #1e6832);
}

.nss-highlight-item h4 {
    margin: 0 0 5px;

    color: #124b70;
    font-size: 17px;
}

.nss-highlight-item p {
    margin: 0;

    color: #777;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   VALUE CARDS
========================================= */

.nss-values-wrapper {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    margin-top: 90px;
    z-index: 2;
}

.nss-value-card {
    position: relative;

    padding: 38px 30px;

    background: #ffffff;
    border-radius: 18px;

    border: 1px solid #e9eeee;

    overflow: hidden;

    transition: all 0.4s ease;
}

.nss-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.nss-value-card-featured {
    background: linear-gradient(145deg,
            #218fd1,
            #1e6832);

    border: none;
}

.nss-value-number {
    position: absolute;
    right: 20px;
    top: 15px;

    color: rgba(33, 143, 209, 0.08);

    font-size: 65px;
    line-height: 1;
    font-weight: 800;
}

.nss-value-card-featured .nss-value-number {
    color: rgba(255, 255, 255, 0.12);
}

.nss-value-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #ffffff;
    font-size: 22px;

    background: linear-gradient(135deg,
            #218fd1,
            #1e6832);
}

.nss-value-card-featured .nss-value-icon {
    background: rgba(255, 255, 255, 0.18);
}

.nss-value-card h3 {
    position: relative;

    margin-bottom: 12px;

    color: #124b70;
    font-size: 22px;
}

.nss-value-card-featured h3 {
    color: #ffffff;
}

.nss-value-card p {
    position: relative;

    margin: 0;

    color: #707070;
    line-height: 1.7;
    font-size: 14px;
}

.nss-value-card-featured p {
    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes nssImageFloat {

    0%,
    100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(-3deg) translateY(-12px);
    }
}

@keyframes nssCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes nssRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .nss-about-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .nss-image-box {
        width: 330px;
        height: 390px;
    }

    .nss-about-content h3 {
        font-size: 34px;
    }

    .nss-floating-card {
        right: -5px;
    }
}


@media (max-width: 991px) {

    .ktct-nss-about {
        padding: 80px 20px;
    }

    .nss-about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nss-about-visual {
        min-height: 480px;
    }

    .nss-about-content {
        max-width: 750px;
        margin: auto;
    }

    .nss-values-wrapper {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 600px) {

    .ktct-nss-about {
        padding: 60px 15px;
    }

    .nss-section-heading {
        margin-bottom: 45px;
    }

    .nss-section-heading h2 {
        font-size: 32px;
    }

    .nss-heading-label {
        font-size: 11px;
    }

    .nss-about-visual {
        min-height: 390px;
    }

    .nss-image-box {
        width: 280px;
        height: 350px;
    }

    .nss-image-placeholder i {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .nss-image-placeholder span {
        font-size: 28px;
    }

    .nss-floating-card {
        right: 0;
        bottom: 15px;
        padding: 12px 15px;
    }

    .nss-floating-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .nss-about-content h3 {
        font-size: 30px;
    }

    .nss-highlight-item {
        padding: 15px;
    }

    .nss-values-wrapper {
        margin-top: 60px;
    }

    .nss-value-card {
        padding: 30px 25px;
    }

}


/* =========================================
   NSS GALLERY SECTION
========================================= */

.ktct-nss-gallery-section {
    padding: 45px 0;
    background: aliceblue;
    position: relative;
}

/* Heading */

.ktct-nss-gallery-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.ktct-nss-gallery-heading .h2.title {
    margin: 10px 0 18px;
}

.ktct-nss-gallery-heading p {
    color: #000000d9;
    font-size: 16px;
    line-height: 1.8;
}

.ktct-nss-gallery-heading .h2.title span {
    background-image: var(--gradient-1);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-family-style3);
    display: inline-block;
    animation: titleTextShine 5s ease-in-out infinite;
}

/* Grid */

.ktct-nss-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: white;
    padding: 18px;
    border-radius: 10px;
}


/* Item */

.ktct-nss-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background: #e0ecf4;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ktct-nss-gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.ktct-nss-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.ktct-nss-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ktct-nss-gallery-item:hover .ktct-nss-gallery-link img {
    transform: scale(1.08);
}


/* Overlay */

.ktct-nss-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(16, 76, 112, 0.65),
            rgba(30, 104, 50, 0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ktct-nss-gallery-item:hover .ktct-nss-gallery-overlay {
    opacity: 1;
}

.ktct-nss-gallery-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 20px;
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

.ktct-nss-gallery-item:hover .ktct-nss-gallery-icon {
    transform: scale(1);
}


/* =========================================
   LIGHTBOX
========================================= */

.ktct-nss-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 20, 35, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ktct-nss-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

body.ktct-lightbox-open {
    overflow: hidden;
}


/* Inner */

.ktct-nss-lightbox-inner {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Image */

.ktct-nss-lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease;
}


/* Close Button */

.ktct-nss-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
    z-index: 2;
}

.ktct-nss-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.75);
}


/* Prev / Next Buttons */

.ktct-nss-lightbox-prev,
.ktct-nss-lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
    z-index: 2;
}

.ktct-nss-lightbox-prev {
    left: 20px;
}

.ktct-nss-lightbox-next {
    right: 20px;
}

.ktct-nss-lightbox-prev:hover,
.ktct-nss-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.7);
}


/* Counter */

.ktct-nss-lightbox-counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 18px;
    border-radius: 30px;
}


/* =========================================
   GALLERY RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .ktct-nss-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {

    .ktct-nss-gallery-section {
        padding: 70px 0;
    }

    .ktct-nss-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ktct-nss-lightbox-prev {
        left: 8px;
    }

    .ktct-nss-lightbox-next {
        right: 8px;
    }

}

@media (max-width: 480px) {

    .ktct-nss-gallery-section {
        padding: 55px 0;
    }

    .ktct-nss-gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}


.ktct-outreach-page {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.ktct-outreach-intro {
    padding: 80px 20px;
    text-align: center;
    background: #f7fafc;
}

.ktct-outreach-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.ktct-outreach-intro h1 {
    font-size: 55px;
    line-height: 1.15;
    color: #123f5d;
    margin: 0;
}

.ktct-outreach-intro h1 span {
    display: block;
    color: #1e6832;
}

.ktct-outreach-intro p {
    margin: 20px auto 0;
    max-width: 700px;
    color: #6b7280;
    line-height: 1.8;
}

.ktct-outreach-featured {
    padding: 0 20px 90px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

.ktct-outreach-featured-box {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ktct-outreach-featured-image {
    position: relative;
    min-height: 430px;
}

.ktct-outreach-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.ktct-outreach-featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ktct-outreach-date {
    color: #218fd1;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ktct-outreach-featured-content h2 {
    color: #123f5d;
    font-size: 36px;
    line-height: 1.25;
    margin: 0 0 20px;
}

.ktct-outreach-featured-text {
    color: #687386;
    line-height: 1.8;
}

.ktct-outreach-view-btn {
    width: fit-content;
    margin-top: 25px;
    padding: 14px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #218fd1, #1e6832);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.ktct-outreach-programmes {
    padding: 60px 0px;
    background: #f7fafc;
}

.ktct-outreach-section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.ktct-outreach-section-heading h2 {
    color: #123f5d;
    font-size: 45px;
    line-height: 1.2;
    margin: 0;
}

.ktct-outreach-section-heading h2 span {
    background-image: var(--gradient-1);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-family-style3);
    display: inline-block;
    animation: titleTextShine 5s ease-in-out infinite;
}

.ktct-outreach-section-heading p {
    color: black;
    line-height: 1.8;
    margin-top: 20px;
    /* font-size: 16px; */
}

.ktct-outreach-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ktct-outreach-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.ktct-outreach-card:hover {
    transform: translateY(-8px);
}

.ktct-outreach-card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.ktct-outreach-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ktct-outreach-card:hover .ktct-outreach-card-image img {
    transform: scale(1.07);
}

.ktct-outreach-card-date {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: linear-gradient(280deg, #218fd1 0%, rgb(30 104 50) 50%, #1e6832 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 36px;
    font-size: 12px;
    font-weight: 600;
}

.ktct-outreach-card-content {
    padding: 25px;
}

.ktct-outreach-card-label {
    color: #218fd1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.ktct-outreach-card-label span {
    width: 20px;
    height: 2px;
    background: #1e6832;
    display: inline-block;
    margin-right: 7px;
    vertical-align: middle;
}

.ktct-outreach-card h3 {
    color: #000000bf;
    font-size: 21px;
    line-height: 1.35;
    margin: 0 0 12px;
    font-weight: 600;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.ktct-outreach-card-excerpt {
    color: #000000e3;
    font-size: 15px;
    line-height: 1.7;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    min-height: calc(15px * 1.7 * 2);
}

.ktct-outreach-readmore {
    margin-top: 5px;
    display: inline-flex;
    gap: 10px;
    color: #1e6832 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
}

.ktct-outreach-closing {
    padding: 70px 20px;
    background: linear-gradient(135deg, #218fd1, #1e6832);
}

.ktct-outreach-closing-inner {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ktct-outreach-closing-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ktct-outreach-closing-icon i {
    color: #ffffff;
    font-size: 32px;
}

.ktct-outreach-closing .core-values-tag {
    color: #ffffff;
}

.ktct-outreach-closing .core-values-tag span {
    background: #ffffff;
}

.ktct-outreach-closing h2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.3;
    margin: 0;
}

.ktct-outreach-closing h2 span {
    display: block;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .ktct-outreach-featured-box {
        grid-template-columns: 1fr;
    }

    .ktct-outreach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .ktct-outreach-intro {
        padding: 60px 20px 90px;
    }

    .ktct-outreach-intro h1 {
        font-size: 38px;
    }

    .ktct-outreach-featured {
        padding: 0 15px 70px;
    }

    .ktct-outreach-featured-image,
    .ktct-outreach-featured-image img {
        min-height: 270px;
        height: 270px;
    }

    .ktct-outreach-featured-content {
        padding: 30px 25px;
    }

    .ktct-outreach-featured-content h2 {
        font-size: 28px;
    }

    .ktct-outreach-programmes {
        padding: 60px 15px;
    }

    .ktct-outreach-grid {
        grid-template-columns: 1fr;
    }

    .ktct-outreach-closing-inner {
        flex-direction: column;
        text-align: center;
    }

    .ktct-outreach-closing h2 {
        font-size: 25px;
    }

}

/* =========================================================
   OUTREACH DETAILS PAGE
========================================================= */

.ktct-outreach-details {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.ktct-outreach-detail-hero {
    padding: 90px 20px 110px;
    background: linear-gradient(135deg,
            #218fd1 0%,
            #1e6832 100%);
    position: relative;
    overflow: hidden;
}

.ktct-outreach-detail-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.ktct-outreach-detail-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    left: -100px;
    bottom: -140px;
}

.ktct-outreach-detail-hero-content {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.ktct-outreach-detail-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ktct-outreach-detail-label span {
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.ktct-outreach-detail-hero h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.15;
    margin: 0 auto 25px;
    max-width: 900px;
}

.ktct-outreach-detail-meta {
    display: flex;
    justify-content: center;
}

.ktct-outreach-detail-meta span {
    color: #ffffff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   CONTENT
========================================================= */

.ktct-outreach-detail-content {
    padding: 80px 20px;
}

.ktct-outreach-detail-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 50px;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.ktct-outreach-detail-featured-image {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
}

.ktct-outreach-detail-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ktct-outreach-detail-description {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
}

.ktct-outreach-detail-description h2,
.ktct-outreach-detail-description h3 {
    color: #123f5d;
}

.ktct-outreach-detail-description p {
    margin-bottom: 20px;
    color: #000000d4;
    text-align: justify;
    font-size: 17px;
}

.ktct-outreach-detail-description img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   GALLERY
========================================================= */

.ktct-outreach-detail-gallery {
    margin-top: 40px;
}

.ktct-outreach-detail-gallery-heading .core-values-tag {
    justify-content: flex-start;
}

.ktct-outreach-detail-gallery-heading {
    margin-bottom: 30px;
}

.ktct-outreach-detail-gallery-heading h2 {
    font-size: 40px;
    margin: 12px 0 0;
    position: relative;
    font-family: var(--sec-title-font-family);
    font-weight: var(--sec-title-font-weight);
    color: var(--sec-title-color);
    line-height: 1.125;
    margin-bottom: 0;
    text-transform: capitalize;
}

.ktct-outreach-detail-gallery-heading h2 span {
    background-image: var(--gradient-1);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-family-style3);
    display: inline-block;
    animation: titleTextShine 5s ease-in-out infinite;
}

.ktct-outreach-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ktct-outreach-detail-gallery-item {
    height: 230px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    display: block;
}

.ktct-outreach-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ktct-outreach-detail-gallery-item:hover img {
    transform: scale(1.08);
}

.ktct-outreach-detail-gallery-item span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 63, 93, 0.55);
    color: #ffffff;
    font-size: 24px;
    opacity: 0;
    transition: 0.3s ease;
}

.ktct-outreach-detail-gallery-item:hover span {
    opacity: 1;
}


/* =========================================================
   SIDEBAR
========================================================= */

/* Allow position: sticky to work (theme's .page-wrapper has overflow-x: hidden which blocks sticky) */
.page-wrapper:has(.ktct-outreach-details) {
    overflow-x: clip !important;
}

.ktct-outreach-detail-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
    z-index: 10;
}

.ktct-outreach-info-card {
    padding: 30px;
    border-radius: 20px;
    background: #f7fafc;
    border: 1px solid #e6edf2;
}

.ktct-outreach-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #218fd1,
            #1e6832);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ktct-outreach-info-icon i {
    color: #ffffff;
    font-size: 24px;
}

.ktct-outreach-info-card h3 {
    color: #123f5d;
    font-size: 22px;
    margin: 0;
}

.ktct-outreach-info-line {
    width: 45px;
    height: 3px;
    background: #218fd1;
    margin: 15px 0 25px;
}

.ktct-outreach-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.ktct-outreach-info-item>i {
    color: #218fd1;
    font-size: 18px;
    margin-top: 4px;
}

.ktct-outreach-info-item small {
    display: block;
    color: #000000d1;
    font-size: 14px;
    margin-bottom: 4px;
}

.ktct-outreach-info-item strong {
    display: block;
    color: #123f5d;
    font-size: 14px;
}

.ktct-outreach-back-btn {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    background: linear-gradient(90deg, #218fd1 0%, rgb(30 104 50) 50%, #218fd1 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.ktct-outreach-detail-title h1 {
    font-size: 50px;
    background-image: var(--gradient-1);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-family-style3);
    display: inline-block;
    animation: titleTextShine 5s ease-in-out infinite;
    margin-bottom: 8px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .ktct-outreach-detail-layout {
        grid-template-columns: 1fr;
    }

    .ktct-outreach-detail-sidebar {
        position: static;
    }

}


@media (max-width: 767px) {

    .ktct-outreach-detail-hero {
        padding: 60px 20px 80px;
    }

    .ktct-outreach-detail-hero h1 {
        font-size: 35px;
    }

    .ktct-outreach-detail-content {
        padding: 50px 15px;
    }

    .ktct-outreach-detail-featured-image img {
        height: 280px;
    }

    .ktct-outreach-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ktct-outreach-detail-gallery-item {
        height: 170px;
    }

}


@media (max-width: 480px) {

    .ktct-outreach-detail-gallery-grid {
        grid-template-columns: 1fr;
    }

}