﻿/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    background-color: #f4f6f9;
    color: #222;
}
/* RESET */
html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* SECTION */
.section {
    padding: 80px 0;
}


/* ===== FULL WIDTH BACKGROUND ===== */
.bg-slide {
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(135deg, #dff7ef, #d0f5e9);
}

/* DIFFERENT COLORS */
.carousel-item:nth-child(2) .bg-slide {
    background: linear-gradient(135deg, #fff5f5, #ffecec);
}

.carousel-item:nth-child(3) .bg-slide {
    background: linear-gradient(135deg, #f4fff8, #eafff1);
}

/* ===== FLEX LAYOUT ===== */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== TEXT ===== */
.hero-text {
    flex: 1;
    max-width: 550px;
}

    .hero-text h1 {
        font-size: 38px;
        font-weight: 700;
        color: #0d6efd;
    }

    .hero-text p {
        margin-top: 15px;
        font-size: 16px;
        color: #444;
    }

/* ===== BUTTON ===== */
.hero-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    background: #0d6efd;
    color: #fff;
    transition: 0.3s;
}

    .hero-btn:hover {
        background: #084298;
    }

/* ===== IMAGE WRAPPER ===== */
.hero-image-wrap {
    flex: 1; /* 🔥 take full available space */
    /*max-width: 600px;*/
    border: 8px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ===== IMAGE FIX (MOST IMPORTANT) ===== */
.hero-image {
    width: 100%; /* 🔥 FULL WIDTH */
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: block;
}

/* ACTIVE ANIMATION */
.carousel-item.active .hero-image {
    transform: scale(1.03);
}

/* ===== INDICATORS ===== */
.carousel-indicators {
    bottom: 15px;
}

    .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #bbb;
    }

    .carousel-indicators .active {
        background: #0d6efd;
    }

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-wrap {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        height: 260px;
    }
}

/* FIX MISSING CLASSES */

/* TEXT */
.section-text {
    color: #555;
    line-height: 1.7;
}

/* HERO BUTTON BLOCK */
.hero-btn-block {
    display: inline-block; /* 🔥 FIX */
    width: auto; /* 🔥 FIX */
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* IMAGE */
.section-img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .section-img:hover {
        transform: scale(1.03);
    }

/* CARD HOVER */
.card-hover {
    transition: 0.3s;
}

    .card-hover:hover {
        transform: translateY(-8px);
    }

/* FADE ANIMATION FIX */
.fade-in {
    opacity: 1 !important; /* IMPORTANT FIX */
}

/* ===== SECTION BASE ===== */
.section-work-premium {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* FULL WIDTH SECTION */
.work-item {
    width: 100%;
    padding: 80px 0;
}

    /* GRADIENT BACKGROUNDS */
    .work-item:nth-of-type(1) {
        background: linear-gradient(135deg, #f5f7ff, #eef2ff);
    }

    .work-item:nth-of-type(2) {
        background: linear-gradient(135deg, #fff5f5, #ffecec);
    }

    .work-item:nth-of-type(3) {
        background: linear-gradient(135deg, #f4fff8, #eafff1);
    }

    .work-item:nth-of-type(4) {
        background: linear-gradient(135deg, #fffaf4, #fff1e6);
    }

    .work-item:nth-of-type(5) {
        background: linear-gradient(135deg, #f9f4ff, #efe6ff);
    }

    /* TEXT */
    .work-item h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .work-item p {
        color: #444;
        line-height: 1.7;
    }

/* BUTTON */
.work-link {
    display: inline-block;
    margin-top: 15px;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

    .work-link:hover {
        text-decoration: underline;
    }

/* IMAGE */
.work-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

    .work-img:hover {
        transform: scale(1.03);
    }

/* RESPONSIVE */
@media (max-width: 768px) {

    .work-item {
        padding: 50px 0;
    }

        .work-item h3 {
            font-size: 22px;
        }

        .work-item .row {
            text-align: center;
        }
}

/* TEXT */
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #198754;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
}

/* SECTION */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcdee5, #eef2ff);
}

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-sub {
    color: #555;
    font-size: 15px;
}

/* CARD */
.impact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

    /* NUMBER */
    .impact-card h3 {
        font-size: 34px;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 10px;
    }

    /* TEXT */
    .impact-card p {
        color: #444;
        font-size: 14px;
    }

    /* HOVER EFFECT */
    .impact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    /* OPTIONAL ICON STYLE (future use) */
    .impact-card i {
        font-size: 30px;
        margin-bottom: 10px;
        color: #0d6efd;
    }

    /* DEFAULT */
    .impact-card h3 {
        font-size: 34px;
        font-weight: 700;
    }

/* 1 - TRUST (BLUE) */
.impact-1 h3 {
    color: #0d6efd;
}

/* 2 - HEALTH / LIFE (GREEN) */
.impact-2 h3 {
    color: #198754;
}

/* 3 - CELEBRATION / SOCIAL (ORANGE) */
.impact-3 h3 {
    color: #fd7e14;
}

/* 4 - EXPERIENCE / YEARS (PURPLE) */
.impact-4 h3 {
    color: #6f42c1;
}

/* MOBILE */
@media (max-width: 768px) {

    .impact-card {
        padding: 25px 15px;
    }

        .impact-card h3 {
            font-size: 26px;
        }
}

/* ANIMATION */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

    [data-animate].active {
        opacity: 1;
        transform: translateY(0);
    }

/* STORY */
/* SECTION */
.section-story-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
}

/* IMAGE BOX */
.story-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

    .story-img-box img {
        width: 100%;
        transition: transform 0.5s ease;
    }

    .story-img-box:hover img {
        transform: scale(1.05);
    }

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
}

/* TEXT */
.section-text {
    color: #444;
    line-height: 1.8;
}

/* 🔥 IMPACT BOX (NEW) */
.story-impact-box {
    background: linear-gradient(135deg, #fff5f5, #ffecec);
    padding: 15px 20px;
    border-left: 4px solid #dc3545;
    border-radius: 10px;
    font-size: 15px;
}

    .story-impact-box strong {
        display: block;
        color: #dc3545;
        font-size: 16px;
    }

    .story-impact-box span {
        font-size: 13px;
        color: #666;
    }

/* QUOTE */
.story-highlight {
    background: #ffffff;
    padding: 15px 20px;
    border-left: 4px solid #0d6efd;
    border-radius: 10px;
    font-style: italic;
    color: #333;
}

/* BUTTON */
.btn-success {
    border-radius: 30px;
    padding: 10px 25px;
}

/* MOBILE */
@media (max-width: 768px) {

    .section-title {
        font-size: 24px;
    }

    .section-text {
        text-align: center;
    }

    .story-impact-box,
    .story-highlight {
        text-align: center;
    }
}


.founder-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.founder-img {
    width: 220px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.founder-name {
    font-size: 20px;
    font-weight: 700;
}

.founder-role {
    font-size: 14px;
    color: #666;
}

.mother-box {
    text-align: center;
}

.mother-img {
    width: 240px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.mother-text {
    font-size: 12px;
    color: #555;
    margin-top: 8px;
}

.section-text {
    color: #444;
    line-height: 1.8;
}

/* SECTION */
.section-media-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcdee5, #eef2ff);
}

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-desc {
    color: #555;
    font-size: 15px;
}

/* CARD */
/* SECTION */
.awards-ecg-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

/* CARD */
.award-ecg-card {
    position: relative;
    background: #fff;
    padding: 40px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s;
}

/* LARGE ICON */
.award-big-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

/* ECG LINE */
.ecg-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
    animation: ecgMove 2s linear infinite;
}

/* ECG ANIMATION */
@keyframes ecgMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* TEXT */
.award-ecg-card h5 {
    font-size: 16px;
    font-weight: 700;
}

.award-ecg-card p {
    font-size: 13px;
    color: #555;
}

/* HOVER */
.award-ecg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* COLOR THEMES */
.award-blue {
    border-top: 4px solid #0d6efd;
}

.award-green {
    border-top: 4px solid #198754;
}

.award-orange {
    border-top: 4px solid #fd7e14;
}

.award-purple {
    border-top: 4px solid #6f42c1;
}
/* HERO */
.media-hero {
    height: 45vh;
    background: url('../images/slides/slide-1.jpeg') center/cover no-repeat;
    position: relative;
}

    .media-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.65);
    }

    .media-hero .container {
        position: relative;
        z-index: 2;
    }

/* GRID IMAGE BOX */
.media-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ICON BASE */
.media-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* 🎨 ICON COLORS */

/* 1 - BLUE */
.media-1 .media-icon {
    background: linear-gradient(135deg, #e7f0ff, #d0e2ff);
    color: #0d6efd;
}

/* 2 - GREEN */
.media-2 .media-icon {
    background: linear-gradient(135deg, #e6f7ee, #ccf2dd);
    color: #198754;
}

/* 3 - ORANGE */
.media-3 .media-icon {
    background: linear-gradient(135deg, #fff3e6, #ffe0cc);
    color: #fd7e14;
}

/* 4 - PURPLE */
.media-4 .media-icon {
    background: linear-gradient(135deg, #f3e8ff, #e0ccff);
    color: #6f42c1;
}

/* TEXT */
.media-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.media-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER */
.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.media-card-paper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 8px;
    background-color: #fff;
}

/* IMAGE FIT */
.media-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 IMPORTANT */
    transition: 0.4s;
}

/* HOVER ZOOM */
.media-card-paper:hover .media-img {
    transform: scale(1.1);
}

/* =======================================================
   MEDIA OVERLAY
======================================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.45), rgba(0,0,0,.15) );
    opacity: 0;
    transition: .35s ease;
    cursor: pointer;
    z-index: 2;
}

.media-card-paper:hover .gallery-overlay {
    opacity: 1;
}



/* NEWS */
.news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: 0.3s;
}

    .news-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .news-card:hover {
        transform: translateY(-10px);
    }

.news-content {
    padding: 20px;
}

/* FEATURE */
.featured-img {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* AWARDS */
.award-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* GALLERY */
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

/* RELATED */
.related-link {
    display: block;
    padding: 20px;
    background: #198754;
    color: #fff;
    border-radius: 10px;
    margin: 10px;
}

/* NAV */
.work-nav {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 12px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .work-nav a {
        margin: 0 12px;
        font-weight: 600;
        color: #198754;
    }

/* HERO */
.work-hero {
    height: 90vh;
    background: url('../images/slides/slide-2.jpeg') center/cover no-repeat;
    position: relative;
}

    .work-hero::before {
        content: "";
        inset: 0;
        position: absolute;
        background: rgba(0,0,0,0.65);
    }

/* IMAGE */
.main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

/* CARD */
.card-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* SPLIT */
.split-box {
    display: flex;
    gap: 30px;
    align-items: center;
}

.split-img img {
    width: 100%;
    border-radius: 15px;
}

/* BIG CARD */
.big-card {
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.work-hero {
    height: 90vh;
    background: url('../images/slides/slide-2.jpeg') center/cover no-repeat;
    position: relative;
}

    .work-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.65);
    }

    .work-hero .container {
        position: relative;
        z-index: 2;
    }

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-btn {
    background: linear-gradient(45deg,#198754,#28a745);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
}

/* SECTION */
.work-section {
    padding: 80px 0;
}

/* IMAGE BOX */
.image-box {
    background: #fff;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* MAIN IMAGE */
.main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

/* THUMB */
.thumb-row {
    display: flex;
    gap: 10px;
}

.thumb-img {
    width: 32%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

    .thumb-img:hover {
        opacity: 1;
        transform: scale(1.05);
    }

/* TEXT */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #198754;
}

.section-text {
    color: #555;
    line-height: 1.7;
}

/* BUTTON */
.work-btn {
    background: linear-gradient(45deg, #198754, #28a745);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .work-btn:hover {
        background: linear-gradient(45deg, #157347, #1e7e34);
        transform: translateY(-2px);
    }

/* STEPS */
.work-steps {
    list-style: none;
    padding: 0;
}

    .work-steps li {
        margin-bottom: 8px;
    }

/* ANIMATION */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

    [data-animate].active {
        opacity: 1;
        transform: translateY(0);
    }

/* HERO */
.inner-hero {
    height: 40vh;
    background: url('../images/slides/slide-2.jpeg') center/cover no-repeat;
    position: relative;
}

    .inner-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

    .inner-hero .container {
        position: relative;
        z-index: 2;
    }

/* BUTTON */
.gallery-btn {
    margin: 5px;
    border-radius: 25px;
    background: #eee;
    padding: 8px 18px;
}

    .gallery-btn.active,
    .gallery-btn:hover {
        background: #198754;
        color: #fff;
    }

/* GRID BOX */
.gallery-box {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    cursor: pointer;
}

    .gallery-box img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.4s;
    }

    .gallery-box:hover img {
        transform: scale(1.1);
    }

.gallery-item {
    transition: all 0.3s ease;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    #lightbox img {
        max-width: 90%;
        max-height: 80%;
    }


.contact-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-info-box {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-success {
    border-radius: 30px;
}


/* IMAGE */
.main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #198754;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 5px;
        width: 15px;
        height: 15px;
        background: #198754;
        border-radius: 50%;
    }

/* TEXT */
.section-text {
    color: #555;
    line-height: 1.7;
}


/* SECTION */
.vm-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

/* CARD BASE */
.vm-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

/* ICON */
.vm-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* SUB TEXT */
.vm-sub {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

/* TEXT */
.vm-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* HOVER */
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* 🎨 COLOR VARIANTS */

/* Vision */
.vm-vision .vm-icon {
    background: #e7f0ff;
    color: #0d6efd;
}

/* Mission */
.vm-mission .vm-icon {
    background: #e6f7ee;
    color: #198754;
}

/* Aim */
.vm-aim .vm-icon {
    background: #fff3e6;
    color: #fd7e14;
}

/* Future */
.vm-future .vm-icon {
    background: #f3e8ff;
    color: #6f42c1;
}


/* BOX */
.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* LINKS */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-links li {
        margin-bottom: 10px;
    }

    /* LINK STYLE */
    .sidebar-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 14px;
        border-radius: 10px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        font-weight: 500;
        background: #f8f9ff;
        transition: 0.3s;
    }

        /* ICON */
        .sidebar-links a i {
            font-style: normal;
            font-size: 14px;
        }

        /* 🔥 HOVER EFFECT */
        .sidebar-links a:hover {
            background: #0d6efd;
            color: #fff;
            transform: translateX(5px);
        }

        /* ACTIVE LINK (OPTIONAL) */
        .sidebar-links a.active {
            background: #0d6efd;
            color: #fff;
        }

/* ACHIEVEMENTS */
.sidebar-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-achievements li {
        font-size: 14px;
        margin-bottom: 10px;
        color: #444;
    }

        /* OPTIONAL HOVER */
        .sidebar-achievements li:hover {
            color: #0d6efd;
        }

/* TITLE */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links li {
    margin-bottom: 8px;
}

/* LINK STYLE */
.footer-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
    transition: 0.3s;
}

    /* ICON DOT */
    .footer-links a::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #0d6efd;
    }

    /* HOVER EFFECT */
    .footer-links a:hover {
        color: #fff;
        padding-left: 22px;
    }

    /* ACTIVE (OPTIONAL) */
    .footer-links a.active {
        color: #0d6efd;
        font-weight: 600;
    }

.journey-section {
    padding: 90px 0;
    background: #f5f7fb;
}

.journey-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.journey-person {
    text-align: center;
}

    .journey-person img {
        width: 100%;
        border-radius: 24px;
        object-fit: cover;
    }

    .journey-person h4,
    .journey-person h5 {
        margin-top: 18px;
        font-weight: 700;
        color: #111827;
    }

    .journey-person span,
    .journey-person small {
        color: #6b7280;
    }

.journey-content h2 {
    color: #15803d;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.3;
}

.journey-description {
    color: #374151;
    line-height: 2.2;
    font-size: 18px;
}

    .journey-description p {
        margin-bottom: 28px;
    }

@media(max-width:991px) {
    .journey-content h2;

{
    font-size: 36px;
}

.journey-description {
    font-size: 16px;
}

}

/* =======================================================   GALLERY SECTION======================================================= */
.gallery-section {
    padding: 70px 0;
    background: #f6f8fb;
}
/* =======================================================   CATEGORY======================================================= */

.gallery-category-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 55px;
}
/* BUTTON */

.gallery-btn {
    border: 0;
    background: #f1f1f1;
    color: #111827;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    transition: .3s ease;
}

    .gallery-btn:hover {
        background: #15803d;
        color: #fff;
    }

    .gallery-btn.active {
        background: #15803d;
        color: #fff;
    }
/* =======================================================   GALLERY ITEM======================================================= */

.gallery-item {
    transition: opacity .3s ease, transform .3s ease;
}
/* BOX */

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: .35s ease;
}
    /* IMAGE */

    .gallery-box img {
        width: 100%;
        height: 255px;
        object-fit: cover;
        border-radius: 18px;
        transition: .4s ease;
    }

    .gallery-box:hover img {
        transform: scale(1.05);
    }
/* =======================================================
   PAGINATION
======================================================= */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

    /* =======================================================
   LINKS + ACTIVE
======================================================= */

    .pagination-wrapper .pager-btn {
        width: 48px;
        height: 48px;
        display: inline-flex;
        color: #15803d;
        background: #fff;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 600;
        transition: all .3s ease;
        margin-right: 16px;
        text-align: center;
        box-shadow: 0 8px 18px rgba(21,128,61,.22);
    }


        /* HOVER */

        .pagination-wrapper .pager-btn:hover {
            background: #15803d;
            color: #ffffff;
            border-color: #15803d;
            transform: translateY(-2px);
        }

    /* =======================================================
   ACTIVE BUTTON
======================================================= */

    .pagination-wrapper .pager-active {
        width: 48px !important;
        height: 48px !important;
        display: inline-flex;
        background: #15803d;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        margin-right: 16px;
        border: 1px solid #15803d;
        box-shadow: 0 8px 18px rgba(21,128,61,.22);
    }

/* =======================================================   LIGHTBOX======================================================= */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 40px;
}
    /* IMAGE */

    #lightbox img {
        max-width: 90%;
        max-height: 90vh;
        border-radius: 18px;
    }
/* CLOSE */

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 9999;
}
/* NAVIGATION */

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: .3s ease;
}

    .lightbox-prev:hover, .lightbox-next:hover {
        background: #15803d;
    }

.lightbox-prev {
    left: 35px;
}

.lightbox-next {
    right: 35px;
}
/* =======================================================   MOBILE======================================================= */

@media(max-width:991px) {
    .gallery-box img;

{
    height: 240px;
}

}

@media(max-width:576px) {
    .gallery-section;

{
    padding: 50px 0;
}

.gallery-btn {
    font-size: 14px;
    padding: 10px 20px;
}

.gallery-box img {
    height: 220px;
}

.lightbox-prev, .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 22px;
}

}


