:root {
    --maxw: 1200px;
    --accent: #2f6a2d;
    /* dark green for headings/buttons */
    --accent-cta: #4CAF50;
    /* brighter green if needed */
    --muted: #6d6d6d;
    --bg: #fff;
    --card: #ffffff;
    --footer: #2F5417;
    --stat-bg: #F9FFE6;
    --radius: 12px;
    --gap: 20px;
}

* {
    box-sizing: border-box;
    transition: all 0.3s ease;
    /* applies to all elements */
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, Arial, Helvetica, sans-serif !important;
    background: var(--bg);
    color: #222 !important;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(2px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Left logo */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 36px;
    width: auto
}

.brand .title {
    font-weight: 700;
    color: var(--accent)
}

/* Right side: nav + icons */
.right-side {
    display: flex;
    align-items: center;
    gap: 24px;
    /* space between nav and icons */
}

nav.primary {
    display: flex;
    gap: 22px;
    align-items: center;
}

nav.primary a {
    color: #222;
    text-decoration: none;
    /* font-weight: 500; */
    font-size: 14px;
    position: relative;
    /* needed for underline effect */
    transition: color 0.3s ease;
}

/* Simple color change */
nav.primary a:hover {
    color: var(--accent-cta);
}

/* Optional: Animated underline effect */
nav.primary a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    /* space below text */
    width: 0;
    height: 2px;
    background: var(--accent-cta);
    transition: width 0.3s ease;
}

nav.primary a:hover::after {
    width: 100%;
}

nav.primary a.btn-store::after {
    width: 0;
}

/* Desktop dropdown */
.primary .dropdown {
    position: relative;
    display: inline-block;
}

.primary .submenu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 10px 0;
}

.primary .submenu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}

.primary .submenu a:hover {
    background: #f2f2f2;
}

.primary .dropdown:hover .submenu {
    display: block;
    /* Show on hover */
}

/* Mobile dropdown styles */
.mobile-dropdown .mobile-toggle {
    background: none;
    border: none;
    padding: 6px 0;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    color: #222;
    text-decoration: none;
    /* font-weight: 500; */
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
    font-family: "Poppins", system-ui, Arial, Helvetica, sans-serif;
}

.mobile-submenu a {
    padding: 4px 0;
    display: block;
}

.btn-store {
    background: var(--accent-cta);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(43, 118, 47, 0.12);
    text-decoration: none;
    min-width: 124px;
    text-align: center;
    transition: all 0.3s ease;
    display:none;
}

.btn-store:hover {
    background-color: var(--footer);
}

/* User + cart + menu */
.icons {
    display: flex;
    align-items: center;
    gap: 14px;
}
.icons .icon{
    display:none;
}
.icons .xoo-wsc-sc-cont{
    display:none;
}

.icons .icon img {
    height: 22px;
    width: 22px;
    display: block;
}

/* Mobile menu button */
.menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 22px;
}

/* HERO (uses your uploaded screenshot as background) */
.hero {
    width: 100%;
    /* <- Replace with your hero image */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 411px 0 53px;
    position: relative;
    min-height: 692px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.22) 40%, rgba(0, 0, 0, 0.18) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 24px
}

.hero-content {
    max-width: 680px
}

.hero h1 {
    margin: 0;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.03;
    font-weight: 700;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0 20px;
    font-size: 16px;
    max-width: 560px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-subpages {
    width: 100%;
    /* <- Replace with your hero image */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 0 90px;
    position: relative;
    min-height: 398px;
    text-align: center;
    display: flex;
    align-items: center;
}

.hero-subpages::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(90deg, rgba(45, 80, 22, 0.9) 40%, rgba(102, 182, 50, 0.7) 100%);*/
    z-index: 0;
}

.hero-subpages .container {
    position: relative;
    z-index: 2
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 24px
}

.hero-subcontent {
    width: 100%;
    text-align: center;
}

.hero-subpages h1 {
    margin: 0;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.03;
    font-weight: 700;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-white {
    background: #fff;
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease;
    /* smooth animation */
}

/* Hover effect */
.btn-white:hover {
    background: var(--accent-cta);
    /* green background */
    color: #fff;
    /* text turns white */
    transform: translateY(-2px);
    /* slight lift */
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.btn-highlight {
    background: #63B031 !important;
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease;
    /* smooth animation */
}

/* Secondary (outlined) button */
.btn-white.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    transition: all 0.3s ease;
}

/* Hover effect for secondary */
.btn-white.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    /* subtle overlay */
    border-color: #fff;
    transform: translateY(-2px);
}

