/* ==========================================
   THE NATURE COMPACT WEBSITE STYLESHEET
   Version: 1.0
========================================== */

/* ===========================
   GOOGLE FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ===========================
   ROOT VARIABLES
=========================== */
:root {
    --primary-color: #2F5D2F;
    --secondary-color: #C9A227;
    --dark-green: #1E4620;
    --light-bg: #F8F9FA;
    --text-color: #555555;
    --heading-color: #222222;
    --white: #FFFFFF;
    --black: #000000;

    --transition: all 0.4s ease;
}


/* ===========================
   RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
}


/* ===========================
   TYPOGRAPHY
=========================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}


/* ===========================
   TOP BAR
=========================== */

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    padding: 10px 0;
}

.top-contact a {
    color: var(--white);
    margin-right: 25px;
}

.top-contact a:hover {
    color: var(--secondary-color);
}

.top-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.social-icons span {
    margin-right: 10px;
}

.social-icons a {
    color: var(--white);
    margin-left: 12px;
    font-size: 15px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}


/* ===========================
   NAVBAR
=========================== */

.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    padding: 0;
}

.logo {
    max-height: 70px;
    width: auto;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 14px !important;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {

    color: var(--primary-color);

    border-bottom: 2px solid var(--secondary-color);
}

.navbar-nav .nav-link:hover {

    color: var(--primary-color);

    border-bottom: 2px solid var(--secondary-color);
}




/* ===========================
   DROPDOWN MENU
=========================== */

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    padding: 10px 0;
}

.dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    color: var(--heading-color);
}

.dropdown-item:hover {
    background: rgba(47, 93, 47, 0.08);
    color: var(--primary-color);
}


/* ===========================
   DONATE BUTTON
=========================== */

.donate-btn {

    position: relative;

    color: #2F5D2F;

    background: transparent;

    border: 2px solid #C9A227;

    padding: 10px 28px;

    font-weight: 600;

    border-radius: 0;

    transition: .4s;
}

.donate-btn::before {

    content: '';

    position: absolute;

    top: 4px;

    left: 4px;

    right: 4px;

    bottom: 4px;

    border: 1px solid #C9A227;

    pointer-events: none;
}

.donate-btn:hover {

    background: #C9A227;

    color: #fff;
}



.dropdown-toggle::after {
    display: none !important;
}


.about-title {

    padding-left: 0;
}

.about-title::before,
.about-title::after {

    display: none;
}

.about-title span {

    color: #C9A227;
}



.about-title {

    margin-bottom: 15px;
}

.about-title span {

    display: block;

    color: #C9A227;

    margin-bottom: 5px;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-heading {

    font-size: 42px;

    font-weight: 700;

    line-height: 1.15;

    margin-bottom: 8px;

    color: #2F5D2F;
}


.about-title h2 {

    margin: 0;

    font-size: 30px;

    color: #2F5D2F;
}


.about-btn {

    background: #2F5D2F;

    color: #fff;

    border-radius: 0;

    padding: 14px 35px;

    font-weight: 600;

    transition: .4s;
}

.about-btn:hover {

    background: #C9A227;

    color: #fff;
}


.about-gallery {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 20px;
}

.about-gallery img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: .4s;
}

.about-gallery img:hover {

    transform: scale(1.03);
}

@media(max-width:768px){

    .about-gallery{

        grid-template-columns: repeat(2,1fr);
    }

    .about-gallery img{

        height: 180px;
    }

}



/* ABOUT SECTION IMPROVEMENTS */

.about-title {

    margin-bottom: 20px;
}



.about-heading {

    font-size: 20px;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 5px;

    color: #2F5D2F;
}


.about-preview p {

    text-align: justify;

    margin-bottom: 20px;

    color: #555;

    line-height: 1.9;
}


.about-action {

    display: flex;

    justify-content: flex-end;

    margin-top: 30px;
}


.about-btn {

    background: #2F5D2F;

    color: #fff;

    border-radius: 0;

    padding: 14px 40px;

    font-weight: 600;

    transition: .4s;
}


.about-btn:hover {

    background: #C9A227;

    color: #fff;
}


@media (max-width: 768px) {

    .about-heading {

        font-size: 30px;

        white-space: normal;
    }

    .about-action {

        justify-content: flex-start;
    }
}

.back-to-top {

    z-index: 99999;
}


.hero-buttons .btn {

    border-radius: 0;

    padding: 15px 35px;

    font-weight: 600;
}


/* ===========================
   SECTION TITLE
=========================== */

