
body {
    font-family: Arial;
    background: #f4f4f4;
}

/* BLOG SECTION */
#blogContainer {
    display: flex;
    gap: 25px;
    padding: 40px;
    overflow: hidden; /* important for slider */
    position: relative;
}

/* TRACK (we will animate this) */
.blog-track {
    display: flex;
    gap: 25px;
    animation: scrollBlog 25s linear infinite;
}

/* CARD */
.blog-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 1px; /* sharp edges */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* TEXT */
.blog-card h2 {
    font-size: 16px;
    padding: 10px;
    margin: 0;
}

.blog-card p {
    font-size: 13px;
    padding: 0 10px 10px;
    color: #555;
}

.blog-card a {
    display: block;
    padding: 10px;
    text-decoration: none;
    font-size: 13px;
    color: #00a86b;
    font-weight: bold;
}

/* ANIMATION */
@keyframes scrollBlog {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* HERO SECTION */
.report-hero {
    position: relative;
    height: 100vh;
    background: url("../assets/images/blog-bg.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 30px;
}

/* DARK OVERLAY */
.report-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1.2s ease;
}

/* TEXT STYLING */
.org-name {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #00d084;
}

.main-title {
    font-size: 80px;
    font-weight: bold;
    margin: 10px 0;
}

.sub-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00d084;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #00b36b;
    transform: translateY(-3px);
}




/* SECTION BASE */
.report-section {
    background: #fff;
    padding: 80px 10%;
}

/* ROW LAYOUT */
.report-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* REVERSE (ALTERNATING) */
.report-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.report-img {
    flex: 1;
}

.report-img img {
    width: 100%;
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
}

/* TEXT */
.report-text {
    flex: 1;
}

.report-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.report-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}


/* SECTION */
.news-section {
    background: #fff;
    padding: 60px 10%;
}

/* STACK VERTICALLY */
.news-container {
    display: flex;
    flex-direction: column; /* 🔥 KEY CHANGE */
    gap: 40px;
}

/* INFO BOXES */
.news-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* BOX STYLE */
.info-box {
    display: flex;
    gap: 15px;
  
    padding: 20px;
    border-radius: 10px;
    align-items: flex-start;
}

/* ICON */
.info-box i {
    font-size: 22px;
    color: #00a86b;
    margin-top: 5px;
}

/* TEXT */
.info-box h3 {
    margin: 0;
    font-size: 18px;
}

.info-box p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* TICKER SECTION */
/* SECTION */
.news-section {
    background: #fff;
    padding: 60px 0; /* 🔥 remove side padding */
}

/* MAIN CONTENT STILL CENTERED */
.news-container {
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* FULL WIDTH TICKER WRAPPER */
.news-full-width {
    width: 100%;
    margin-top: 40px;
}

/* TITLE */
.news-full-width h2 {
    padding: 0 10%;
    margin-bottom: 15px;
    font-size: 26px;
}

/* 🔥 FULL WIDTH YELLOW BAR */
.news-ticker {
    width: 100%;
    background: #ffcc00;
    padding: 15px 0;
    overflow: hidden;
}

/* TRACK */
.news-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    padding-left: 100%;
}

/* ITEMS */
.news-item {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}



/* =========================
   GLOBAL CONTAINER
========================= */
.wildlifeMainContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    line-height: 1.7;
}

/* =========================
   HERO SECTION
========================= */
.wildlife-hero {
    text-align: center;
    margin-bottom: 50px;
}

.wildlife-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.wildlife-hero p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #475569;
}

/* =========================
   IMAGE GALLERY
========================= */
.wildlife-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0 60px;
}

.wildlife-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.wildlife-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   CONTENT SECTION
========================= */
.wildlife-content {
    max-width: 900px;
    margin: 0 auto;
}

.wildlife-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #065f46;
    font-weight: 600;
}

.wildlife-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #334155;
}

/* =========================
   SUBTLE DIVIDER EFFECT
========================= */
.wildlife-content h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #22c55e;
    margin-top: 8px;
    border-radius: 5px;
}

/* =========================
   HOVER READING EFFECT
========================= */
.wildlife-content p:hover {
    color: #0f172a;
    transition: 0.3s;
}




/* =========================
   SECOND SECTION
========================= */
.wildlifeDeepSection {
    width: 100%;
    padding: 80px 20px;
    background: #f8fafc;
}

.wildlife-deep-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* TEXT */
.wildlife-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.wildlife-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #065f46;
}

.wildlife-text p {
    margin-bottom: 18px;
    color: #334155;
    font-size: 1.05rem;
}

/* ICON LIST */
.wildlife-icons-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wildlife-icons-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #1e293b;
}

.wildlife-icons-list i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* IMAGE */
.wildlife-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .wildlife-deep-container {
        grid-template-columns: 1fr;
    }

    .wildlife-image img {
        height: 300px;
    }

    .wildlife-text h2 {
        font-size: 1.8rem;
    }
}
/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 900px) {
    .wildlife-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .wildlife-hero h1 {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .wildlife-gallery {
        grid-template-columns: 1fr;
    }

    .wildlife-gallery img {
        height: 200px;
    }

    .wildlife-hero h1 {
        font-size: 1.8rem;
    }

    .wildlife-hero p {
        font-size: 1rem;
    }

    .wildlife-content h2 {
        font-size: 1.5rem;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-container {
        flex-direction: column;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .report-row {
        flex-direction: column;
        text-align: center;
    }

    .report-row.reverse {
        flex-direction: column;
    }

    .report-img img {
        height: 250px;
    }
}

/* ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-title {
        font-size: 50px;
    }

    .sub-title {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 16px;
    }
}