.home-about-section{
    background: var(--stat-bg) !important;
}

/* PRODUCTS */
section.products {
    padding: 48px 0;
    background: #fff
}

.section-heading {
    text-align: center;
    margin-bottom: 18px
}

.section-heading h2 {
    color: var(--accent);
    margin: 0;
    font-size: 36px;
}

.section-heading p {
    color: var(--muted);
    margin: 8px 0 0
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.grid a{
    text-decoration: none;
}

.card {
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(10, 25, 10, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 293px;
    padding: 20px;
}

.card .thumb {
    height: 200px;
    background: #eee;
    object-fit: cover;
    width: 100%
}

.card .card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.card .title {
    font-weight: 600;
    color: #234a24;
    text-align: center;
}

.card .meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: var(--muted)
}

.add {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
}

.price {
    font-size: 16px;
    font-weight: 400;
    color: #2D5016;
}

/* STATS BAND */
.stats-band {
    background: var(--stat-bg);
    padding: 40px 0;
    margin-top: 20px
}

.stats-band h2 {
    font-size: 36px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.stat {
    padding: 25px 18px;
    border-radius: 12px;
    text-align: center;
    /* background: linear-gradient(180deg, #fff, #f7fff3); */
    box-shadow: 0 8px 20px rgba(10, 25, 10, 0.04);
}

.stat .num {
    font-weight: 800;
    font-size: 32px;
    color: var(--accent);
    margin-top: 8px
}

.subheading {
    color: var(--muted);
    margin-top: 8px;
}

.stat .label {
    color: #556b55;
    font-size: 20px;
    color: #438B14;
    font-weight: 400;
}

.impactIcon {
    margin-bottom: 10px;
}

.statColor01 {
    background-color: #FBE8BE;
}

.statColor02 {
    background-color: #D6FBBE;
}

.statColor03 {
    background-color: #BEFBF4;
}

.statColor04 {
    background-color: #BEFBD9;
}

/* NEWS logos */
.news {
    padding: 34px 0;
    background: #fff
}

.news .meadialogos {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 8px 4px;
    scroll-behavior: smooth;
    position: relative;
}

.news h2 {
    font-size: 36px;
}

/* FOOTER */
footer {
    background: var(--footer);
    color: #e8f3e6;
    padding: 36px 0 24px;
    margin-top: 32px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 304px 271px;
    gap: 24px;
    align-items: start
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none
}

footer a:hover {
    color: #000;
}

.footersocialIcon{
    width:30px !important;
    height:32px ;
}

.small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9)
}

.iconarea {
    width: 20px;
    display: inline-block;
}

.owl-carousel .meadialogos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.owl-carousel .meadialogos img {
    max-height: 189px;
    width: auto;
    object-fit: contain;
}

.owl-prev {
    background-image: url(../images/prearrow.png) !important;
    background-repeat: no-repeat !important;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 40%;
    left: -54px;
    z-index: 2;
}

.owl-next {
    background-image: url(../images/nextarrow.png) !important;
    background-repeat: no-repeat !important;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 40%;
    right: -54px;
    z-index: 2;
}

/* ABOUT PAGE */

/* Mission & Vision section */
.mission-vision {
    background: #FEFFE6;
    padding: 60px 0;
}

.mission-vision .grid {
    grid-template-columns: 1fr 1fr;
}

.mission-vision .card {
    padding: 24px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background-color: #FFF;
    font-size: 16px;
    line-height: 30px;
    color: #374151;
    font-weight: 400;
}

.mission-vision h3 {
    color: var(--accent);
    font-size: 30px;
    margin-bottom: 12px;
    margin-top: 0;
}

.mission-vision h3 span {
    position: relative;
    top: 5px;
    display: inline-block;
    margin-right: 10px;
}

.radius16 {
    border-radius: 16px;
}

/* Discover section */
.discover {
    padding: 60px 0;
    background: #fff;
}

.discover .grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.discover img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Core Values */
.core-values {
    background: var(--stat-bg);
    padding: 60px 0;
}

.core-values h2 {
    font-size: 36px;
    color: var(--accent);
    text-align: center;
}