.section-title {

    position: relative;

    margin-bottom: 60px;

    padding-left: 120px;

    text-align: left;
}

.contact-preview .section-title {

    margin-bottom: 25px;
}

.section-title::before {

    content: '';

    position: absolute;

    top: 15px;

    left: 0;

    width: 80px;

    height: 14px;

    background: #2F5D2F;
}

.section-title::after {

    content: '';

    position: absolute;

    top: 35px;

    left: 0;

    width: 45px;

    height: 14px;

    background: #2F5D2F;
}

.section-title h2 {

    font-size: 42px;

    font-weight: 700;

    color: #222;

    margin-bottom: 10px;
}

.section-title h2::after {

    display: none;
}

.section-title span {

    display: block;

    color: #C9A227;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ===========================
   BUTTONS
=========================== */

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary-custom {
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: var(--white);
}


/* ===========================
   GENERAL SECTIONS
=========================== */

section {
    padding: 100px 0;
}

.bg-light-custom {
    background: var(--light-bg);
}


/* ===========================
   CARDS
=========================== */

.custom-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: var(--white);
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.custom-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}


/* ===========================
   ICON BOX
=========================== */

.icon-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.icon-box:hover {
    transform: translateY(-10px);
}

.icon-box i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: rgba(47,93,47,0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 35px;
    margin-bottom: 25px;
}


/* ===========================
   COUNTERS
=========================== */

.counter-box {
    text-align: center;
    padding: 40px 20px;
}

.counter-box h2 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 700;
}

.counter-box p {
    font-weight: 600;
}


/* ===========================
   GALLERY
=========================== */

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* ===========================
   PARTNERS
=========================== */

.partner-logo {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.partner-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}


/* ===========================
   FOOTER
=========================== */

footer {
    background: var(--dark-green);
    color: rgba(255,255,255,0.8);
    padding-top: 80px;
}

.footer-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 10px;
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
}


/* ===========================
   BACK TO TOP
=========================== */

.back-to-top {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 70px;

    height: 70px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    background: #2F5D2F;

    border-radius: 50%;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transition: .4s;
}


.submenu-icon {

    font-size: 11px;

    margin-left: 6px;

    transition: .3s;
}

.show .submenu-icon {

    transform: rotate(45deg);
}
.back-to-top.show {

    opacity: 1;

    visibility: visible;
}

.back-to-top i {

    position: absolute;

    font-size: 20px;
}

.progress-ring {

    position: absolute;

    transform: rotate(-90deg);
}

.progress-ring-circle-bg {

    stroke: rgba(255,255,255,.2);
}

.progress-ring-circle {

    stroke: #C9A227;

    stroke-linecap: round;

    stroke-dasharray: 188.5;

    stroke-dashoffset: 188.5;

    transition: stroke-dashoffset .1s linear;
}







.back-to-top.show {

    opacity: 1;

    visibility: visible;

    border-radius: 50%;

    transform: translateY(0) rotate(360deg);
}

.back-to-top:hover {

    background: #C9A227;

    transform: translateY(-5px) rotate(360deg);
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--white);
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 991px) {

    .top-bar {
        text-align: center;
    }

    .top-contact {
        margin-bottom: 10px;
    }

    .social-icons {
        text-align: center !important;
    }

    .navbar-nav {
        padding-top: 20px;
    }

    .navbar-nav .nav-item {
        margin-left: 0;
    }

    .donate-btn {
        margin-top: 15px;
        display: inline-block;
    }
}

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .logo {
        max-height: 55px;
    }

    .counter-box h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {

    .top-contact a {
        display: block;
        margin-bottom: 5px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}




/* HERO SECTION */
.hero-slide {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 750px;
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(201,162,39,.9);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 58px;
    color: #fff;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255,255,255,.9);
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: #C9A227;
}

.about-preview img {
    transition: .4s;
}

.about-preview img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-slide {
        min-height: 75vh;
    }
}





/* =====================================
   IMPACT STATISTICS SECTION
===================================== */

