@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2a4173;
    --secondary: #3B5A99;
    --accent: #FFB703;
    --orange: #FB8500;
    --dark: #1E293B;
    --light: #F8FAFC;
    /* --gradient: linear-gradient(135deg, #2a4173, #1B998B); */
    --gradient: linear-gradient(90deg,
            #2A4173,
            #3B5A99,
            #6F8FCF);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #E8E2C7;

    color: #334155;
    overflow-x: hidden;
    line-height: 1.8;
}



/* ======================
HERO
====================== */
.custom-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a4173;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.custom-arrow i {
    color: #fff;
    font-size: 22px;
}

.custom-arrow:hover {
    background: #FFB703;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 25px;
}

.carousel-control-next {
    right: 25px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 6px;
}

@media(max-width:768px) {

    .custom-arrow {
        width: 45px;
        height: 45px;
    }

    .custom-arrow i {
        font-size: 18px;
    }

}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;

    background:
        linear-gradient(rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .60)),
        url('https://images.unsplash.com/photo-1549366021-9f761d450615?q=80&w=1920');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(11, 110, 79, .35),
            rgba(255, 183, 3, .15));

}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.hero p {
    font-size: 22px;
    max-width: 850px;
}

.hero .badge {
    border-radius: 50px;
    font-size: 15px;
}

/* ======================
BUTTONS
====================== */

.btn-zsi {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 16px 35px;
    font-weight: 700;
    transition: .4s;
}

.btn-zsi:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 110, 79, .35);
}

.btn-outline-light {
    border-radius: 60px;
    padding: 16px 35px;
    font-weight: 700;
}

/* ======================
SECTION
====================== */

.section {
    padding: 110px 0;
}

.title {
    text-align: center;
    margin-bottom: 70px;
}

.title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.title h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient);
    display: block;
    margin: 20px auto;
    border-radius: 50px;
}

/* ======================
ABOUT
====================== */

.img-fluid {
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.section h3 {
    color: var(--primary);
    font-weight: 700;
}

/* ======================
CARDS
====================== */

.card-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: .4s;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .08);

}

.card-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
}

.card-box i {
    color: var(--primary);
    transition: .4s;
}

.card-box:hover i {
    transform: scale(1.15);
}

/* ======================
COUNTER
====================== */

.counter {
    text-align: center;
}

.counter h3 {
    color: var(--primary);
    font-size: 55px;
    font-weight: 800;
}

.counter p {
    font-weight: 600;
}

/* ======================
GALLERY
====================== */

.gallery {
    background:
        linear-gradient(180deg,
            #f8fafc,
            #eef7f4);
}

.gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: .5s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ======================
NEWS
====================== */

.news-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .08);

    transition: .4s;

}

.news-card:hover {
    transform: translateY(-10px);
}

.news-card .card-body {
    padding: 35px;
}

.news-card h5 {
    color: var(--primary);
    font-weight: 700;
}

/* ======================
FORM
====================== */

form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .08);

}

.form-control {
    padding: 15px;
    border-radius: 12px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.btn-success {
    background: linear-gradient(90deg,
            #2A4173 0%,
            #3F5D9A 50%,
            #5E7FC2 100%);
    border: none !important;
    padding: 14px 30px;
    font-weight: 700;
}


/* ======================
HERO STATS
====================== */

.hero-carousel-control-btn {
    position: absolute;
    top: 415px;
    right: 30px;
    z-index: 1050;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border: none;
    border-radius: 50px;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: all .3s ease;
}

.hero-carousel-control-btn:hover {
    background: #2a4173;
    transform: translateY(-2px);
}

.hero-carousel-control-btn i {
    font-size: 15px;
}

@media (max-width:768px) {

    .hero-carousel-control-btn {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 13px;
    }

}

.hero .bg-opacity-10 {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    transition: .4s;
}

.hero .bg-opacity-10:hover {
    transform: translateY(-8px);
}

.hero .bg-opacity-10 h2 {
    font-size: 50px;
    font-weight: 800;
}

/* ======================
RESPONSIVE
====================== */

@media(max-width:992px) {

    .hero h1 {
        font-size: 55px;
    }

}

@media(max-width:768px) {

    .hero {
        padding: 120px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .title h2 {
        font-size: 34px;
    }

    .counter h3 {
        font-size: 40px;
    }

    .nav-link {
        margin-left: 0;
    }

}


.hero-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 15px;
    transition: .4s;
}

.hero-card:hover {
    transform: translateY(-10px);
}

.hero-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.hero-card h6 {
    color: #fff;
    font-weight: 600;
}



#heroSlider,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100%;
}


.hero-banner {
    background: #f8fafc;
}

.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 500px;
    cursor: pointer;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);

    transition: .5s;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.banner-card:hover img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    /* background:
        linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .15)); */

    color: #fff;
}

.banner-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-overlay p {
    margin: 0;
    opacity: .9;
}

.banner-card:hover {
    transform: translateY(-10px);
}

/* ==========================
   COMMON SECTION STYLING
========================== */

.section {
    padding: 100px 0;
}

.title {
    text-align: center;
    margin-bottom: 60px;
}

.title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2a4173;
    position: relative;
}

.title h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #2a4173;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ==========================
   CARD BOX
========================== */

.card-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: .4s;
    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.card-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

/* ==========================
   FEATURED SPECIES
========================== */

.card-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: .5s;
}

.card-box:hover img {
    transform: scale(1.08);
}

.card-box h5 {
    margin-top: 15px;
    color: #2a4173;
    font-weight: 700;
}

/* ==========================
   CONSERVATION ICONS
========================== */

.card-box i {
    color: #2a4173;
    transition: .4s;
}

.card-box:hover i {
    transform: scale(1.15);
}

/* ==========================
   WILDLIFE FACT BANNER
========================== */

.wildlife-banner {
    position: relative;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.wildlife-banner::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .65));
}

.wildlife-banner .container {
    position: relative;
    z-index: 2;
}

.wildlife-banner h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.wildlife-banner p {
    font-size: 22px;
    max-width: 850px;
    margin: auto;
}

/* ==========================
   NATIONAL PARKS
========================== */

.parks-card {
    border-left: 5px solid #2a4173;
}

.parks-card h4 {
    color: #2a4173;
    font-weight: 700;
}

/* ==========================
   QUICK ACCESS
========================== */

.quick-access .card-box {
    text-align: center;
    cursor: pointer;
}

.quick-access .card-box i {
    font-size: 55px;
    margin-bottom: 20px;
}

.quick-access .card-box h5 {
    margin-top: 0;
}

/* ==========================
   FOREST BACKGROUND SECTION
========================== */

.forest-bg {
    background:
        linear-gradient(rgba(11, 110, 79, .92),
            rgba(6, 78, 59, .92)),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ==========================
   ANIMATED HOVER EFFECT
========================== */

.card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transition: .7s;
}

