/* =================================================
   GLOBAL
================================================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
   
 
  
}

/* =================================================
   TOP HEADER (FIXED – ALL DEVICES)
================================================= */
/*.top-header {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background: #0a8f3c;*/
/*    font-size: 13px;*/
/*    color: #ffffff;*/
/*    z-index: 1032;*/
/*}*/

/*.top-header i {*/
/*    color: #ffffff;*/
/*}*/

/*.header-left span {*/
/*    margin-right: 12px;*/
/*    white-space: nowrap;*/
/*}*/

/*.header-divider {*/
/*    opacity: 0.6;*/
/*    color: #ffffff;*/
/*}*/

/*.social-icons i {*/
/*    color: #ffffff;*/
/*    font-size: 15px;*/
/*    margin-left: 16px;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*}*/

/*.social-icons i:hover {*/
/*    opacity: 0.8;*/
/*}*/

/* Mobile header alignment */
/*@media (max-width: 768px) {*/
/*    .header-left,*/
/*    .social-icons {*/
/*        justify-content: center;*/
/*        width: 100%;*/
/*    }*/

/*    .social-icons {*/
/*        margin-top: 6px;*/
/*    }*/
/*}*/

/* =================================================
   NAVBAR
================================================= */
/*.main-navbar {*/
/*    position: fixed;*/
/*    top: 36px; */
/*    left: 0;*/
/*    width: 100%;*/
/*    z-index: 1031;*/
/*}*/

/*.navbar-custom {*/
/*    background: linear-gradient(135deg, #E7FFE7 0%, #C8F4C8 30%, #A0DDA0 100%);*/
/*    backdrop-filter: blur(8px);*/
/*}*/

/*.navbar {*/
/*    padding: 10px ;*/
/*}*/

/* Logo */
/*.navbar-brand {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.navbar-brand img {*/
/*    max-height: 85px;*/
/*    max-width: 220px;*/
/*    object-fit: contain;*/
    
/*}*/

/* Nav links */
/*.navbar-nav .nav-link {*/
/*    color: #0b0f14 !important;*/
/*    font-weight: 600;*/
/*    padding: 8px 14px;*/
/*}*/

/*.navbar-nav .nav-link:hover {*/
/*    color: #2e7d32 !important;*/
/*}*/

/* Dropdown */
/*.dropdown-menu {*/
/*    border-radius: 12px;*/
/*    border: none;*/
/*    box-shadow: 0 10px 25px rgba(0,0,0,0.15);*/
/*}*/

/*.dropdown-item:hover {*/
/*    background: #2e7d32;*/
/*    color: #ffffff;*/
/*}*/

/* Buttons */
/*.btn-square {*/
/*    background-color: #198754;*/
/*    border-color: #198754;*/
/*    color: #ffffff;*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    padding: 8px 22px;*/
/*    border-radius: 0;*/
/*}*/

/* Toggler */
/*.navbar-toggler {*/
/*    border: 1px solid #2e7d32;*/
/*    padding: 6px 10px;*/
/*    border-radius: 8px;*/
/*}*/

/*.navbar-toggler-icon {*/
/*    background-image: none;*/
/*    font-size: 22px;*/
/*    color: #2e7d32;*/
/*}*/

/* =================================================
   HERO SECTION
================================================= */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #E7FFE7 0%, #C8F4C8 30%, #A0DDA0 100%);
    color: #000;
    position: relative;
    overflow: hidden;
}

/* Hero text */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(90deg, #0a8f3c, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 20px 0 30px;
}

