:root {
    --primary-green: #5B9A42;
    --secondary-green: #8DC63F;
    --light-green: #E3F4E3;
    --secondary-light-green: #E8FDC9;
    --white: #FFFFFF;
    --secondary: #F5F5F5;
    --black: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-nav {
    max-width: 1300px;
    margin: 0 20rem;
    padding: 0 1rem;
    display: flex;
    justify-content: end;
    align-items: center;
}

.btn-primary-light-green {
    transition: background-color 0.3s ease-in-out;
    background-color: #8FC63E;
    color: white;
}

.btn-primary-light-green:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    padding-left: 1rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.phone,
.contact-link {
    color: var(--white);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social-links {
    display: flex;
    gap: 1rem;
}

.header-social-link {
    color: var(--white);
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.header-social-link:hover {
    opacity: 0.8;
}

.search-bar {
    max-width: 200px;
    /* margin: auto auto; */
}

.search-bar .input-group {
    border-radius: 30px;
    border: solid var(--light-green) 1px;
    overflow: hidden;
    background-color: var(--primary-green);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-bar .form-control {
    border: none;
    background-color: transparent;
    color: var(--light-green);
    padding-left: 20px;
}

.search-bar .form-control:focus {
    z-index: 0;
}

.search-bar .form-control::placeholder {
    color: var(--light-green);
}

.search-bar .btn {
    border: none;
    padding: 10px 20px;
}

.top-bar .container {
    color: var(--light-green);
}

.btn-search {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Main Navigation Styles */
.main-nav {
    background-color: var(--white);
    padding: 1.15rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    position: relative;
}

.logo {
    position: absolute;
    left: 45px;
    top: 0px;
    /* Adjust this value to control how much the logo overlaps */
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(237, 247, 237, 0.9);
    /* Light green background */
    z-index: -1;
}

.logo img {
    height: 126px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-green);
}

.arrow-down {
    transition: transform 0.2s;
}

.nav-link:hover .arrow-down {
    transform: rotate(180deg);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-register {
    width: 110px;
    background-color: var(--secondary-green);
    color: var(--white);
}

.btn-register:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-login {
    width: 110px;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-login:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

.dash-footer {
    position: relative;
    margin-left: 255px;
    width: calc(100% - 255px);
    padding: 10px 30px;
    top: 70px;
    margin-bottom: 70px;
    right: 0;
    bottom: 0;
}

.dash-footer .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

/*footer*/
.row.align-items-center {
    position: relative;
    margin-top: 3px;
}

/* .row.align-items-center::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #ccc;
    transform: translateX(-50%);
} */

.footer-container {
    /* max-width: 1300px; */
    /* margin: 0 auto; */
}

.footer .vertical-line {
    width: 1px;
    height: 100%;
    background-color: #ccc;
}

.footer-row {
    background-color: #F3F3F3;
    padding: 2rem 5rem;
}

.section-title {
    color: #8FC63E;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-download {
    transition: background-color 0.3s ease-in-out;
    background-color: #8FC63E;
    color: white;
}

.btn-download:hover {
    background-color: var(--primary-green);
    color: white;
}

.footer-links a:hover {
    color: #8DC63F;
}

/*landing-page*/
/* Container for the icons */
.icon-container {
    position: fixed;
    right: 0;
    z-index: 9999;
}

#login-icon {
    top: 40%;
}

#register-icon {
    top: 50%;
}

#livechat-icon {
    top: 60%;
}

.icon {
    background-color: #61AD24;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 10px 0 0 10px;
    text-align: center;
    transition: transform 0.3s ease, width 0.3s ease;
    text-decoration: none;
    position: relative;
}

.icon-text {
    display: none;
    margin-right: 10px;
    white-space: nowrap;
}

.icon:hover {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    transform: scale(1.1);
}

.icon:hover .icon-text {
    display: inline-block;
}

.icon i {
    font-size: 20px;
}

/* end */

/*image slider*/
.carousel-inner img {
    height: 500px;
    /* Adjust image height */
    object-fit: cover;
    /* Maintain aspect ratio */
}

/* Custom Dots */
.carousel-indicators [data-bs-target] {
    background-color: #8FC63E;
    border: none;
    height: 10px !important;
    width: 10px !important;
    border-radius: 100%;
    margin-bottom: 4px;
}

.carousel-indicators .active {
    background-color: #8FC63E;
}

.carousel-caption h2 {
    text-align: left;
    margin-bottom: 200px;
}

/*end*/

/*testimony*/
.testimonies-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-content:center;
    justify-items: center;;
    margin-bottom: 40px;
    margin-right:150px;
    padding: 0 20px;
}

.testimony-card {
    background: linear-gradient(0deg, #FAFFEE 50%, #E2F5C6 100%);
    z-index: 2;
    min-height: 400px;
}

.testimony-card:hover {
    transform: translateY(-5px);
}

.testimony-card::before {
    content: '❞';
    position: absolute;
    bottom: 0;
    right: 50px;
    font-size: 200px;
    color: #e8f7d1;
    z-index: -1;
}

.testimony-text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word; /* Break long words */
    white-space: normal; /* Ensure text wraps */
    overflow: hidden; /* Hide overflow text */
    display: block;
    max-width: 90%;
}

.testimony-card .company-name {
    color: #418120;
    font-size: 1.5rem;
    font-weight: 800;
    word-wrap: break-word; /* Break long words */
    white-space: normal; /* Ensure text wraps */
    overflow: hidden; /* Hide overflow text */
    display: block;
    max-width: 90%;
}


.who-we-are-container {
    background-color: #FAFFEE;
}

.section-wrapper {
    background-color: #FAFFEE;
    padding: 2rem;
    border-radius: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-thumbnail:hover {
    transform: scale(1.01);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px !important;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.play-button:hover {
    opacity: 1;
}

.play-button i{
    font-size:5rem;
}

.main-video {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.video-stack .video-thumbnail {
    flex: 1;
}

.video-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.first-video-wrapper {
    width: 100%;
    height: 100%;
    min-height:100%;
    border-radius: 12px;
}

.view-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #8FC63E;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.view-more:hover {
    background: var(--primary-green);
}

/*end*/

/*latest news*/
.latest-news {
    background-color: #FAFFEE;
}

.latest-news h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.latest-news .news-container .news-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-container img{
    width: 100%;
    object-fit: cover;
    height: 250px;
}
/*end*/

/*common card*/
.common-card {
    background-color: white;
}

.common-card h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/*end*/

/* statistik and join now */
.statistics-section,
.join-section {
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4rem 2rem;
}

.statistics-section,
.join-section h2 {
    font-weight: 700;
}

.statistics-section {
    background: linear-gradient(rgba(40, 100, 40, 0.9), rgba(40, 100, 40, 0.9)),
        url('/assets/media/banners/banner2.jpg') center/cover;
}

.join-section {
    background: linear-gradient(rgba(91, 154, 66, 0.9), rgba(91, 154, 66, 0.9)),
        url('/assets/media/banners/banner1.png') center/cover;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.stat-card {
    background-color: #E2F5C6;
    border-radius: 12px;
    padding: 1.5rem;
    color: #5B9640;
    text-align: center;
    height: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
}

.stat-card i {
    font-size: 2rem;
}

.stat-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #5B9640;
    margin-bottom: 0.5rem;
}

.stat-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.guideline-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E2F5C6;
    color: #5B9A42;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.guideline-btn:hover {
    transform: translateX(10px);
    color: white;
    background-color: rgba(141, 198, 63, 0.8);
}

.btn-outline-light {
    border-width: 2px;
    padding: 0.5rem 2rem;
    border-radius: 25px;
}

.btn-outline-light:hover {
    background-color: white;
    color: #5B9A42;
    border-color: white;
}

/* end */

/* products and services */
.card-content {
    margin: 0 1rem;
    text-align: justify;
}

.custom-card {
    padding: 1rem;
    margin: 0 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.custom-card:hover {
    border-color: #8FC63E;
    /* Changes the border color on hover */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    gap: 1rem;
    max-height: 350px;
}

.image-container .main-image {
    flex: 7;
}

.image-container .main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.image-container .thumbnails {
    display: flex;
    flex-direction: column;
    flex: 3;
    gap: 0.5rem;
}

.image-container .thumbnail {
    flex: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.image-container .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.certification-partner h2 {
    text-align: center;
    font-weight: 700;
}

.partner-logo {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: 50px;
}

.carousel-control-next {
    right: 50px;
}

.carousel-indicators {
    margin-bottom: 0;
}

/* end */

/* gtfs */
.gtfs-sub-heading {
    background-color: #00d084;
    text-align: center;
    padding: 10px;
}
/* end */

/*end landing-page*/

/* content page */
.with-background {
    background-image: url('/assets/media/patterns/pattern-2.jpg');
    background-size: 100% 400px;
    background-repeat: no-repeat;
}

.content-header {
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 1rem;
}

.content-header.with-background {
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 1rem;
}

.content-header .content-title {
    font-size: 2.5rem !important;
    font-weight: 800;
    color: var(--white);
    padding: 1rem 0;
}

.content-header .content-description {
    font-size: 1rem !important;
    color: var(--white);
}

.required:after {
    content: "*";
    position: relative;
    font-size: inherit;
    color: var(--bs-danger);
    padding-left: 0.25rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.bg-secondary-green {
    background-color: var(--secondary-green) !important;
}

.bg-secondary-light-green {
    background-color: var(--secondary-light-green) !important;
}

.text-primary-green {
    color: var(--primary-green);
}

.card-sub-content {
    padding: 0 1.25rem;
}

.content-sub-title {
    margin: 2rem 0;
    padding: 1.25rem;
    background-color: var(--secondary);
}

/* Event Page */
.event-header {
    text-align: center;
    padding: 3.5rem 0;
    margin-bottom: 1rem;
}

.event-header .event-title {
    font-size: 3.5rem !important;
    font-weight: 800;
    color: var(--secondary-light-green);
    padding: 1rem 0;
    margin-left: 2.5rem;
}

.event-line {
    height: 1rem;
    background-color: var(--secondary-green);
    border-top: none;
    opacity: 1;
    margin-bottom: 0;
}

.event-content {
    background-color: var(--white);
    padding: .5rem 2rem;
}

.event-content h1 {
    font-size: 2rem;
    margin: 2.5rem 0;
}

.event-content p {
    font-size: 1rem;
    text-align: justify;
}

.event-form-group {
    background-color: var(--white);
    margin-top: 1.5rem;
    padding: 2.5rem 2rem;
}

.event-form-group .form-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.event-form-group .form-label-description {
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

/* directory page */
.search-btn {
    padding: 0.6rem 1.6rem;
}

.product-icon, .service-icon {
    display: flex;
    justify-content: flex-start;
    /* gap: 0.5rem; */
    /* align-items: center; */
    flex: 1;
    margin-right: 1rem;
}

.product-icon-inner, .service-icon-inner {
    display: inline-flex;
    width: auto;
    flex-shrink: 0;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: 20rem;
}

.product-icon-inner:hover, .service-icon-inner:hover {
    background-color: #E6FFCE;
    cursor: pointer;

}

.product-icon-inner.active, .service-icon-inner.active {
    background-color: #E6FFCE;
}

.product-image{
    height: 13px;
}

.service-image {
    height: 18px;
}

.directory-search-card-top {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.75rem 0;
}

.directory-search-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.75rem 0.9rem;
}

.search-input-group {
    display: flex;
    flex: 3;
    align-items: center;
    gap: 0.5rem;
}

.directory-search-bar {
    display:flex;
    flex: 2;
}

.search-input-group .search-btn {
    padding: 0.4rem 1.3rem !important;
}

.directory-search-bar .search-icon {
    display:flex;
    color:#58595B;
    justify-content: center;
    align-items: center;
    border: 2px solid #E2E2E2;
    border-right: none;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    background-color: #F5F5F5;
    width: 40px;
    padding-left: 5px;
}

.directory-search-bar .search-input {
    flex:1;
    border: 2px solid #E2E2E2;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 0.225rem 10px;
}

.directory-search-bar .search-input:focus {
    outline: none;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.filter-group select {
    padding: 0.55rem 0.75rem;
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 100px;
    cursor: pointer;
    width: 150px;
}

.directory-header {
    background-image: url('/assets/media/patterns/pattern-2.jpg');
    background-size: 100% 300px;
    background-repeat: no-repeat;
    padding: 50px 10px;
    background-position: center;
}

.directory-header h1 {
    color: white;
    text-align: center;
}
.directory-search-section {
    background-color:#F3F3F3;
    width: 100%;
    padding: 30px 0;
}

.directory-search-card {
    background-color: white;
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
}

.clear-btn {
    padding: 0 !important;
    color: #8FC63E;
}

.clear-btn:hover {
    color: #5B9A42;
}

.directory-listing-header {
    width: 80%;
    margin: 40px auto 0;
}

.directory-listing-header .text-gray, .directory-listing-header a.text-gray {
    color: #8C8C8C;
}

.directory-listing-header select#sort {
    padding: 0.25rem 0.3rem;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#subcategory-list {
    width: 80%;
}

.directory-listing {
    padding: 20px 0;
}

.directory-company-title {
    width: 80%;
    margin: 0 auto;
}

.sort-group #tile-view, .sort-group #list-view {
    margin-right: 5px;
    cursor: pointer;
}

.directory-listing a {
    color: black;
    text-decoration: none;
    height: 100%;
}

.directory-row {
    margin-bottom: 1.3rem;
}

.directory-card {
    padding: 12px;
    height: 100%;
    border: #E7E7E7 1px solid;
    border-radius: 20px;
}

.directory-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.directory-card .directory-img {
    display: flex;
    align-items: center;
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.directory-card .directory-img img {
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
}

.directory-card .overlay {
    position: absolute;
    bottom: 0;
    height: 20%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.directory-card .title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    padding: 0;
    margin: 0 0 5px 0;
}

.directory-card .subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #5B9640;
    padding: 0;
    margin: 0;
}

.directory-list-item {
    display: flex;
}

.directory-list-item .directory-img {
    display: flex;
    align-items: center;
    width: 30%;
    height: 200px;
    border-radius: 10px;
}

.directory-list-item img {
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
}

.directory-list-item .directory-list-label-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
}

.directory-list-item .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    padding: 0;
    margin: 0 0 5px 0;
}

.directory-list-item .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #5B9640;
    padding: 0;
    margin: 0;
}

.directory-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem auto;
    width: 85%;
}

.directory-footer select#limit {
    padding: 0.25rem 0.3rem;
    background-color: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    cursor: pointer;
}