.core-values .stats-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.core-values .stat {
    padding: 25px 18px;
    border-radius: 12px;
    text-align: left;
    background: linear-gradient(180deg, #fff, #f7fff3);
    box-shadow: 0 8px 20px rgba(10, 25, 10, 0.04);
    color: #374151;
}

.core-values .stat i {
    display: block;
    text-align: center;
}

.core-values h3 {
    margin: 10px 0 20px 0;
    color: #2D5016;
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
    text-align: center;
}

.corevalueImg img {
    border-radius: 8px;
    width: 100%;
}

/* Founders */
.founders {
    padding: 60px 0;
    background: #fff;
}

.founders .grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.founders img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.founders p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.watchbtn {
    background-color: #2D5016;
    padding: 15px 25px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    display: block;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.watchbtn:hover {
    background-color: #438B14;
}

.watchbtnArea {
    margin-top: 20px;
    text-align: center;
}

.founderSocial {
    margin: 20px auto 0 auto;
    text-align: center;
}

.founderSocial a {
    display: inline-block;
    margin: 0 10px;
}

.founderSocial a img {
    box-shadow: none;
}


/* WHAT WE DO */

/* our mission */
.mission-section {
    background: var(--stat-bg);
    padding: 60px 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.mission-cards .card {
    padding: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-cards .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.mission-cards .thumb {
    width: 100%;
    height: 397px;
    object-fit: cover;
}

.mission-cards .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-cards .title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
    text-align: left;
    padding: 0;
}

.mission-cards p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    flex: 1;
    margin-top: 0;
}

.mission-cards .add {
    font-weight: 600;
    font-size: 16px;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-items: flex-end;
    gap: 6px;
    transition: color 0.3s ease;
}

.mission-cards .add:hover {
    color: var(--accent-cta);
}

.viewdetailsbtnarea {
    text-align: right;
}

.downlodpdfbtn {
    background-color: #63B031;
    display: inline-block;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
}

.downlodpdfbtn:hover {
    background-color: var(--accent-cta);
}

.houseing-gallery img {
    height: 311px;
    object-fit: cover;
    border-radius: 8px;
}

.faq {
    padding: 60px 0;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: #fff;
    padding: 18px 22px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align:left;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    transition: background 0.3s ease;
        font-family: "Poppins", system-ui, Arial, Helvetica, sans-serif !important;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 22px;
}

.accordion-item.active .accordion-body {
    padding: 0 22px;
}

.accordionInnerboday {
    padding: 22px 0;
}

.accordion-body p {
    margin: 0;
    line-height: 1.6;
    color: #374151;
    font-size: 15px;
}

/* Contact Section */
.contactArea {
    margin: 0;
    padding: 60px 0;
}

.contantDiv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
}

.contactLeft,
.contactRht {
    width: 100%;
}

.greayBox {
    margin: 0;
    padding: 35px;
    background-color: rgba(217, 217, 217, 0.34);
    border-radius: 10px;
}

.contactfldBlock {
    margin: 0 0 20px 0;
    padding: 0;
}

.contactfld {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    min-height: 50px;
    width: 100%;
    border: none;
    font-size: 16px;
    font-family: "Poppins", system-ui, Arial, Helvetica, sans-serif;
}

.contactfld:focus-visible {
    outline: none;
    box-shadow: none;
}

.messagefld {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    min-height: 250px;
    width: 100%;
    border: none;
    resize: none;
    font-size: 16px;
    font-family: "Poppins", system-ui, Arial, Helvetica, sans-serif;
}

.messagefld:focus-visible {
    outline: none;
    box-shadow: none;
}

.submitbtnarea {
    text-align: right;
}

.submitbtn {
    background-color: #63B031;
    min-width: 200px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.submitbtn:hover {
    background-color: #2f6a2d;
}

.contactRht p label {
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}
.contactRht a{
    color: #222;
    text-decoration:none;
}
.contactRht a:hover{
    color: #4CAF50;;
}

.contactsocialmedia {
    display: inline-block;
    margin: 0 10px;
}

.contactsocialmedia:nth-child(2) {
    margin-left: 0;
}

/* BLOG DETAILS */

/* Blog Detail */
.blog-detail {
    padding: 60px 0;
}

.blog-detail img.featured-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 24px;
    height: 300px;
    object-fit: cover;
}

.blog-detail h2 {
    margin-top: 30px;
    color: var(--accent);
}

.blog-detail blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    background: var(--stat-bg);
    border-left: 4px solid var(--accent-cta);
    font-style: italic;
    display:none;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Related Posts */
/* .related-posts {
  background: var(--bg);
  padding: 60px 0;
} */
.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent);
}

/* what we do sub page  livehood-training */
.wasteroducts {
    padding: 30px 0;
}

.wasteimagegallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.wasteimagegallery img {
    border-radius: 8px;
    width: 100%;
    height:200px;
    object-fit:cover;
}