.card-box:hover::before {
    left: 100%;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px) {

    .title h2 {
        font-size: 32px;
    }

    .wildlife-banner h2 {
        font-size: 34px;
    }

    .wildlife-banner p {
        font-size: 18px;
    }

    .card-box img {
        height: 180px;
    }
}

/* .wildlife-gallery {
    background: #f8fafc;
} */

.gallery-title {
    font-size: 48px;
    font-weight: 800;
    color: #2a4173;
}

.gallery-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 280px;
    cursor: pointer;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);

    transition: .5s;
}

.gallery-large {
    height: 350px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.gallery-card:hover img {
    transform: scale(1.12);
}

.gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .15));
}

.gallery-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

@media(max-width:768px) {

    .gallery-title {
        font-size: 32px;
    }

    .gallery-large {
        height: 280px;
    }
}

.hero-section {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
}

.hero-section .carousel-item {
    position: relative;
}



.hero-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    background: #ffb703;
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-overlay h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}


.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    /* margin-top: 400px; */
}

*/
/* Resources */

.resource-section {
    /* margin-top: -60px; */
    position: relative;
    z-index: 20;
}


.resource-card:hover {
    transform: translateY(-8px);
}

.resource-card i {
    font-size: 35px;
    color: #2a4173;
    margin-bottom: 15px;
}

/* Stats */

.stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.stat-card h2 {
    color: #2a4173;
    font-weight: 800;
    font-size: 42px;
}

.stat-card p {
    margin: 0;
    color: #555;
    font-weight: 500;
}

/* Mobile */

@media(max-width:991px) {

    .hero-image {
        height: 550px;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .resource-section {
        margin-top: 30px;
    }
}

.video-btn {
    font-weight: 600;
    border-radius: 40px;
    padding: 12px 25px;
}

.video-btn i {
    color: #dc3545;
}

.modal-content {
    overflow: hidden;
    border-radius: 15px;
}

.modal-body video {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
}


/* about sections */


.about-zsi-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* About Section - Pre Title */

.about-content .heading__pre-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    margin-bottom: 18px;

    background: rgba(11, 110, 79, .08);
    border: 1px solid rgba(11, 110, 79, .15);
    border-radius: 50px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    position: relative;
    background-color: #36508A;
}

.about-content .heading__pre-title::before,
.about-content .heading__pre-title::after {
    content: "";
    width: 18px;
    height: 2px;
    background: #2a4173;
    border-radius: 2px;
}

@media (max-width: 768px) {

    .about-content .heading__pre-title {
        font-size: 12px;
        padding: 7px 15px;
        letter-spacing: 1px;
    }

    .about-content .heading__pre-title::before,
    .about-content .heading__pre-title::after {
        width: 12px;
    }
}

/* Overlay Card */

.image-overlay {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.wildlife-text {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.line-one,
.line-two {
    background: var(--accent);
    color: #1E293B;
    padding: 8px 15px;
    font-weight: 700;
    width: fit-content;
    border-radius: 8px;
}

.animal-name {
    margin-top: 12px;
    background: rgba(11, 110, 79, .95);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 600;
}

/* Right Side */

.about-label {
    display: inline-block;
    background: #2a4173;
    ;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.9;
    color: #334155;
    font-weight: 500;
}

.about-content p {
    color: #64748b;
    line-height: 1.9;
}

.about-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 35px 0;
}

.about-logos img {
    height: 90px;
    object-fit: contain;
}

/* Button same as theme */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #2a4173;
}

/* Mobile */

@media(max-width:991px) {

    .about-main-image {
        height: 450px;
    }

    .about-content {
        margin-top: 40px;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .about-main-image {
        height: 320px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-logos img {
        height: 70px;
    }
}

/* resources
 */

.resource-section {
    padding: 20px 0;
    background: #E8E2C7;
    position: relative;
    overflow: hidden;
}

.resource-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(11, 110, 79, .05);
    border-radius: 50%;
    top: -200px;
    left: -150px;
}

.section-title span {
    color: #2a4173;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-top: 10px;
}

.section-title p {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.resource-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 110, 79, .15);
}

.resource-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #2A4173 0%,
            #3F5D9A 50%,
            #5E7FC2 100%);
}

.icon-box {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #2a4173,
            #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: .4s;
}

.resource-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #fff;
    font-size: 34px;
}

.resource-card h5 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 15px;
}

.resource-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.resource-arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #2a4173;
    transition: .3s;
}

.resource-card:hover .resource-arrow {
    background: #2a4173;
    color: #fff;
    transform: translateX(5px);
}

/* about section */

.about-zsi-section {
    padding: 120px 0;
    background: #E8E2C7;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.wildlife-badge {
    position: absolute;
    left: 25px;
    top: 25px;
    background: rgba(255, 255, 255, .95);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.wildlife-badge i {
    color: #2a4173;
}

.floating-card {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.floating-card h3 {
    color: #2a4173;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-content {
    padding-left: 20px;
}

.section-tag {
    display: inline-block;
    background: #2a4173;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.about-content h2 {
    margin-top: 20px;
    font-size: 50px;
    font-weight: 800;
    color: #1f2937;
}

.lead-text {
    margin-top: 25px;
    font-size: 19px;
    line-height: 1.8;
    color: #334155;
}

.about-content p {
    color: #64748b;
    line-height: 1.9;
}

.about-info-card {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.about-info-card:hover {
    transform: translateY(-5px);
}

.about-info-card i {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: #2a4173;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-info-card h6 {
    margin-bottom: 3px;
    font-weight: 700;
}

.about-info-card span {
    color: #64748b;
    font-size: 14px;
}

.about-btn {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 50px;
    background: #2a4173;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.about-btn:hover {
    background: #2a4173;
    color: #fff;
}

@media(max-width:991px) {

    .about-main-image {
        height: 450px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .floating-card {
        right: 15px;
        bottom: 15px;
    }
}

.leader-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f5e9;
    color: #2a4173;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.leader-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-content p {
    color: #64748b;
    font-size: 14px;
}

/* Leadership Section */

.leadership-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(11, 110, 79, .05);
    top: -150px;
    right: -150px;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #2a4173;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Resource Center - Keep content fixed */
.resource-center .tab-content {
    min-height: 700px;
    /* apne content ke hisab se adjust kar lena */
    position: relative;
}

.resource-center .tab-pane {
    height: 700px;
    /* same as above */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar */
.resource-center .tab-pane::-webkit-scrollbar {
    width: 6px;
}

.resource-center .tab-pane::-webkit-scrollbar-thumb {
    background: #2a4173;
    border-radius: 20px;
}

.resource-center .tab-pane::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.section-header h2 {
    margin-top: 15px;
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
}

.section-header p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #64748b;
    line-height: 1.8;
}

.leader-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: transform .8s ease, box-shadow .8s ease;
    height: 100%;
    position: relative;

    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #2A4173 0%,
            #3F5D9A 50%,
            #5E7FC2 100%);

    z-index: 2;
}

.leader-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.leader-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .8s ease;

    transform: translateZ(0);
    backface-visibility: hidden;
}

.leader-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;
}