.impact-section {
    background:
        linear-gradient(rgba(30,70,32,.92),
        rgba(30,70,32,.92)),
        url('../images/impact-bg.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #fff;
}

.impact-section .section-title span {
    color: #C9A227;
}

.impact-section .section-title h2 {
    color: #fff;
}

/* IMPACT SECTION TITLE */

.impact-section .section-title {

    text-align: left;
}


/* Make the two decorative lines yellow */

.impact-section .section-title::before,
.impact-section .section-title::after {

    background: #C9A227;
}


/* Subtitle aligned with title */

.impact-subtitle {

    max-width: 700px;

    margin: 25px 0 0 0;

    color: rgba(255,255,255,.85);

    text-align: left;
}

.impact-card {
    background: rgba(255,255,255,.08);

    backdrop-filter: blur(8px);

    border-radius: 20px;

    padding: 40px 25px;

    transition: all .4s ease;

    height: 100%;
}

.impact-card:hover {
    transform: translateY(-10px);

    background: rgba(255,255,255,.12);
}

.impact-icon {
    width: 90px;

    height: 90px;

    line-height: 90px;

    border-radius: 50%;

    background: rgba(201,162,39,.15);

    margin: auto auto 25px;

    font-size: 36px;

    color: #C9A227;
}

.impact-card h2 {
    font-size: 52px;

    font-weight: 700;

    color: #fff;

    display: inline-block;
}

.plus-sign {
    font-size: 28px;

    font-weight: 700;

    color: #C9A227;
}

.impact-card h5 {
    margin-top: 20px;

    color: #fff;

    font-weight: 600;
}

.impact-card p {
    color: rgba(255,255,255,.80);

    margin-top: 15px;
}

@media (max-width: 768px) {

    .impact-card h2 {
        font-size: 42px;
    }

    .impact-icon {
        width: 75px;
        height: 75px;
        line-height: 75px;
        font-size: 28px;
    }

}





/* =====================================
   FEATURED PROJECTS
===================================== */

.featured-projects {
    background: #F8F9FA;
}

.projects-subtitle {

    max-width: 750px;

    margin: 25px 0 0 0;

    color: #666;

    text-align: left;
}

.project-card {
    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 5px 25px rgba(0,0,0,.08);

    transition: all .4s ease;

    height: 100%;
}

.project-card:hover {
    transform: translateY(-12px);

    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.project-image {
    position: relative;

    overflow: hidden;
}

.project-image img {
    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .5s;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-category {
    position: absolute;

    top: 20px;

    left: 20px;

    background: #C9A227;

    color: #fff;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;
}

.project-content {
    padding: 35px 30px;
}

.project-icon {
    width: 70px;

    height: 70px;

    line-height: 70px;

    text-align: center;

    background: rgba(47,93,47,.1);

    border-radius: 50%;

    color: #2F5D2F;

    font-size: 28px;

    margin-bottom: 25px;
}

.project-content h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}

.project-content p {
    color: #666;

    margin-bottom: 30px;
}

.project-footer {
    border-top: 1px solid #eee;

    padding-top: 20px;
}

.project-link {
    color: #2F5D2F;

    font-weight: 600;
}

.project-link i {
    margin-left: 8px;

    transition: .3s;
}

.project-link:hover {
    color: #C9A227;
}

.project-link:hover i {
    transform: translateX(5px);
}




/* =====================================
   LATEST NEWS & BLOG
===================================== */

.latest-news {
    background: #ffffff;
}

.news-subtitle {

    max-width: 750px;

    margin: 25px 0 0 0;

    color: #666;

    text-align: left;
}

.news-card {
    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 5px 25px rgba(0,0,0,.08);

    transition: all .4s ease;

    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.news-image {
    position: relative;

    overflow: hidden;
}

.news-image img {
    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .5s;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-category {
    position: absolute;

    top: 20px;

    left: 20px;

    background: #2F5D2F;

    color: #fff;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    margin-bottom: 20px;

    font-size: 14px;

    color: #777;
}

.news-meta span {
    margin-bottom: 8px;
}

.news-meta i {
    color: #C9A227;

    margin-right: 6px;
}

.news-content h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}

.news-content p {
    color: #666;

    margin-bottom: 25px;
}

.read-more {
    color: #2F5D2F;

    font-weight: 600;
}

.read-more i {
    margin-left: 8px;

    transition: .3s;
}

.read-more:hover {
    color: #C9A227;
}

.read-more:hover i {
    transform: translateX(5px);
}


/* =====================================
   FACEBOOK STYLE GALLERY
===================================== */

.gallery-subtitle {

    max-width: 750px;

    margin: 25px 0 0 0;

    color: #666;

    text-align: left;
}

.facebook-gallery {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 10px;

    border-radius: 20px;

    overflow: hidden;
}

.gallery-main {
    height: 520px;
}

.gallery-main img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    cursor: pointer;

    transition: .4s;
}

.gallery-main img:hover {
    transform: scale(1.03);
}

.gallery-side {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.gallery-side-item {
    position: relative;

    overflow: hidden;

    height: 255px;
}

.gallery-side-item img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    cursor: pointer;

    transition: .4s;
}

.gallery-side-item img:hover {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,.55);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 42px;

    font-weight: 700;
}


/* MOBILE */

@media (max-width: 768px) {

    .facebook-gallery {

        grid-template-columns: 1fr;
    }

    .gallery-main {

        height: 350px;
    }

    .gallery-side {

        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-side-item {

        height: 180px;
    }

}



/* ===========================
   PARTNERS SECTION
=========================== */

/* ===========================
   PARTNERS SECTION
=========================== */

.partner-card {

    background: #fff;

    height: 170px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    border: 1px solid #e9ecef;

    transition: .4s;

    overflow: hidden;
}


.partner-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


.partner-card img {

    max-width: 100%;

    max-height: 120px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: .4s;
}


.partner-card:hover img {

    transform: scale(1.05);
}


@media (max-width: 768px) {

    .partner-card {

        height: 140px;

        padding: 15px;
    }

    .partner-card img {

        max-height: 90px;
    }
}




/* ===========================
   CTA SECTION
=========================== */

.cta-section {
    background:
        linear-gradient(rgba(47,93,47,.85),
        rgba(47,93,47,.85)),
        url('../images/cta-bg.jpg');

    background-size: cover;

    background-position: center;

    color: #fff;
}

.cta-box h2 {
    color: #fff;

    font-size: 42px;

    margin-bottom: 20px;
}

.cta-box p {
    max-width: 700px;

    margin: auto;

    color: rgba(255,255,255,.9);
}




/* ===========================
   FOOTER
=========================== */

.footer-logo {
    max-height: 90px;
}

.newsletter-box {
    background: rgba(255,255,255,.08);

    border-radius: 20px;

    padding: 40px;

    margin-top: 20px;

    margin-bottom: 50px;
}

.newsletter-form {
    display: flex;

    overflow: hidden;

    border-radius: 50px;

    background: #fff;
}

.newsletter-form input {
    flex: 1;

    border: none;

    padding: 15px 25px;

    outline: none;
}

.newsletter-form button {
    background: #C9A227;

    color: #fff;

    border: none;

    padding: 15px 35px;

    font-weight: 600;

    transition: .3s;
}

.newsletter-form button:hover {
    background: #2F5D2F;
}

.footer-contact p {
    margin-bottom: 18px;
}

.footer-contact i {
    color: #C9A227;

    margin-right: 12px;
}

@media (max-width: 768px) {

    .newsletter-form {
        flex-direction: column;

        border-radius: 15px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-box {
        padding: 30px 20px;
    }

}


.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 30px;
}



/* =====================================
   SECTION ACTION BUTTONS
===================================== */

.section-button {

    display: flex;

    justify-content: flex-end;

    margin-top: 50px;
}


.section-btn {

    background: #2F5D2F;

    color: #fff;

    border: 2px solid #2F5D2F;

    border-radius: 0;

    padding: 14px 35px;

    font-weight: 600;

    transition: all .4s ease;
}


.section-btn:hover {

    background: #C9A227;

    border-color: #C9A227;

    color: #fff;
}


@media (max-width: 768px) {

    .section-button {

        justify-content: center;
    }
}



/* ===========================
   FOOTER LOGO
=========================== */

.footer-logo-box {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    padding: 15px;

    border-radius: 0;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}


.footer-logo {

    max-height: 90px;

    width: auto;

    display: block;
}




.project-sidebar {

    background: #fff;

    padding: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.project-sidebar .list-group-item {

    border: none;

    border-left: 4px solid transparent;
}

.project-sidebar .list-group-item:hover {

    border-left-color: #2F5D2F;
}

.project-sidebar a {

    color: #333;

    text-decoration: none;
}

.download-item {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding: 20px 0;

    border-bottom: 1px solid #eee;
}



.project-menu-item {

    border: none;

    border-bottom: 1px solid #e5e5e5 !important;

    padding: 18px 15px;
}


.project-menu-item:last-child {

    border-bottom: none !important;
}


.project-menu-item a {

    text-decoration: none;

    color: #2F5D2F;

    display: block;

    transition: .3s;
}




.project-menu-item:hover {

    background: #f8f9fa;
}


.project-menu-item:hover a {

    padding-left: 10px;

    color: #C9A227;
}


.active-project {

    background: #2F5D2F;
}


.active-project a {

    color: white !important;

    font-weight: 600;
}



/* ======================================
   INNER PAGE HEADER
====================================== */

.inner-page-header {

    background: #f5f6f8;

    padding: 50px 0;

    border-top: 1px solid #e9ecef;

    border-bottom: 1px solid #e9ecef;
}


.page-title-wrapper {

    display: flex;

    align-items: center;

    gap: 25px;
}


.page-icon {

    width: 80px;

    height: 80px;

    min-width: 80px;

    border-radius: 50%;

    background: rgba(47,93,47,.08);

    display: flex;

    align-items: center;

    justify-content: center;
}

.page-icon i {

    font-size: 32px;

    color: #2F5D2F;
}


.page-title-wrapper h1 {

    color: #2F5D2F;

    margin-bottom: 8px;

    font-size: 38px;

    font-weight: 700;
}


.page-title-wrapper p {

    color: #666;

    margin-bottom: 0;

    max-width: 650px;
}


.breadcrumb-wrapper {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 12px;

    margin-top: 10px;

    font-size: 15px;
}

.breadcrumb-wrapper a {

    color: #2F5D2F;

    font-weight: 600;
}

.breadcrumb-wrapper a:hover {

    color: #C9A227;
}

.breadcrumb-wrapper span {

    color: #888;
}

.breadcrumb-wrapper .active {

    color: #C9A227;

    font-weight: 700;
}







@media (max-width: 991px) {

    .inner-page-header {

        text-align: center;

        padding: 40px 0;
    }

    .page-title-wrapper {

        flex-direction: column;
    }

    .breadcrumb-wrapper {

        justify-content: center;

        margin-top: 25px;
    }
}


@media (max-width: 768px) {

    .page-title-wrapper h1 {

        font-size: 32px;
    }


    .page-icon {

        width: 75px;

        height: 75px;

        min-width: 75px;
    }


    .page-icon i {

        font-size: 30px;
    }
}



.nav-pills .nav-link {

    color: #2F5D2F;

    border: 1px solid #dcdcdc;

    border-radius: 0;

    margin-right: 10px;

    margin-bottom: 10px;

    background: #fff;

    font-weight: 600;
}


.nav-pills .nav-link:hover {

    background: #f5f5f5;
}


.nav-pills .nav-link.active {

    background: #2F5D2F;

    color: #fff;

    border-color: #2F5D2F;
}




.project-menu-item {

    border: none;

    border-bottom: 1px solid #e5e5e5;

    padding: 16px 15px;
}


.project-menu-item a {

    text-decoration: none;

    color: #333;

    display: block;
}


.active-project {

    background: #2F5D2F;
}


.active-project a {

    color: #fff !important;

    font-weight: 600;
}


.pagination .page-link {

    color: #2F5D2F;

    border-radius: 0;

    border: 1px solid #2F5D2F;

    font-weight: 600;
}


.pagination .page-link:hover {

    background: #2F5D2F;

    color: #fff;
}


.pagination .page-item.active .page-link {

    background: #2F5D2F;

    border-color: #2F5D2F;

    color: #fff;
}



.project-menu-item {

    border: none;

    border-bottom: 1px solid #e5e5e5;

    padding: 15px;
}


.project-menu-item a {

    display: block;

    text-decoration: none;

    color: #444;

    transition: all .3s ease;
}


.project-menu-item:hover {

    background: #f5f5f5;
}


/* ======================================
   ACTIVE PROJECT MENU
====================================== */

.active-project {

    background: #e9ecef !important;

    border-left: 4px solid #2F5D2F;

    position: relative;
}


.active-project a {

    color: #2F5D2F !important;

    font-weight: 700;
}




.gallery-card {

    position: relative;

    overflow: hidden;

    cursor: pointer;

    border-radius: 0;
}


.gallery-card img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: .5s;
}


.gallery-card:hover img {

    transform: scale(1.08);
}


.gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.65);

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: .4s;
}