.directory-footer select#limit option{
    cursor: pointer;
}

.directory-footer #prev-btn {
    padding: 0;
    margin-right: 1rem;
}

.directory-footer #pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.directory-footer .pagination-group {
    display: flex;
}

.directory-footer .pagination-btn {
    border: 1px solid #D0D5DD !important;
    border-radius: 8px;
    padding: 6px 12px !important;
}

.directory-footer .pagination-btn:hover {
    background-color: #E6FFCE;
}

.directory-footer .pagination-btn.active {
    background-color: #E6FFCE;
}

.directory-footer #next-btn {
    padding: 0;
    margin-left: 1rem;
}

.directory-footer input#page {
    display: inline-block;
    width: 45px;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
}

.directory-footer .btn-go {
    border: 1px solid #D0D5DD !important;
    border-radius: 8px;
    padding: 6px 12px !important;
    background-color: rgb(248, 248, 248);
}

.td-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5; 
    -webkit-box-orient: vertical;
}

/* end content page */

/*mobile design*/
@media (max-width: 991.98px) {
    .container {
        padding: 0 1rem;
    }

    .top-bar .container {
        padding-left: 2rem;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
        align-items: flex-start;
    }

    .header-social-links {
        justify-content: center;
        gap: 0.5rem;
    }

    .search-input {
        width: 100%;
        font-size: 1rem;
    }

    .search-button {
        right: 3rem;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 2rem;
        margin-top: -20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin: 0;
    }

    .logo {
        display: none;
    }

    .row.align-items-center::after {
        content: none;
        /* Removes the pseudo-element */
    }

    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        display: block;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .ebook-content,
    .app-content {
        /* flex-direction: column; */
        gap: 2rem;
    }

    .ebook-image,
    .app-mockup {
        width: 50%;
        height: auto;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        width: 100px;
    }

    .container {
        flex-direction: column;
        gap: 2rem;
    }

    .container::before {
        display: none;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .partner-logo {
        max-height: 60px;
    }

    .statistics-section,
    .join-section {
        min-height: 500px;
        padding: 3rem 1rem;
    }

    .stat-card h2 {
        font-size: 2rem;
    }

    .event-header .event-title {
        font-size: 3.5rem !important;
        font-weight: 800;
        color: var(--secondary-light-green);
        padding: 1rem 0;
        margin-left: 0 !important;
    }
}

@media (min-width: 992px) {

    html,
    body {
        height: 100%;
        margin: 0px;
        padding: 0px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: .875rem !important;
        font-weight: 400;
        font-family: Inter, Helvetica, "sans-serif";
    }

    .bottom-footer {
        padding: 2rem 10rem;
    }
}

/* content-settings */
.tab {
    margin: 20px 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    gap: 13px;
}

.tab .btn-sub-button.btn {
    font-size: 14px;
    line-height: 18px;
    padding: 12px;
}

.btn-sub-button {
    width: 100%;
    padding: 5px 5px;
    color: #1E1E2C;
    background: #ECECEC;
    border: 1px solid #CFCFCF;
    padding: 10px;
    border-radius: 5px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-sub-button:hover,
.btn-sub-button.active {
    color: #fff;
    background-color: #8FC63E;
    font-weight: 700;
    border-color: #8FC63E;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.bg-light-green {
    background-color: #E2F5C6;
}

.accordion-body {
    background-color: #FAFFEE;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    /* Consistent padding */
    text-align: left;
}

.accordion-header {
    margin: 0;
    /* Remove default margins */
}

.accordion-header .fw-bold,
.accordion-header .text-muted-italic {
    line-height: 1.5;
    /* Consistent line height */
    margin: 0;
    /* Remove extra spacing */
}

.accordion-header .fw-bold {
    white-space: normal;
    /* Ensure text wraps properly */
}

.accordion-header .select {
    margin-right: 1rem;
    /* Adjust for consistent spacing */
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.type-header[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

.text-muted-italic {
    font-style: italic;
    color: #6c757d;
    font-size: 14px;
}

.type-header {
    color: #5B9A42;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.type-header:hover {
    color: #4a7935;
}

.type-header.collapsed .arrow-icon {
    transform: rotate(180deg);
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.arrow-icon[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

.select {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #8FC63E;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    font-size: 0.9rem;
}

.select:hover {
    background: var(--primary-green);
}

/* self-check flow  */
.recaptcha-container {
    margin-bottom: 2rem;
}

@media (max-width: 991.98px) {

    html,
    body {
        font-size: 1rem !important;
    }

    .container-nav {
        margin: 0 !important;
    }
}

@media (max-width: 767.98px) {

    html,
    body {
        font-size: 1rem !important;
    }
}

@media (max-width: 991.98px) {
    .main-video {
        height: 300px;
    }

    .video-stack .video-thumbnail {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .main-video {
        height: 250px;
    }

    .video-stack {
        margin-top: 1rem;
    }

    .video-stack .video-thumbnail {
        height: 180px;
    }
}

@media (max-width: 1420px) {

    .container-nav {
        justify-content: start;
        overflow-x: scroll;
        margin-left: 15rem;
        margin-right: 0;
    }
}

.my-hijau-content-header {
	position: relative;
	height: 196px;
	width: 100%;
}

.my-hijau-content-header .my-hijau-page-title {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(114,192,56,.1);
}

.my-hijau-content-header .my-hijau-page-title h2 {
	font-size: 38px;
	color: #FFFFFF;
	text-shadow: 0 2px 4px rgba(0,0,0,0.30);
	text-align: center;
	font-family: "Rubik" , sans-serif;
	margin-top: 80px;
}

.my-hijau-content-header .my-hijau-featured-image {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 100%;
}

.my-hijau-page-content {
	margin-top: 80px;
	margin-bottom: 100px;
}

.aligncenter {
    display: flex;
    justify-content: center;
	clear: both;
}

.aligncenter img {
    display: block;
    margin: 0 auto;
}

:root .has-light-green-cyan-background-color {
	background-color: #7bdcb5;
}

.wp-block-columns.has-background {
	padding: 1.25em 2.375em;
}

.wp-block-columns {
	display: flex;
	margin-bottom: 1.75em;
	flex-wrap: wrap;
}

.has-text-align-left {
	text-align: left;
}

.has-medium-font-size {
	font-size: 1.25em;
}

p.has-background {
	padding: 1.25em 2.375em;
}

.has-text-align-center {
	text-align: center;
}

.my-hijau-solution {
	padding: 60px 15px;
	background: #fff;
	background-size: cover;
}

.cardhead {
	font-size: 15px;
	line-height: 1.2;
	margin: 15px 20px 5px;
	font-weight: 500;
    color: #69A906;
}

.cardsub {
	font-size: 12px;
	color: rgba(0,0,0,.4);
	margin-top: 5px;
	padding: 0em 20px;
}

:root .has-pale-pink-background-color {
	background-color: #f78da7;
}

.wp-block-column {
	flex-grow: 1;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}

.wp-block-column {
	flex-basis: 0;
	flex-grow: 1;
}

.wp-block-image {
	margin-bottom: 1em;
}

.my-hijau-page-content img {
	margin: 0 auto 15px;
	display: table-cell;
}

.wp-block-image .aligncenter > figcaption, .wp-block-image .alignleft > figcaption, .wp-block-image .alignright > figcaption {
	display: table-caption;
	caption-side: bottom;
}

.wp-block-image figcaption {
	margin-top: .5em;
	margin-bottom: 1em;
}

.wp-block-image .aligncenter, .wp-block-image .alignleft, .wp-block-image .alignright {
	display: table;
}

.wp-block-image .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

:root .has-vivid-red-color {
	color: #cf2e2e;
}

.header-section {
    padding: 1.25em 2.375em;
}

@media (min-width: 782px) {
    .wp-block-columns {
        flex-wrap: nowrap;
    }
    .wp-block-column:not(:first-child) {
        margin-left: 2em;
    }
}

.landing-page {
    margin-top: 80px;
    margin-bottom: 100px;
}

.table-listing {
    width: 80%;
    margin: 0 auto;
}

.table-listing thead {
    background-color: #F8F8F8;
    border: #E4E7EC 1px solid;
}

.table-listing tr {
    border: #E4E7EC 1px solid;
}

.table-listing td, .table-listing th {
    padding: 0.5rem 1rem;
}

.table-listing .view-btn {
    padding: 0.4rem 1.6rem !important;
    border-radius: 5px;
}

.directory-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.55rem 0.1rem;
}

.directory-table-footer .left-group {
    display: flex;
}

.directory-table-footer select#limit {
    padding: 0.45rem 0.5rem;
    background-color: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    cursor: pointer;
}

.directory-table-footer select#limit option{
    cursor: pointer;
}

.directory-table-footer #prev-btn {
    padding: 0;
    margin-left: 1rem;
}

.directory-table-footer .pagination-group {
    display: flex;
}

.directory-table-footer .pagination-btn {
    border: 1px solid #D0D5DD !important;
    border-radius: 8px;
    padding: 6px 12px !important;
}

.directory-table-footer .pagination-btn:hover {
    background-color: #E6FFCE;
}

.directory-table-footer .pagination-btn.active {
    background-color: #E6FFCE;
}

.directory-table-footer #next-btn {
    padding: 0;
    margin-left: 1rem;
}

.directory-table-footer #next-btn, .directory-table-footer #prev-btn, .directory-table-footer .btn-go{
    border: 1px solid #D0D5DD !important;
    border-radius: 8px;
    padding: 6px 12px !important;
}

.directory-table-footer #next-btn:hover, .directory-table-footer #prev-btn:hover{
    background-color: rgb(248, 248, 248);
}