.leader-card:hover .leader-image img {
    transform: scale(1.02);
}

.leader-content {
    padding: 25px;
    text-align: center;
}

.leader-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f5e9;
    color: #2a4173;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.leader-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.leader-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Optional social icons */

.leader-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.leader-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a4173;
    text-decoration: none;
    transition: .3s;
}

.leader-social a:hover {
    background: #2a4173;
    color: #fff;
}

/* Mobile */

@media(max-width:991px) {

    .section-header h2 {
        font-size: 34px;
    }

    .leader-image img {
        height: 280px;
    }
}

.leader-card {
    height: 100%;
}

.leader-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Directior sections */

.director-section {
    position: relative;
    /* background:linear-gradient(135deg, #f8fffc, #eefaf6); */
}

.director-badge {
    display: inline-block;
    background: #2a4173;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.director-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.director-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin: 26px 0;
}

.director-text p {
    color: #475569;
    line-height: 1.9;
    font-size: 1.02rem;
}

.director-card {
    position: relative;
    padding: 25px;
}

.director-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);
    transition: .5s;
}

.director-card:hover .director-image {
    transform: translateY(-10px) scale(1.02);
}

.director-info {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.director-role {
    color: #2a4173;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-info h3 {
    margin-top: 8px;
    margin-bottom: 5px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #1e293b;
}

.director-info p {
    margin: 0;
    color: #64748b;
}

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: #2a417320;
    top: -30px;
    right: -30px;
    animation: floatShape 5s infinite ease-in-out;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: #FFB70330;
    bottom: 40px;
    left: -40px;
    animation: floatShape 4s infinite ease-in-out;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    color: #2a4173;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card span {
    color: #64748b;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* image gallery section */
/* .wildlife-gallery {
    background: #fff;
} */

.gallery-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #2a4173;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
}

.gallery-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 350px 250px;
    gap: 0;
    overflow: hidden;
    border-radius: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .1));
    z-index: 1;
}

.gallery-content {
    position: absolute;
    left: 30px;
    bottom: 25px;
    z-index: 2;
    color: #fff;
}

.gallery-content span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .9;
}

.gallery-content h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.small {
    height: 100%;
}

.large {
    grid-row: span 2;
}

.tall {
    grid-row: span 2;
}

.gallery-item:hover .gallery-content {
    transform: translateY(-8px);
    transition: .4s;
}

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .large,
    .tall {
        grid-row: auto;
        height: 350px;
    }

    .gallery-title {
        font-size: 2rem;
    }
}


.resource-center {
    /* background: #f4f6f7; */
    padding: 80px 0;
}

.resource-animal img {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
}


.publication-wrapper {
    background: #ececec;
    padding: 18px;
}

.publication-item {
    background: #fff;
    padding: 18px;
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.publication-image {
    width: 140px;
    flex-shrink: 0;
}

.publication-image img {
    width: 100%;
    display: block;
}

.publication-content {
    flex: 1;
}

.publication-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.publication-content a {
    color: #00a67c;
    text-decoration: none;
}

.publication-content p {
    margin-top: 12px;
    color: #64748b;
    line-height: 1.8;
}

.publication-link {
    color: #333 !important;
    font-weight: 600;
}

.more-publication-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #f0c419;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    background: #fff;
}

.more-publication-btn:hover {
    background: #f0c419;
    color: #000;
}

@media(max-width:991px) {

    .publication-item {
        flex-direction: column;
    }

    .publication-image {
        width: 120px;
    }

    .publication-content h3 {
        font-size: 1.5rem;
    }
}

.resource-animal {
    text-align: center;
}

.resource-animal img {
    max-height: 700px;
    object-fit: contain;
    animation: floatRhino 5s ease-in-out infinite;
}

@keyframes floatRhino {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.section-badge {
    padding: 8px 18px;
    font-weight: 700;
    display: inline-block;
}

.resource-tabs .nav-link {
    padding: 15px 25px;
    border-radius: 8px;
    color: #333;
    background: #fff;
    margin-right: 8px;
    transition: .3s;
}

.resource-tabs .nav-link.active {
    background: #2a4173;
    color: #fff;
}

.publication-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.publication-card:hover {
    transform: translateY(-10px);
}

.book-cover {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}


/* .latest-news-section {
    background: #ececec;
} */

.news-wrapper {
    padding: 20px 40px;
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
}

.news-tabs .nav-link {
    border: none;
    background: transparent;
    color: #222;
    font-weight: 600;
}

.news-tabs .nav-link.active {
    background: transparent;
    color: #2a4173;
}



.latest-news-section .row {
    align-items: stretch;
}

.latest-news-section .news-card-main,
.latest-news-section .background-card {
    min-height: 850px;
    height: 850px;
}

.latest-news-section .background-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news-section .news-card-main {
    overflow-y: auto;
    overflow-x: hidden;
}

/* achievement sections */

.achievement-section {
    padding: 100px 0;
    /* background:
        radial-gradient(circle at top right,
            rgba(11, 110, 79, .08),
            transparent 30%),
        #f8fafc; */
    position: relative;
    overflow: hidden;
}

.achievement-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: #2a4173;
    ;
    color: #fff;
    ;
    font-weight: 700;
    letter-spacing: 1px;
}

.achievement-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 20px;
}

.achievement-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    color: #64748b;
}

/* Main Card */

.achievement-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(15, 23, 42, .08),
        0 0 0 1px rgba(226, 232, 240, .7);
    position: relative;
}

/* Gold Accent */

.achievement-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--accent),
            #ffd86b);
}

/* Image */

.achievement-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.achievement-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 1.2s ease;
}

.carousel-item.active .achievement-image img {
    animation: imageReveal 1s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.08);
}

@keyframes imageReveal {
    from {
        transform: scale(1.15);
        opacity: .4;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Award Badge */

.achievement-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
}

.achievement-overlay span {
    background: rgba(255, 255, 255, .95);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* Content */

.achievement-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.achievement-tag {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 18px;
    border-radius: 50px;
    background: #2a4173;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.achievement-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.achievement-content p {
    font-size: 1rem;
    line-height: 2;
    color: #64748b;
    margin-bottom: 30px;
}

/* Button */

.achievement-btn {
    width: max-content;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    font-weight: 700;
    transition: .3s;
}

.achievement-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11, 110, 79, .25);
}

/* Indicators */

.carousel-indicators {
    bottom: -15px;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
}

/* Slide Animation */

.carousel-item.active .achievement-content {
    animation: contentFade .8s ease;
}

@keyframes contentFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */

@media(max-width:991px) {

    .achievement-image img {
        height: 350px;
    }

    .achievement-content {
        padding: 35px;
    }

    .achievement-content h2 {
        font-size: 1.8rem;
    }
}