.gallery-card:hover .gallery-overlay {

    opacity: 1;
}


.gallery-badge {

    background: #2F5D2F;

    color: #fff;

    padding: 5px 12px;

    margin-bottom: 15px;

    font-size: 13px;
}


.gallery-overlay h5 {

    color: #fff;

    text-align: center;

    margin-bottom: 15px;

    font-size: 18px;

    font-weight: 600;

    text-shadow: 0 2px 6px rgba(0,0,0,.8);

    padding: 0 15px;
}


.gallery-overlay i {

    font-size: 2rem;

    color: #FFC107;
}



#imageModal .modal-dialog {

    max-width: 60vw;
}

#imageModal .modal-content {

    background: transparent;
}

#imageModal img {

    width: 100%;

    max-height: 85vh;

    object-fit: contain;

    display: block;

    margin: auto;

    border-radius: 8px;
}




.modal-image-title {

    color: #fff;

    text-align: center;

    margin-top: 20px;

    font-size: 20px;

    font-weight: 600;

    text-shadow: 0 2px 6px rgba(0,0,0,.8);
}


#imageModal .modal-content {

    background: transparent;
}

#imageModal {

    background: rgba(0,0,0,.85);
}


@media (max-width: 768px) {

    #imageModal .modal-dialog {

        max-width: 90vw;
    }
}