.directory-table-footer input#page {
    display: inline-block;
    width: 45px;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
}

.directory-table-footer .btn-go {
    background-color: rgb(248, 248, 248);
}

.directory-item {
    width: 80%;
    margin: 0 auto 1.5rem;
}

.directory-item .directory-product-top-info {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.directory-item .directory-product-top-info .image-container {
    flex: 7;
    border: none;
}
.directory-item .directory-product-top-info .info-container {
    flex: 3;
    padding: 10px 10px;
}

.directory-item .directory-product-top-info .info-container h2 {
    margin-bottom: 0.75rem;
}

.directory-item .directory-product-top-info .info-container .label-group {
    margin-bottom: 0.75rem;
}

.directory-item .directory-product-top-info .info-container .label {
    color: #8C8C8C;
    font-size: 12px;
}

.directory-item .directory-product-top-info .info-container span {
    font-size: 14px;
}

.directory-item .directory-product-top-info .info-container .btn {
    padding: 0.4rem 1.3rem !important;
    /* border-radius: 5px; */
}

.directory-item-tabs .nav-item .nav-link {
    padding: 0.5rem 0.95rem !important;
    background-color: var(--bs-secondary);
    height: 100%;
}

.directory-item-tabs .nav-item .nav-link.active {
    background-color: #8FC63E;
}

.directory-item-tabs {
    border-bottom: none;
}

.directory-item-tabs .nav-link {
    color: #58595B;
    background: #DEE0DD;
    border-radius: 5px 5px 0 0;
    border: 1px solid #DEE0DD;
}

.directory-item-tabs .nav-link.active {
    background: #8FC63E;
}

.directory-item-tabs .nav-link.active .main-text{
    color: #fff;
}

.directory-item-listing .tab-content, .directory-item-listing .nav {
    width: 80%;
    margin: 0 auto;
}

.directory-item-listing .nav-fill .nav-item {
    flex: none;
}

.directory-item-listing .item-value {
    padding: calc(0.775rem + 1px) 0;
}

.directory-item-listing .item-value span {
    font-size: 15px;
}

.directory-item-listing .col-form-label {
    color:#8E8E8E;
}

.directory-item-listing .card-subtitle {
    background-color: transparent !important;
    margin: -2rem -2.25rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #DEE0DD;
    border-bottom: 1px solid #DEE0DD;
}

.directory-item-listing .card-subtitle:first-child {
    border-top: none;
}

.directory-item-listing .card-body {
    border: 1px solid #DEE0DD;
}

.directory-item-listing .card-subbody {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.directory-item-listing .card-subbody:last-child {
    padding-bottom: 0rem;
}

/* .lg-img-wrap img.lg-object {
    height: calc(100vh - 160px) !important;
} */


/* Events completion Page Css */
.event-section .event-card-content h4{
    font-size:22px;
    color:#3F3F3F;
}
.event-section  .event-date{
    padding:15px 0px;
}
.event-section  .event-date p{
    font-size:18px;
    color:#58595B;
}
.event-section  .event-card-content{
    padding:30px 25px;
}

.event-card-image img{
    height:220px;
    object-fit:cover;
}
.event-section  .card{
    border-radius:15px;
    overflow:hidden;
}
.event-section .main-title h2{
    font-size:35px;
    color: #3F3F3F;
}
.e-certifacte {
    position:relative;
}
.e-certifacte img.cetficate-icon {
    position:absolute;
    right:10px;
    top:0;
    bottom:0;
    margin:auto;
}
/* Events completion Page Css Close*/