@media(max-width:767px) {

    .achievement-title {
        font-size: 2rem;
    }

    .achievement-content {
        padding: 25px;
    }

    .achievement-content h2 {
        font-size: 1.5rem;
    }

    .achievement-image img {
        height: 280px;
    }
}

/* important links */
.important-links-section {
    position: relative;
    padding: 90px 0;
    /* background: linear-gradient(135deg, #f7fbf9 0%, #edf6f2 100%); */
    overflow: hidden;
}

.important-links-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(11, 110, 79, .05);
    top: -220px;
    right: -180px;
}

.important-links-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(25, 135, 84, .05);
    bottom: -120px;
    left: -120px;
}

.important-links-section .container {
    position: relative;
    z-index: 2;
}

.btn-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    border: 2px solid #2a4173;
    border-radius: 50px;
    background: #fff;
    color: #2a4173;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(11, 110, 79, .08);
}

.btn-links i {
    transition: .35s;
}

.btn-links:hover {
    background: linear-gradient(90deg,
            #2A4173 0%,
            #3F5D9A 50%,
            #5E7FC2 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 110, 79, .25);
}

.btn-links:hover i {
    transform: translateY(2px);
}

.btn-links:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 110, 79, .15);
}

/*==================================================
                    SECTION HEADER
==================================================*/

.links-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #2a4173;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 580px;
}

/*==================================================
                    LINK CARD
==================================================*/

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eef2f5;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: all .35s ease;
}

.link-card:hover {
    transform: translateY(-6px);
    border-color: #2a4173;
    box-shadow: 0 18px 40px rgba(11, 110, 79, .18);
}

/*================ ICON =================*/

.link-card .icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a4173, #2a4173);
    color: #fff;
    font-size: 14px;
    transition: .35s;
}

.link-card:hover .icon {
    transform: rotate(8deg) scale(1.05);
}

/*================ TEXT =================*/

.link-card h5 {
    margin: 0;
    color: #1f2937;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    transition: .3s;
}

.link-card small {
    display: block;
    margin-top: 3px;
    color: #7b8794;
    font-size: 13px;
}

.link-card:hover h5 {
    color: #2a4173;
}

/*================ ARROW =================*/

.link-card .arrow {
    margin-left: auto;
    color: #2a4173;
    font-size: 16px;
    transition: .35s;
}

.link-card:hover .arrow {
    transform: translateX(6px);
}

/*==================================================
                    BUTTON
==================================================*/

.btn-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #2a4173;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(11, 110, 79, .25);
}

.btn-links:hover {
    background: #084f39;
    color: #fff;
    transform: translateY(-3px);
}

.btn-links i {
    transition: .35s;
}

.btn-links:hover i {
    transform: translateX(5px);
}

/*==================================================
                    GIRAFFE IMAGE
==================================================*/

.resource-animal {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.banner__img {
    width: 125%;
    max-width: none;
    margin-right: -70px;
    margin-bottom: -30px;
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width:991px) {

    .important-links-section {
        padding: 70px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .resource-animal {
        margin-top: 45px;
        justify-content: center;
    }

    .banner__img {
        width: 90%;
        max-width: 420px;
        margin: 40px auto 0;
    }

    .btn-links {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: auto;
    }

}

@media (max-width:576px) {

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .link-card {
        padding: 16px;
        gap: 12px;
    }

    .link-card .icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 13px;
        border-radius: 8px;
    }

    .link-card h5 {
        font-size: 15px;
    }

    .link-card small {
        font-size: 12px;
    }

    .link-card .arrow {
        font-size: 14px;
    }

    .banner__img {
        width: 85%;
        margin: 30px auto 0;
    }

}

/* Resources  */
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
}

.section-header p {
    color: #64748b;
    max-width: 650px;
}


.resource-card:hover {
    transform: translateY(-10px);
    color: #2a4173;
    box-shadow: 0 20px 40px rgba(11, 110, 79, .12);
}

.resource-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    background: #2a4173;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.resource-card h5 {
    margin-bottom: 5px;
    font-weight: 700;
}

.resource-card span {
    font-size: 14px;
    color: #64748b;
}

.resource-animal {
    text-align: center;
}

.resource-animal img {
    width: 110%;
    height: 600px;
    object-fit: contain;
    animation: floatAnimal 5s ease-in-out infinite;
    margin-bottom: 70px;
}

@keyframes floatAnimal {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

}

@media(max-width:991px) {

    .section-header h2 {
        font-size: 2rem;
    }

    .resource-animal {
        margin-top: 50px;
    }

}

.partner-section {
    /* background: #f8fafc; */
    padding: 100px 0;
}

.partner-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #2a4173;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
}

.partner-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.partner-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #1e293b;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.partner-card:hover {
    transform: translateY(-10px);
    color: #2a4173;
}

.partner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.partner-card h5 {
    font-weight: 700;
}

.partner-card span {
    color: #64748b;
}

.application-gallery {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.gallery-app-card {
    position: relative;
    display: block;
    height: 360px;
    /* 650px -> 360px */
    overflow: hidden;
    text-decoration: none;
}

.gallery-app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 1s;
}

.gallery-app-card:hover img {
    transform: scale(1.08);
}

.gallery-app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .25));
    color: #fff;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-app-overlay span {
    font-size: 18px;
    margin-bottom: 10px;
}

.gallery-app-overlay h2 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.gallery-app-overlay p {
    max-width: 450px;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 22px;
}