.imageName {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #2D5016;
    text-align: center;
    padding: 10px 0;
}

.communities {
    padding: 30px 0;
}

.communitiesBoxarea {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.boxcard {
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(10, 25, 10, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align:center;
}

.microheading {
    font-size: 19px;
    font-weight: 600;
    color: #2D5016;
    padding: 10px 0;
}

.microicon {
    width: 70px;
    /* your desired size */
    height: 70px;
    object-fit: contain;
    /* keeps aspect ratio */
    text-align: center;
}

/* MEDIA PAGE */

/* Video Grid */
.media-videos {
    padding: 60px 0;
}

.media-videos .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.media-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 20px;
}

.media-card a {
    text-decoration: none;
}

.media-card .thumb {
    position: relative;
}

.media-card .thumb img {
    width: 100%;
    display: block;
}

.media-card .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background: rgba(255, 255, 255, 0.9);*/
    color: var(--accent);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
}

.media-card h3 {
    padding: 18px;
    color: var(--accent);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* News carousel */
.news-carousel {
    text-align: center;
    padding: 60px 0;
    background: #fff;
}

.news-carousel h2 {
    font-size: 32px;
    color: var(--accent);
}

.news-carousel p {
    color: var(--muted);
    margin-bottom: 20px;
}

.news-carousel img {
    height: 70px;
    object-fit: contain;
}

/* Highlight Video */
.highlight-video {
    padding: 60px 0;
    background: var(--stat-bg);
}

.main-video {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.main-video img {
    width: 100%;
    display: block;
    /* border-radius: 16px; */
    height: 527px;
    object-fit: cover;
}

.main-video iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 16px;
}

.play.large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play.large:hover {
    background: var(--accent);
    color: #fff;
}

.thumb-row .thumb img {
    width: 100%;
    /* border-radius: 8px; */
    height: 177px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumb-row .thumb img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* News Articles */
.media-articles {
    padding: 60px 0;
}

.media-articles .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.article-card img {
    width: 100%;
    display: block;
}

.article-card h3 {
    padding: 16px;
    font-size: 17px;
    color: #333;
    font-weight: 500;
}


.dropdown {
    position: relative;
    /* display: inline-flex; */
    align-items: center;
    gap: 4px;
}

/* Arrow button */
.dropdown-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size:26px;
    padding: 0;
    line-height: 1;
    color: inherit;
}

/* Submenu hidden by default */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    z-index: 99;
}

.submenu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}

.submenu a:hover {
    background: #f2f2f2;
}

.linkanddropdown{
    display: flex;
    flex-direction: row;
}

.whatsupchannelbtn{
    background: var(--accent-cta) !important;
}
.whatsupchannelbtn:hover{
    color:#fff!important;
}

.gallery{
    padding:40px 0 60px 0;
    background: var(--stat-bg) !important;
}

.contactfldBlock img{
    width:100%;
}

.desktopview{
    display:block;
}
.mobileview{
    display:none;
}

/*Woocommerce css start*/
.woocommerce-notices-wrapper{
    padding:10px 0;
}
.woocommerce-ordering{
    padding:30px 0;
}

.woocommerce-ordering select{
    border:none;
    border-radius:8px;
    padding:10px 10px;
    background:#F2F2F2;
    font-family: "Poppins", system-ui, Arial, Helvetica, sans-serif !important;
    color:#4E4E4E;
}
.woocommerce-ordering select:focus{
    border:none;
    outline:none;
}
.products{
    margin-top:30px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
    margin:0 !important;
    width:25%;
}
.woocommerce ul.products li.product:nth-child(4n) .custom-product-box, .woocommerce-page ul.products li.product:nth-child(4n) .custom-product-box{
    margin-right:0;
}
.custom-product-box{
    border-radius:12px;
    border:1px solid #E5E7EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.product-row img{
    width:100%;
    height:210px;
    object-fit:cover;
}
.custom-product-box {
    text-align:left;
}
.custom-product-box .product-row{
    margin-bottom:10px
}
.custom-product-box .product-row a{
    display:block;
}
.product-row-2 h2{
    margin:0!important;
    padding:0;
}
.product-row-2 h2 a{
    color:#2D5016;
    text-decoration:none;
}
.product-cart a.button{
    background-color:#2D5016;
    color:#fff;
}
ul.products li.product .price, ul.products li.product .star-rating, ul.products li.product .woocommerce-loop-product__title{
    font-size: 16px !important;
    font-weight: 400!important;
    color: #2D5016!important;
    margin-bottom:0;
}
.custom-result-count{
    margin-bottom:0!important;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count{
    float:none;
    margin-bottom:0!important;
}
.woocommerce nav.woocommerce-pagination{
    margin-top:0;
}
.page-numbers{
    padding:6px 12px!important;
}
/*Woocommerce css end*/



/* responsive */
@media (max-width:1100px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        padding: 64px 0
    }

    .mission-vision .grid {
        grid-template-columns: 1fr;
        /* stack mission & vision */
        gap: 20px;
    }

    .discover .grid {
        grid-template-columns: 1fr;
        /* text above image */
        gap: 30px;
    }

    .core-values .stats-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 per row */
    }

    .founders .grid {
        grid-template-columns: 1fr;
        /* stack founders img + text */
        gap: 30px;
    }

    .mission-cards {
        grid-template-columns: 1fr 1fr;
    }

    .imageName {
        font-size: 16px;
    }

    .microheading {
        font-size: 16px;
    }

    .boxcard {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 25px;
    }
    .hero-inner{
        margin-top:200px;
    }
}