#imageModal .btn-close {

    opacity: 1;
}




.modal-video-title {

    color: #fff;

    text-align: center;

    margin-top: 20px;

    font-size: 20px;

    font-weight: 600;

    text-shadow: 0 2px 6px rgba(0,0,0,.8);
}

#videoModal {

    background: rgba(0,0,0,.85);
}

#videoModal .modal-dialog {

    max-width: 70vw;
}

#videoModal iframe {

    border-radius: 10px;

    border: none;
}

@media (max-width: 768px) {

    #videoModal .modal-dialog {

        max-width: 95vw;
    }
}









.resources-section {

    background: #f8f9fa;
}

.resource-category {

    margin-bottom: 50px;
}

.resource-category h3 {

    color: var(--primary-color);

    font-weight: 700;

    margin-bottom: 25px;

    border-bottom: 2px solid #e9ecef;

    padding-bottom: 15px;
}

.resource-group {

    width: 65%;

    background: #fff;

    margin-bottom: 15px;

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0,0,0,.05);

    overflow: hidden;
}

.resource-toggle {

    width: 100%;

    border: none;

    background: #fff;

    padding: 20px 25px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    cursor: pointer;

    color: var(--heading-color);

    font-weight: 600;

    text-align: left;

    transition: .3s;
}


/* Resource title */
.resource-toggle span {

    flex: 1;

    text-align: left;
}