.gallery-btn {
    display: inline-block;
    width: fit-content;
    background: #2a4173;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px) {

    .partner-title {
        font-size: 2rem;
    }

    .gallery-app-card {
        height: 300px;
    }

    .gallery-app-overlay {
        padding: 28px;
    }

    .gallery-app-overlay span {
        font-size: 16px;
    }

    .gallery-app-overlay h2 {
        font-size: 2.8rem;
    }

    .gallery-app-overlay p {
        font-size: 15px;
        max-width: 380px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:767px) {

    .gallery-app-card {
        height: 240px;
    }

    .gallery-app-overlay {
        padding: 20px;
    }

    .gallery-app-overlay span {
        font-size: 14px;
    }

    .gallery-app-overlay h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .gallery-app-overlay p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .gallery-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

}

/* Wildlife Forest Footer 12-08-2026*/

.zsi-footer {
    background:
        linear-gradient(rgba(10, 40, 15, 0.55),
            rgba(26, 96, 44, 0.92)),
        url('/zsi_laravel/public/images/footer_b.jpg') center center/cover no-repeat;

    color: #d6e8d0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}



.footer-logo {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-widget h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.footer-widget h5::after {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8bc34a, #cddc39);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #d6e8d0;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-widget ul li a:hover {
    color: #cddc39;
    padding-left: 8px;
}

.footer-widget p {
    line-height: 1.8;
}

.footer-widget p i {
    color: #8bc34a;
    margin-right: 10px;
}

.footer-social {
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #2a4173;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(11, 110, 79, .4);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 25px 0;
    color: #d1d5db;
    background: rgba(0, 0, 0, .25);
}

@media(max-width:991px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.logo-text h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #2a4173;
}

.logo-text p,
.logo-text span {
    margin: 0;
}

.header-right {
    margin-left: auto;
}

.header-right img {
    width: 90px;
    height: 110px;
    object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: #2a4173;
    border-radius: 50%;
    background-size: 50%;
}

.carousel-item {
    transition: transform 2s ease-in-out;
}

#achievementCarousel .carousel-item {
    transition: opacity 1.5s ease-in-out;
}

/* for responsive pages */
.latest-news-section {
    padding: 80px 0;
    /* background: #f5f8fb; */
}

.latest-news-section .card {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    transition: all .4s ease;
}

.latest-news-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

.news-wrapper {
    padding: 50px;
    height: 100%;
}

.news-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2a4173;
    margin-bottom: 25px;
}

.news-tabs .nav-link {
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    color: #2a4173;
    background: #eef7f3;
    margin-right: 10px;
    transition: .3s;
}

.news-tabs .nav-link.active {
    background: #2a4173;
    color: #fff;
}

.release-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf1f5;
    transition: all .3s ease;
    animation: fadeInUp .6s ease;
}

.release-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.pdf-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.release-content {
    flex: 1;
}

.release-content h5 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.release-content span {
    color: #6c757d;
    font-size: 14px;
}

.release-action a {
    padding: 10px 18px;
    border-radius: 50px;
    background: #2a4173;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.release-action a:hover {
    background: #146c43;
    color: #fff;
}

.background-card {
    position: relative;
    height: 100%;
    min-height: auto;
    overflow: hidden;
}

.background-card img {
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.background-card:hover img {
    transform: scale(1.08);
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .25));
    padding: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.background-overlay h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.background-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.background-text {
    line-height: 1.8;
    margin-bottom: 25px;
}

.background-overlay .btn {
    width: fit-content;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

@media (max-width: 991px) {

    .news-wrapper {
        padding: 30px;
    }

    .background-card {
        min-height: 450px;
    }

    .background-overlay {
        padding: 30px;
    }

    .background-overlay h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {

    .release-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .release-action {
        width: 100%;
    }

    .release-action a {
        display: block;
        text-align: center;
    }

    .news-title {
        font-size: 1.7rem;
    }

    .background-overlay h2 {
        font-size: 1.8rem;
    }

    .news-tabs {
        gap: 10px;
    }

    .news-tabs .nav-link {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}

.resource-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: #2a4173;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon i {
    color: #fff;
    font-size: 32px;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
}



.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 600 !important;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFB703 !important;
}


.hero-buttons {
    top: 50%;
}

/* .gallery */
.wildlife-gallery {
    /* background: #f8fafc; */
    padding: 100px 0;
}

.gallery-badge {
    display: inline-block;
    /* background: var(--primary); */
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.gallery-subtitle {
    max-width: 700px;
    margin: auto;
    color: #64748b;
}

.zsi-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 350px 320px;

    gap: 0;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-box {
    position: relative;
    overflow: hidden;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.gallery-box:hover img {
    transform: scale(1.08);
}

.gallery-large {
    grid-row: span 1;
}

.gallery-wide {
    grid-column: span 1;
}

.gallery-tall {
    grid-row: span 1;
}

.gallery-coral {
    grid-column: span 1;
}

.gallery-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .05));
    color: #fff;
}

.gallery-info span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    opacity: .9;
    letter-spacing: 1px;
}

.gallery-info h4 {
    margin: 5px 0 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.coral-info {
    background: #f3c623;
    color: #111;
}

.coral-info span {
    color: #444;
}

@media(max-width:991px) {

    .zsi-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-box {
        height: 320px;
    }

    .gallery-title {
        font-size: 2rem;
    }
}

/* website links */
.logo-slider .slick-slide {
    padding: 15px;
}

.logo-slider img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.logo-slider img:hover {
    transform: translateY(-5px);
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 110px;
}

.partner-logo-control-btn {
    position: absolute;
    top: 180px;
    right: 15px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 50px;
    background: #2a4173;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.partner-logo-control-btn:hover {
    background: #2a4173;
}

/* Main dropdown */
.custom-dropdown {
    width: max-content;
    background: #0f1c28;
    border: none;
    padding: 0;
}

/* Parent item */
.dropdown-submenu {
    position: relative;
}

/* Head Quarter Sections button */
.dropdown-submenu>.dropdown-item {
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    font-weight: 500;
}

.dropdown-submenu>.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFB703;
}

/* Mega panel */
#headQuarterSections {
    background: #0f1c28;
    min-width: 850px;
    padding: 15px;
}

/* Columns */
#headQuarterSections .col-md-6 {
    padding: 0 15px;
}

/* Section links */
#headQuarterSections .dropdown-item {
    color: #fff;
    padding: 8px 0;
    font-size: 15px;
    white-space: normal;
    transition: 0.3s;
}

#headQuarterSections .dropdown-item:hover {
    background: transparent;
    color: #FFB703;
    padding-left: 10px;
}

/* Regional Centres */
.custom-dropdown>li>.dropdown-item {
    color: #fff;
    padding: 5px 10px;
}

.custom-dropdown>li>.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFB703;
}

/* Mobile */
@media (max-width: 991px) {
    #headQuarterSections {
        min-width: 100%;
        padding: 10px;
    }

    #headQuarterSections .row {
        display: block;
    }

    #headQuarterSections .col-md-6 {
        width: 100%;
        margin-bottom: 15px;
    }
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #2a4173;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: none;
    /* changed */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    z-index: 9999;
    transition: all .3s ease;
}

.back-to-top:hover {
    background: #2a4173;
    color: #fff;
}

/* Header Dropdown Fix */

.navbar .dropdown-menu {
    background: #E2D9B8;
    border: 1px solid #e5e7eb !important;
    opacity: .9;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
    /* opacity: 1; */
}

.navbar .dropdown-menu .dropdown-item,
.navbar .dropdown-menu a,
.navbar .dropdown-menu li,
.navbar .dropdown-menu h5,
.navbar .dropdown-menu h6 {
    color: #1e293b;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: #f1f5f9 !important;
    color: #2a4173 !important;
}

/* Mega menu headings */
.navbar .dropdown-menu h5,
.navbar .dropdown-menu h6 {
    font-weight: 700;
}

/* HQ Section */
#headQuarterSections {
    background: #ffffff !important;
}

#headQuarterSections .dropdown-item {
    color: #1e293b !important;
}