@media (max-width:900px) {

    .media-videos .grid,
    .media-articles .grid {
        grid-template-columns: 1fr;
    }

    .thumb-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-video iframe {
        height: 280px;
    }

    .play.large {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .owl-nav {
        text-align: center;
        margin-top: 15px;
    }

    .owl-nav button {
        margin: 0 10px;
    }

    .owl-prev {
        position: relative;
        left: 0;
        top: 0;
    }

    .owl-next {
        position: relative;
        right: 0;
        top: 0;
    }
    .hero-inner{
        margin-top:200px;
    }
}


@media (max-width:768px) {
    .section-heading h2 {
        font-size: 25px;
    }

    nav.primary {
        display: none
    }

    /* hide nav links */
    .menu-btn {
        display: block
    }

    /* show hamburger */
    .hero {
        padding: 54px 0
    }

    .hero h1 {
        font-size: 28px
    }

    .hero-subpages {
        min-height: 150px;
    }

    .grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        font-size:16px;
    }

    .brand img {
        height: 30px
    }

    .owl-prev {
        position: relative;
        left: 0;
        top: 0;
    }

    .owl-next {
        position: relative;
        right: 0;
        top: 0;
    }

    .owl-nav {
        text-align: center;
        margin-top: 15px;
    }

    .owl-nav button {
        margin: 0 10px;
    }

    .mission-vision {
        padding: 40px 0;
    }

    .mission-vision h3 {
        font-size: 22px;
    }

    .mission-vision .card {
        font-size: 16px;
        line-height: 24px;
        padding: 18px;
    }

    .discover {
        padding: 40px 0;
    }

    .discover .grid {
        gap: 20px;
    }

    .discover img {
        border-radius: 12px;
    }

    .core-values {
        padding: 40px 0;
    }

    .core-values h2 {
        font-size: 26px;
    }

    .core-values .stats-grid {
        grid-template-columns: 1fr;
        /* single column */
        gap: 16px;
    }

    .core-values .stat {
        padding: 20px;
    }

    .core-values h3 {
        font-size: 18px;
    }

    .founders {
        padding: 40px 0;
    }

    .founders .grid {
        gap: 20px;
    }

    .founders img {
        border-radius: 12px;
    }

    .founders p {
        font-size: 16px;
        line-height: 24px;
    }

    .watchbtn {
        font-size:16px;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        font-size: 16px;
        padding: 16px;
    }

    .contantDiv {
        grid-template-columns: repeat(1, 1fr);
    }

    .wasteimagegallery {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 0;
        gap: 0;
    }
    


    .communitiesBoxarea {
        grid-template-columns: repeat(1, 1fr);
    }

    .communitiesBoxarea {
        padding: 20px 0;
        margin-top: 0;
    }

    .imageName {
        font-size: 16px;
    }

    #mobileNav {
        padding: 0 10px;
    }

    #mobileNav a {
        color: #222;
        text-decoration: none;
        /* font-weight: 500; */
        font-size: 16px;
        position: relative;
        transition: color 0.3s ease;
        display: block;
        width: 100%;
    }

    #mobileNav a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: var(--accent-cta);
        transition: width 0.3s ease;
    }

    #mobileNav a:hover::before {
        width: 100%;
    }

    .dropdown {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
    }

    .submenu {
        position: relative;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
    }
    .hero-inner{
        margin-top:310px;
    }
    .desktopview{
        display:none;
    }
    .mobileview{
        display:block;
    }
    .founders .grid{
        margin-top:0 !important;
    }
}