/* Font */
/* FONT */
body {
    font-family: 'Archivo', sans-serif;
}


/* NAV */
.nav {
    gap: 10px;
}

.nav-link {
    color: #000;
    font-weight: 500;
    padding: 8px 14px;
}

.nav-link.active {
    background: #046E1B;
    color: #fff !important;
    border-radius: 6px;
}

.nav-link:hover {
    background: linear-gradient(90deg, #FFC870 0%, #FFA100 100%);
    color: #000;
    border-radius: 6px;
}

/* Offcanvas width */
.offcanvas {
    width: 280px;
}


/* Mobile spacing */
@media (max-width: 991px) {
    .navbar-nav {
        align-items: flex-start;
    }

    .nav-link {
        width: 100%;
        padding-left: 10px !important;
    }


}


/* HERO SECTION */

.hero-cards {
    width: 85%;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(0deg, #cee8d3 0%, #ffffff 100%);

}

.hero-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-title span {
    color: #1fa84a;
}



/* HERO CARDS */
.hero-card {
    background: #383838;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}

.hero-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.hero-card p {
    margin: 0;
    padding: 10px;
    font-size: 17px;
    color: #fff;
}

/* HERO IMAGE */
.hero-img {
    max-width: 85%;
}

/* FULL WIDTH SECTION */
.about-activities-section {
    width: 100%;
}

/* ABOUT CONTENT */
.about-content {
    padding: 60px 90px;
}

.about-content h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    margin: 15px 0 20px;
    text-align: justify;
}

/* ABOUT BUTTON */
.about-btn {
    background: linear-gradient(90deg, #FFC870 0%, #FFA100 100%);
    padding: 10px 22px;
    border-radius: 6px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

/* ACTIVITIES */
.activities-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

/* REDUCED SHADOW */
.activities-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(255, 161, 0, 0.25);
    /* LOWER intensity */
    width: 75%;
}

.activities-box h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.activities-box ul {
    padding-left: 20px;
    margin: 0;
}

.activities-box li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* IMAGE FIT */
.object-fit-cover {
    object-fit: cover;
}

/* FEATURES SECTION */
.features-section {
    padding: 60px 0;
}

/* FEATURE BOX */
.feature-box {
    background: #fff;
    border: 1.5px solid #c8efd5;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;

    /* LOWER SHADOW */
    box-shadow: 0 4px 12px rgba(46, 183, 75, 0.25);
}

/* ICON */
.feature-box img {
    height: 65px;
    margin-bottom: 15px;
}

/* TEXT */
.feature-box p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* ================= R&D OUTPUTS ================= */

.rd-section {
    padding: 0px 0 30px 0px;
}

.rd-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
}

.rd-header h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

/* TOP RIGHT ARROWS */
.rd-arrows-top {
    position: absolute;
    right: 0;
    display: flex;
    gap: 8px;
}

.rd-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid #999;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
}

.rd-arrow:hover {
    background: #f2f2f2;
}

/* CAROUSEL */
.rd-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

/* hide scrollbar */
.rd-carousel::-webkit-scrollbar {
    display: none;
}

.rd-carousel {
    scrollbar-width: none;
}

/* ITEM */
.rd-item {
    flex: 0 0 auto;
    background: #383838;
    border-radius: 4px;
    overflow: hidden;
}

/* IMAGE – NATURAL SIZE */
.rd-item img {
    display: block;
    width: auto;
    max-height: 300px;
}

/* TEXT – WRAPS TO IMAGE WIDTH */
.rd-item p {
    max-width: 100%;
    margin: 0;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    background: #383838;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

/* ================= FOOTER ================= */

.site-footer {
    padding: 50px 0;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #ffc870 100%);
    font-size: 14px;
}

/* LEFT */
.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-logos img {
    height: 100px;
}

.footer-title {
    margin: 0;
    line-height: 1.6;
    font-size: 17px;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: none;
    font-weight: 700;
}

/* CONTACT */
.footer-contact h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-contact p {
    margin-bottom: 8px;
}

/* FOOTER CONTACT ICONS */
.footer-contact-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-contact-item span {
    line-height: 1.4;
    font-size: 16px;
}

/* FOOTER CREDITS */
.footer-credits {
    margin-top: 25px;
}

.footer-credits p {
    font-size: 13px;
    margin-bottom: 6px;
    color: #000;
}

.footer-credits img {
    height: 28px;
}


/* Mobile-tab Responsive */

@media (max-width: 991px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-cards {
        width: 100%;
    }

    .hero-img {
        max-width: 85%;
        padding-top: 30px;
    }

    .about-content {
        padding: 30px;
        text-align: justify;
    }

    .activities-wrapper {
        padding: 30px;
    }

    .activities-box {
        width: 100%;
    }

    .rd-header {
        font-size: 25px;
        justify-content: flex-start;
    }

    .footer-links {
        padding-top: 20px;
    }

    .person-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0px 10px;
    }

    .person-card h5 {
        font-size: 25px !important;
    }

    .person-card .designation {
        font-size: 20px !important;
    }

    .person-info li {
        display: flex;
        gap: 8px;
        font-size: 18px !important;
    }

    .about-info-section {
        padding: 0px 20px !important;
    }

    .timeline-items {
        display: contents !important;
        align-items: inherit !important;
    }

    .timeline-title {
        justify-content: flex-start !important;
    }

    .about-timeline-section {
        padding: 0px 10px !important;
    }
}


/* PEOPLE HERO */
.people-hero {
    background: linear-gradient(0deg, #cee8d3 0%, #ffffff 100%);
    padding: 20px 0;
}

.people-hero h1 {
    font-size: 38px;
    font-weight: 500;
}

/* PEOPLE SECTION */
.people-section {
    background: #ffffff;
    padding: 60px 0;
}

.person-card img {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.person-card h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 4px;
}

.person-card .role {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.person-card .designation {
    font-size: 16px;
    color: #000;
    margin-bottom: 12px;
}

/* INFO LIST */
.person-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.person-info li {
    display: flex;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 0px;
    align-items: flex-start;
}

.person-info img {
    width: auto;
    margin-top: 3px;
    height: 20px;
}

.person-info a {
    color: #000;
    text-decoration: underline;
    word-break: break-word;
}

.person-info a:hover {
    text-decoration: underline;
}


/* FACILITIES SECTION */
.facilities-section {
    padding: 60px 0;
    background: #ffffff;
}

.facility-card img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.facility-title {
    font-size: 18px;
    margin-top: 8px;
    color: #000;
}

.lab-about {
    width: 100%;
    height: auto;
    display: block;
}


.about-timeline-section {
    background: linear-gradient(0deg, #cee8d3 0%, #ffffff 100%);
    padding: 40px 0;
    font-family: 'Archivo', sans-serif;
}

/* GROUP */
.timeline-group {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    margin-bottom: 10px;
}

/* TITLE */
.timeline-title {
    font-size: 22px;
    font-weight: 700;
    text-align: end;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ITEMS WRAPPER */
.timeline-items {
    position: relative;
    grid-column: 2 / 4;
    padding-left: 20px;
}

/* DOTTED LINE */
.timeline-items::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            #138329,
            #138329 4px,
            transparent 4px,
            transparent 8px);
}

/* SINGLE ITEM */
.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    position: relative;
}

/* BIG DOT */
.timeline-item .dot {
    width: 12px;
    height: 12px;
    background: #138329;
    border-radius: 50%;
    z-index: 2;
    flex-shrink: 0;
}

/* TEXT */
.timeline-item p {
    margin: 0;
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
    .timeline-group {
        grid-template-columns: 1fr;
    }

    .timeline-title {
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .timeline-items::before {
        display: none;
    }
}


.about-info-section {
    padding: 40px 0;
    font-family: 'Archivo', sans-serif;
}

.about-info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.about-info-icon img {
    width: 65px;
    height: auto;
}

.about-info-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.about-info-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Mobile */
@media (max-width: 768px) {
    .about-info-item {
        flex-direction: column;
        gap: 16px;
    }

    .about-info-icon img {
        width: 42px;
    }
}

.under-construction {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #eef6f0 100%);
    font-family: 'Archivo', sans-serif;
}