.carousel-caption {
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.hero-buttons {
    position: relative;
    z-index: 9999 !important;
}

.hero-buttons .btn,
.video-btn {
    position: relative;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

.hero-section::before,
.carousel-item::before,
.hero-overlay,
.overlay {
    pointer-events: none !important;
}

/* Achievement Carousel Play/Pause */
.achievement-carousel-toggle-btn {
    position: absolute;
    top: 275px;
    right: 140px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border: none;
    border-radius: 50px;

    background: rgba(0, 0, 0, .75);
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: all .3s ease;
}

.achievement-carousel-toggle-btn:hover {
    background: #2a4173;
    transform: translateY(-2px);
}

.achievement-carousel-toggle-btn i {
    font-size: 15px;
}

@media (max-width:768px) {

    .achievement-carousel-toggle-btn {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 13px;
    }

}

/* Website Policy */
/*==================================================
                ZSI POLICY PAGE
==================================================*/

/* :root {
    --zsi-primary: #1B5E20;
    --zsi-secondary: #2E7D32;
    --zsi-light: #43A047;
    --zsi-bg: #F5FAF5;
    --zsi-border: #E3EFE3;
    --zsi-text: #4B5563;
    --zsi-heading: #143A1A;
} */

:root {
    --zsi-primary: #2A4173;
    --zsi-secondary: #36508A;
    --zsi-light: #6F8FCF;
    --zsi-bg: #F8FAFD;
    --zsi-border: #E2E8F5;
    --zsi-text: #475569;
    --zsi-heading: #1A2C52;
}

/*========================================*/

.policy-section {

    padding: 80px 0;

    background:
        linear-gradient(rgba(245, 250, 245, .97), rgba(245, 250, 245, .97)),
        url("/frontend/images/background__layout.png") center repeat;

    background-size: 280px;

}

/*========================================*/

.policy-card {

    background: #fff;

    border-radius: 20px;

    padding: 50px;

    border: 1px solid var(--zsi-border);

    position: relative;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .08);

}

/* Top Accent */

.policy-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 6px;

    background:
        linear-gradient(90deg,
            var(--zsi-primary),
            var(--zsi-light),
            #6F8FCF);


}

/* Decorative Circle */

.policy-card::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -80px;

    top: -80px;

    border-radius: 50%;

    background: rgba(67, 160, 71, .05);

}

/*========================================*/

.policy-content {

    position: relative;

    z-index: 2;

    color: var(--zsi-text);

    font-size: 16px;

    line-height: 1.9;

}

/*========================================*/

.policy-content h1 {

    font-size: 36px;

    color: var(--zsi-heading);

    margin-bottom: 25px;

    font-weight: 700;

}

.policy-content h2 {

    position: relative;

    font-size: 28px;

    color: var(--zsi-primary);

    margin-top: 45px;

    margin-bottom: 18px;

    padding-left: 18px;

    font-weight: 700;

}

.policy-content h2::before {

    content: "";

    position: absolute;

    left: 0;

    top: 3px;

    width: 5px;

    height: 90%;

    border-radius: 20px;

    background: var(--zsi-light);

}

.policy-content h3 {

    font-size: 22px;

    color: var(--zsi-secondary);

    margin-top: 30px;

    margin-bottom: 15px;

    font-weight: 600;

}

.policy-content h4 {

    font-size: 18px;

    color: #234;

    margin-top: 25px;

    margin-bottom: 12px;

    font-weight: 600;

}

/*========================================*/

.policy-content p {

    margin-bottom: 18px;

    color: #555;

    text-align: justify;

}

/*========================================*/

.policy-content ul,
.policy-content ol {

    margin: 20px 0;

    padding-left: 25px;

}

.policy-content ul li {

    margin-bottom: 12px;

}

.policy-content ul li::marker {

    color: var(--zsi-light);

}

.policy-content ol li {

    margin-bottom: 12px;

}

/*========================================*/

.policy-content blockquote {

    margin: 30px 0;

    padding: 20px 25px;

    background: #F4FAF4;

    border-left: 5px solid var(--zsi-light);

    border-radius: 0 10px 10px 0;

    font-style: italic;

}

/*========================================*/

.policy-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 30px 0;

    overflow: hidden;

    border-radius: 12px;

}

.policy-content table th {

    background: var(--zsi-primary);

    color: #fff;

    padding: 14px;

    font-weight: 600;

}

.policy-content table td {

    padding: 14px;

    border: 1px solid #E5E7EB;

}

.policy-content table tr:nth-child(even) {

    background: #F8FCF8;

}

/*========================================*/