/* Glass card */
.hero-glass {
    background: rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 18px;
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.hero-glass img {
    border-radius: 18px;
}

/* =================================================
   RESPONSIVE (MOBILE & TABLET FIX)
================================================= */
@media (max-width: 991px) {

    /* Navbar will not overlap header */
    .main-navbar {
        position: sticky;
        top: 0;
    }

    body {
        padding-top: 80px; /* only header height */
    }

    .navbar-brand img {
        max-height: 65px;
        max-width: 200px;
    }

    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {

    body {
        padding-top: 70px;
    }

    .navbar-brand img {
        max-height: 55px;
        max-width: 180px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-btns .btn {
        width: 100%;
        margin-bottom: 12px;
    }
}


/* ==============================
   VIDEO SECTION
============================== */
.video-section {
    background: linear-gradient(135deg, #f1fff1, #d9f5d9);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b6e3c;
}

.section-subtitle {
    font-size: 15px;
    color: #444;
}

/* Video Card */
.video-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Video */
.video-card video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #000;
}

/* Video Info */
.video-info {
    padding: 16px;
}

.video-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #0b6e3c;
    margin-bottom: 6px;
}

.video-info p {
    font-size: 14px;
    color: #555;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 768px) {

    .section-title {
        font-size: 26px;
    }

    .video-card video {
        height: 200px;
    }
}

/* =================================================
   Counter
================================================= */
 .impact-section {
            background: linear-gradient(135deg, #E7FFE7 0%, #C8F4C8 30%, #A0DDA0 100%);
            position: relative;
            overflow: hidden;
        }

        /* SAME DIAGONAL EFFECT LIKE HERO */
        .impact-section::before {
            content: "";
            position: absolute;
            top: 0;
            right: -120px;
            width: 55%;
            height: 100%;
            background: linear-gradient(135deg, #79D279, #4CAF50);
            transform: skewX(-20deg);
            opacity: 0.30;
        }

        /* Green color theme */
        :root {
            --impact-green: #1B5E22;
        }

        .impact-heading {
            color: #2c3e50 !important;
            font-weight: 800;
            font-size: 2.4rem;
        }


        .impact-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--impact-green);
        }

        .card-title-green {
            color: var(--impact-green);
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            margin: 0;
        }

        .impact-sub {
            font-size: 1rem;
            color: #333;
            max-width: 260px;
            margin: auto;
        }
 /* branc loog by a bical */ 

        /* --- Brand Section Wrapper --- */
        .brand-carousel {
            padding: 80px 0;
            background-color: #f9f9f9;
            font-family: sans-serif;
        }

        .carousel-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Modern Grid Layout (Ensures Equal Size & Alignment) --- */
        .brand-grid {
            display: grid;
            /* Creates columns that are at least 180px, but fill space equally */
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px; /* Equal spacing between all cards */
        }

        /* --- Brand Cards --- */
        .brand-card {
            background: #ffffff;
            border: 1px solid #eee;
            border-radius: 12px;
            /* Keeps every card a perfect rectangle regardless of content */
            aspect-ratio: 16 / 9; 
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            overflow: hidden;
        }

        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: #0a8f3c; /* NGO Green Accent */
        }

        /* --- Image Handling --- */
        .brand-card img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain; /* Prevents logo stretching */
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .brand-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1); /* Subtle zoom for interaction */
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 991px) {
            .brand-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .brand-carousel {
                padding: 40px 0;
            }
            .brand-grid {
                /* Forces exactly 2 cards per row on mobile for symmetry */
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .brand-card {
                padding: 10px;
            }
        }
 
 
 
 
 
/* =================================================
   Eampanement
================================================= */
        .theme-bg {
            background: linear-gradient(135deg, #E7FFE7 0%, #C8F4C8 30%, #A0DDA0 100%);
        }

        /* ACCREDITATION CARD */
        .accredit-card {
            border: none;
            border-radius: 20px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            transition: all .35s ease;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
        }

        /* TOP HIGHLIGHT STRIP */
        .accredit-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #198754, #7ed957);
        }

        /* IMAGE STYLE */
        /* .accredit-card img {
            max-height: 140px;
            object-fit: contain;
            transition: transform .4s ease;
        } */
.accredit-card img{
    width:100%;
    height:160px;
    object-fit:cover;
}

        /* HOVER EFFECT */
        .accredit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
        }

        .accredit-card:hover img {
            transform: scale(1.05);
        }

        /* TITLE */
        .accredit-card h6 {
            font-size: 16px;
            margin-top: 10px;
            color: #145c32;
        }

        /* TEXT */
        .accredit-card p {
            font-size: 14px;
            color: #555;
        }

        /* CAROUSEL ARROWS */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #198754;
            border-radius: 50%;
            padding: 15px;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .accredit-card img {
                max-height: 120px;
            }
        }

/* =================================================
   Miyawaki Plantation
================================================= */
.theme-bg {
  background: #f6f9f7;
}
.section-title {
  border-bottom: none !important;
  text-decoration: none !important;
}

.section-title::after,
.section-title::before {
  display: none !important;
  content: none !important;
}

/* Section title */
.section-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #008037;
}

/* Main card */
.plantation-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.plantation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Logo Card */
.logo-card {
  height: 90px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px;
  box-shadow: inset 0 0 0 1px #e0e0e0;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* IMPORTANT: logo poora dikhega */
}

/* Image Card */
.image-card {
  overflow: hidden;
  border-radius: 14px;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.plantation-card:hover .image-card img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .logo-card {
    height: 80px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.3rem;
  }

  .logo-card {
    height: 70px;
  }
}

/* =================================================
   About Section 
================================================= */
.about-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, #e9fff0, #c9f1d6);
}

/* CONTENT BOX */
.about-hero-content {
    padding: 30px;
    background: #ffffffcc;
    border-left: 5px solid #0a8a43;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TEXT */
.about-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0a8a43;
    margin-bottom: 8px;
}

.about-hero-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* IMAGE WRAPPER */
.about-hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE – HEIGHT AUTO (CONTENT BASED) */
.about-hero-img img {
    width: 100%;
    height: auto;           
    max-height: 420px;      
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    background: #fff;
    padding: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
        text-align: center;
    }

    .about-hero-content {
        border-left: none;
        border-top: 4px solid #0a8a43;
    }

    .about-hero-content h1 {
        font-size: 30px;
    }

    .about-hero-content h3 {
        font-size: 18px;
    }

    .about-hero-img {
        margin-top: 30px;
    }

    .about-hero-img img {
        max-height: none;
    }
}

/* =================================================
   Leadership
================================================= */
/* ---------------- THEME BACKGROUND ---------------- */
.theme-bg {
  background: linear-gradient(135deg, #E7FFE7 0%, #C8F4C8 30%, #A0DDA0 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ---------------- SECTION TITLE ---------------- */

.section-title,
h3.text-center {
  font-weight: 700;
  color: #1b5e20;
}

/* ---------------- LEADER CARD ---------------- */
.leader-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Card hover */
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ---------------- IMAGE CARD ---------------- */
.leader-img-card {
  width: 100%;
  height: 450px;        
  overflow: hidden;
}

.leader-img-card img {
  width: 100%;
  height: 100%;     
  object-fit: cover;      
  display: block;
  transition: transform 0.4s ease;
}

/* Image hover zoom */
.leader-card:hover .leader-img-card img {
  transform: scale(1.05);
}

/* ---------------- CONTENT ---------------- */
.leader-content {
  padding: 20px 25px 30px;
  text-align: center;
}

.leader-content h5 {
  font-size: 1.25rem;
  color: #1b5e20;
  font-weight: 700;
}

.leader-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  mar