/* =======================================================
       SECTION
    ======================================================= */

.media-highlight-section {
    padding: 100px 0;
    background: linear-gradient( 135deg, #f8fafc, #ffffff );
    overflow: hidden;
}

/* =======================================================
       IMAGE
    ======================================================= */

.media-paper-wrapper {
    position: relative;
    text-align: center;
}

.media-paper-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,.12);
    transition: .4s ease;
}

    .media-paper-img:hover {
        transform: translateY(-8px);
    }

/* =======================================================
       CONTENT
    ======================================================= */

.media-highlight-content {
    padding-left: 20px;
}

/* BADGE */

.media-badge {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* TITLE */

.media-highlight-title {
    font-size: 46px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

    .media-highlight-title span {
        color: #15803d;
    }

/* TEXT */

.media-highlight-text {
    font-size: 17px;
    line-height: 1.95;
    color: #4b5563;
    margin-bottom: 22px;
}

/* =======================================================
       POINTS
    ======================================================= */

.media-points {
    margin-top: 28px;
    margin-bottom: 35px;
}

.media-point {
    font-size: 16px;
    color: #111827;
    margin-bottom: 14px;
    font-weight: 500;
}

/* =======================================================
       BUTTON
    ======================================================= */

.media-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px;
    border-radius: 16px;
    background: linear-gradient( 135deg, #15803d, #22c55e );
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
}

    .media-btn:hover {
        transform: translateY(-3px);
        color: #fff;
        box-shadow: 0 18px 40px rgba(21,128,61,.24);
    }

/* =======================================================
       MOBILE
    ======================================================= */

@media(max-width:991px) {
    .media-highlight-content;

{
    padding-left: 0;
}

.media-highlight-title {
    font-size: 34px;
}

.media-highlight-section {
    padding: 70px 0;
}

}

@media(max-width:576px) {
    .media-highlight-title;

{
    font-size: 28px;
    line-height: 1.45;
}

.media-highlight-text {
    font-size: 15px;
}

.media-btn {
    width: 100%;
}
}