.policy-content img {

    max-width: 100%;

    height: auto;

    display: block;

    margin: 25px auto;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

/*========================================*/

.policy-content a {

    color: var(--zsi-secondary);

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.policy-content a:hover {

    color: var(--zsi-primary);

    text-decoration: underline;

}

/*========================================*/

.policy-content hr {

    border: none;

    height: 1px;

    background: #E5E7EB;

    margin: 35px 0;

}

/*========================================*/

.policy-content strong {

    color: #1B5E20;

}

.policy-content b {

    color: #1B5E20;

}

/*========================================*/

.policy-content iframe {

    width: 100%;

    min-height: 450px;

    border: none;

    border-radius: 12px;

}

/*========================================*/

@media (max-width:991px) {

    .policy-card {

        padding: 35px;

    }

    .policy-content h1 {

        font-size: 30px;

    }

    .policy-content h2 {

        font-size: 24px;

    }

}

@media (max-width:767px) {

    .policy-section {

        padding: 50px 0;

    }

    .policy-card {

        padding: 25px;

        border-radius: 15px;

    }

    .policy-content {

        font-size: 15px;

        line-height: 1.8;

    }

    .policy-content h1 {

        font-size: 26px;

    }

    .policy-content h2 {

        font-size: 22px;

    }

    .policy-content h3 {

        font-size: 20px;

    }

    .policy-content table {

        display: block;

        overflow-x: auto;

        white-space: nowrap;

    }

}


/*Important Detail*/
/*==========================
LEFT MENU
===========================*/

/* .sidebar {
            background: #fff;
            border: 1px solid #ddd;
        } */
.sidebar {

    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid #e9e9e9;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

}

.sidebar-title {

    background: linear-gradient(90deg,
            #2A4173 0%,
            #3F5D9A 50%,
            #5E7FC2 100%);

    color: #fff;

    padding: 18px 22px;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: .5px;

}

.sidebar .list-group {

    border-radius: 0;

}

.sidebar .list-group-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 20px;

    font-size: 17px;

    font-weight: 600;

    color: #444;

    border: none;

    border-bottom: 1px solid #f2f2f2;

    transition: .35s;

    background: #fff;

}

.sidebar .list-group-item i {

    width: 22px;

    text-align: center;

    color: #2A4173;

    transition: .35s;

}

.sidebar .list-group-item:hover {

    background: linear-gradient(90deg, #fff3e0, #ffffff);

    color: #2A4173;

    padding-left: 28px;

}

.sidebar .list-group-item.active {

    /* background:linear-gradient(135deg,#ff9800,#ff6f00); */
    background: linear-gradient(90deg,
            #2A4173 0%,
            #3F5D9A 50%,
            #5E7FC2 100%);

    color: #fff;

    border: none;

}

.sidebar .list-group-item.active i {

    color: #fff;

}

.sidebar .list-group-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: #5E7FC2;

    transform: scaleY(0);

    transition: .35s;

}

.sidebar .list-group-item:hover::before {

    transform: scaleY(1);

}

.sidebar .list-group-item:hover i {

    transform: translateX(6px);

}

@media(max-width:991px) {

    .sidebar {

        margin-bottom: 25px;

    }

    .sidebar-title {

        font-size: 18px;

        padding: 14px;

    }

    .sidebar .list-group-item {

        font-size: 15px;

        padding: 13px 15px;

    }

}

/*==========================
TABLE
===========================*/

.table-card {
    background: #fff;
    border: 1px solid #ddd;
}

#detial {
    background: #202428;
}

.table thead th {

    padding: 15px;
    font-size: 18px;
}

.table tbody td {
    padding: 16px;
    vertical-align: middle;
}

.table tbody tr:hover {
    background: #fafafa;
}

.download-link {

    color: #008000;
    text-decoration: none;
    font-weight: 600;
}

.download-link:hover {
    color: #f57c00;
}

.download-link i {

    color: #d32f2f;
    margin-right: 8px;
    font-size: 22px;
}

/*=====================
Responsive
======================*/

@media(max-width:991px) {

    .sidebar {
        margin-bottom: 25px;
    }

    .sidebar .list-group-item {

        padding: 15px;
        font-size: 17px;
    }

    .table {

        min-width: 700px;
    }

    .table-responsive {

        overflow-x: auto;
    }

}

@media only screen and (min-width: 992px) {
    .reg-centers {
        width: 100%;
        max-height: 100%;
        height: 704px;
        overflow-y: scroll;
        /* padding-bottom: 10px; */
    }
}

/*==============================
    SCIENTISTS SECTION
===============================*/

.scientist-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: .4s;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.scientist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.scientist-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.scientist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.scientist-card:hover .scientist-img img {
    transform: scale(1.08);
}

.scientist-body {
    padding: 25px;
    text-align: center;
}

.scientist-body h4 {
    font-size: 24px;
    font-weight: 700;
    color: #16314f;
    margin-bottom: 12px;
}

.scientist-body p {
    min-height: 55px;
    color: #6c757d;
}

.badge {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 30px;
}

.btn-success {
    border-radius: 30px;
    padding: 10px 24px;
}


/*==============================
      DETAIL CARD
===============================*/

.detail-card {

    display: none;

    margin-top: 60px;

    background: #fff;

    border-radius: 25px;

    padding: 45px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .10);

    animation: fadeUp .5s ease;

}

/* .detail-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:20px;

} */

.detail-card h2 {

    font-weight: 700;

    color: #16314f;

}

.detail-card h5 {

    margin-top: 10px;

    font-weight: 600;

}

.detail-card p {

    line-height: 1.8;

}


/*==============================
       INFO BOX
===============================*/

.info-box {

    background: #f8f9fa;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    transition: .3s;

    height: 100%;

}

.info-box:hover {

    background: #2a4173;

    color: #fff;

    transform: translateY(-8px);

}

.info-box i {

    font-size: 32px;

    color: #2a4173;

    margin-bottom: 15px;

}

.info-box:hover i {

    color: #fff;

}

.info-box h6 {

    font-weight: 600;

}


/*==============================
      BUTTON
===============================*/

.btn-success {

    transition: .3s;

}

.btn-success:hover {

    transform: translateY(-3px);

}


/*==============================
      ANIMATION
===============================*/

@keyframes fadeUp {

    0% {

        opacity: 0;

        transform: translateY(40px);

    }

    100% {

        opacity: 1;

        transform: translateY(0);

    }

}


/*==============================
      RESPONSIVE
===============================*/

@media(max-width:992px) {

    .scientist-img {

        height: 250px;

    }

    .detail-card {

        padding: 30px;

    }

    .detail-card img {

        height: 320px;

        margin-bottom: 25px;

    }

}

@media(max-width:768px) {

    .scientist-body {

        padding: 20px;

    }

    .scientist-body h4 {

        font-size: 21px;

    }

    .detail-card {

        padding: 20px;

    }

    .detail-card h2 {

        font-size: 28px;

    }

    .detail-card img {

        height: 250px;

    }

    .info-box {

        margin-bottom: 20px;

    }

}

@media(max-width:576px) {

    .scientist-img {

        height: 220px;

    }

    .scientist-body h4 {

        font-size: 20px;

    }

    .badge {

        font-size: 12px;

    }

    .detail-card {

        border-radius: 15px;

        padding: 15px;

    }

    .detail-card h2 {

        font-size: 24px;

    }

    .detail-card img {

        height: 220px;

    }

}

.scientist-card.active-card {

    border: 2px solid #2a4173;

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(25, 135, 84, .25);

}

.scientist-card.active-card .btn-success {

    background: #145c32;

    border-color: #145c32;

}


.align>li {
    width: 48%;
    min-height: 230px;
    display: inline-block;
    margin: 0 16px 40px 0;
    padding: 0 0 0 30px;
    vertical-align: top;
}

figcaption {
    padding-left: 90px;
    text-align: left;
    position: absolute;
    top: 0;
    left: 125px;
    width: 450px;
}

.book-wrapper {
    position: relative;
    width: 180px;
    height: 250px;
    perspective: 1500px;
}

.book-cover {

    position: absolute;
    inset: 0;

    transform-origin: left center;
    transition: .8s ease;

    border-radius: 4px;
    overflow: hidden;

    box-shadow:
        0 20px 35px rgba(0, 0, 0, .25),
        8px 0 0 #ddd,
        12px 0 0 #eee,
        16px 0 0 #f6f6f6;

    z-index: 5;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-inside {

    position: absolute;
    inset: 0;

    background: #faf7f2;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    box-shadow: inset 0 0 20px rgba(0, 0, 0, .08);

}

.book-wrapper:hover .book-cover {

    transform:
        rotateY(-145deg);

}

.download-btn {

    border: 2px solid #2d3d50;
    color: #2d3d50;

    padding: 10px 22px;

    font-weight: 700;

    border-radius: 6px;

    text-decoration: none;

    transition: .3s;
}

.download-btn:hover {

    background: #2d3d50;
    color: #fff;

}

.ribbon {
    position: absolute;
    top: 10px;
    right: -28px;

    transform: rotate(45deg);

    background: #d63636;
    color: #fff;

    padding: 5px 35px;
    font-size: 12px;
    font-weight: 700;
}

figcaption span {
    color: #16a085;
}


.nav-item {
    position: relative;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    z-index: 999;
}

/* Second level */
.custom-dropdown .custom-dropdown {
    top: 0;
    left: 100%;
}


.carousel-caption {
    position: absolute;
    /* right: 15%; */
    bottom: 0;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: unset;
    /* top: 43%; */
}

/* view more button */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background: #36508A;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(54, 80, 138, 0.25);
    border: 2px solid #36508A;
}

.btn-view-more:hover {
    background: #2b4172;
    border-color: #2b4172;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(54, 80, 138, 0.35);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

#heroCarousel {
    width: 100%;
    height: 500px;
    overflow: hidden;
}


/*More gallery*/
.gl-05 {
    width: 100%;
    padding: 40px 0;
}

.gl-05__gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gl-05__row {
    display: flex;
    gap: 14px;
}

.gl-05__item {

    flex: var(--r) 1 0;
    /* aspect-ratio:var(--r); */

    overflow: hidden;

    border-radius: 18px;

    position: relative;

    background: #eee;

    transition: .45s;

    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);

}