.resource-toggle i {

    margin-left: auto;

    width: 25px;

    text-align: center;
}



.resource-toggle[aria-expanded="true"] i {

    transform: rotate(45deg);

    color: var(--primary-color);
}

.resource-body {

    padding: 0 25px 25px;
}

.download-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid #eee;
}

.download-item:last-child {

    border-bottom: none;
}

.download-item h6 {

    color: var(--primary-color);

    margin-bottom: 8px;
}

.download-item p {

    margin-bottom: 10px;

    color: #666;
}

.download-item small {

    color: #999;
}

.download-actions {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-right: 80px;
}

@media (max-width: 768px) {

   

    .resource-toggle span {

    width: calc(100% - 50px);
}

.resource-toggle i {

    width: 50px;
}

    .download-item {

        flex-direction: column;

        align-items: flex-start;
    }

    .download-actions {

        margin-top: 15px;
    }
}

@media (max-width: 991px) {

    .resource-group {

        width: 100%;
    }
}



.download-actions .btn {

    min-width: 110px;

    border-radius: 4px;

    font-weight: 600;
}

#previewModal .modal-title {

    color: #2F5D2F;

    font-weight: 700;
}

#previewDescription {

    line-height: 1.8;

    color: #666;
}




.contact-item {

    display: flex;

    gap: 20px;

    align-items: flex-start;
}

.contact-item i {

    width: 60px;

    height: 60px;

    min-width: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(47,93,47,.08);

    color: #2F5D2F;

    font-size: 22px;
}

.contact-item h6 {

    color: #2F5D2F;

    margin-bottom: 8px;

    font-weight: 700;
}

.contact-item p {

    margin: 0;

    color: #666;
}

.contact-form-wrapper {

    background: #fff;

    padding: 25px 30px;

    box-shadow: 0 5px 25px rgba(0,0,0,.08);

    height: 100%;
}

.contact-form-wrapper .form-control {

    border-radius: 0;

    padding: 14px 18px;
}

.contact-form-wrapper .form-control:focus {

    border-color: #2F5D2F;

    box-shadow: none;
}


.dropdown-item.active {

    background: rgba(47,93,47,.08);

    color: #2F5D2F;

    font-weight: 600;
}

.view-details-link{
    color:#C9A227;
    font-weight:600;
    text-decoration:none;
}

.view-details-link:hover{
    color:#2F5D2F;
}