.gl-05__item a {

    display: block;

    width: 100%;

    height: 100%;

}

.gl-05__item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1.1s;

}

.gl-05__item:hover {

    transform: translateY(-8px);

}

.gl-05__item:hover img {

    transform: scale(1.08);

}

.gl-05__caption {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 22px;

    color: #fff;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .82));

}

.gl-05__caption span {

    font-size: 13px;

    opacity: .8;

}

.gl-05__caption h4 {

    margin-top: 5px;

    font-size: 24px;

    font-weight: 700;

}

@media(max-width:991px) {

    .gl-05__row {

        flex-wrap: wrap;

    }

    .gl-05__item {

        flex: 1 1 calc(50% - 14px);

        aspect-ratio: 1;

    }

}

@media(max-width:576px) {

    .gl-05__item {

        flex: 1 1 100%;

    }

}


/* swipper */





.faunaSwiper {
    padding: 60px 0 70px;
}

.faunaSwiper .swiper-slide {
    width: 340px;
}

.fauna-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    transition: .4s;

}

.fauna-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.badge {
    background: #2a4173;
    color: #fff;

    padding: 8px 15px;

    border-radius: 30px;

    font-weight: 500;

    margin-bottom: 15px;

}

.swiper-pagination {
    display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    display: none !important;
}





.swiper-slide {

    transition: .5s;

}

.swiper-slide-active {

    transform: scale(1.1);

}

.swiper-slide:not(.swiper-slide-active) {

    /* opacity:.7; */

    /* filter:blur(.5px); */

}

.swiper-pagination-bullet {

    width: 12px;

    height: 12px;

}

.swiper-pagination-bullet-active {

    background: #2a4173;

}

@media(max-width:768px) {

    .section-title {

        font-size: 30px;

    }

    .faunaSwiper .swiper-slide {

        width: 260px;

    }

    .fauna-card img {

        height: 180px;

    }



    .card-body h4 {
        font-size: 20px;

    }

}

/* accessbility bar style */
#uw-heading {
    display: none;
}

.short-key {
    display: none;
}

#uw-widget-custom-trigger {
    top: 50%;
}

.copyright-text {
    display: none !important;
}

.fauna-card .card-body {
    height: 230px;
}


/* for about logo on landing page  11-08-2026*/
@media (min-width: 576px) {
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

/* About ZSI - Logo Images */
.about-content .brand-item img {
    width: 180px !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


/* =========================================
   WEBSITE UNDER CONSTRUCTION POPUP
========================================= */

.construction-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: rgba(21, 38, 75, 0.82);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
}

.construction-overlay.show {
    opacity: 1;
    visibility: visible;
}

.construction-modal {
    width: 100%;
    max-width: 720px;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);

    transform: translateY(30px) scale(0.96);

    transition: all 0.4s ease;
}

.construction-overlay.show .construction-modal {
    transform: translateY(0) scale(1);
}

/* Close button */

.construction-close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: #ffffff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition: 0.3s;
}

.construction-close:hover {
    background: #ffffff;
    color: #263f76;

    transform: rotate(90deg);
}

/* Header */

.construction-content {
    text-align: center;

    padding: 48px 55px 40px;

    background:
        radial-gradient(
            circle at top right,
            rgba(198, 166, 95, 0.18),
            transparent 30%
        ),
        #f4f0dc;
}

/* Icon */

.construction-icon {
    width: 82px;
    height: 82px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #263f76;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    box-shadow:
        0 8px 20px rgba(38, 63, 118, 0.25);

    animation: constructionFloat 2.5s ease-in-out infinite;
}

@keyframes constructionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Label */

.construction-label {
    display: inline-block;

    padding: 6px 16px;

    background: #263f76;

    color: #ffffff;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 14px;
}

/* Heading */

.construction-content h2 {
    margin: 0 0 15px;

    color: #263f76;

    font-size: 38px;

    font-weight: 800;

    text-transform: uppercase;
}

.construction-content h2::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    background: #c6a65f;

    margin: 14px auto 0;

    border-radius: 10px;
}

/* Description */

.construction-content p {
    max-width: 560px;

    margin: 18px auto 5px;

    color: #333333;

    font-size: 16px;

    line-height: 1.7;
}

.construction-note {
    margin-top: 0 !important;

    color: #606060 !important;
}

/* Status */

.construction-status {
    max-width: 400px;

    margin: 25px auto;

    padding: 14px 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    text-align: left;

    background: #ffffff;

    border: 1px solid #d9c58d;

    border-radius: 12px;
}

.status-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #263f76;

    color: #ffffff;

    font-size: 25px;
}

.construction-status strong {
    display: block;

    color: #263f76;

    font-size: 17px;
}

.construction-status small {
    display: block;

    margin-top: 3px;

    color: #606060;

    font-size: 13px;
}

/* Button */

.construction-btn {
    border: none;

    padding: 12px 28px;

    border-radius: 30px;

    background: #263f76;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 7px 18px rgba(38, 63, 118, 0.25);
}

.construction-btn:hover {
    background: #c6a65f;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(198, 166, 95, 0.35);
}

/* Footer */

.construction-footer {
    padding: 13px 20px;

    text-align: center;

    background: #263f76;

    color: #ffffff;

    font-size: 13px;

    letter-spacing: 0.3px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .construction-overlay {
        padding: 15px;
    }

    .construction-content {
        padding: 42px 25px 30px;
    }

    .construction-content h2 {
        font-size: 28px;
    }

    .construction-content p {
        font-size: 15px;
    }

    .construction-icon {
        width: 70px;
        height: 70px;

        font-size: 32px;
    }

    .construction-status {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {

    .construction-content {
        padding: 38px 18px 25px;
    }

    .construction-content h2 {
        font-size: 24px;
    }

    .construction-label {
        font-size: 10px;
    }

    .construction-close {
        top: 10px;
        right: 10px;
    }
}