* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.top-header {
    font-size: 14px;
    background-color: #2a8768;
}

/* Marquee Fix */
.marquee-box {
    padding: 0 25px;
    /* LEFT RIGHT GAP */
    overflow: hidden;
    /* NO BREAK / NO DROP */
    white-space: nowrap;
}

.marquee-box marquee {
    color: #fff;
    font-weight: 500;
}

/* Social Icons */
.social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 13px;
}

.social-facebook {
    background: #1877f2;
}

.social-instagram {
    background: #e4405f;
}

.social-whatsapp {
    background: #25d366;
}

.social-phone {
    background: #ff9800;
}

.social-email {
    background: #607d8b;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    filter: brightness(1.15);
}

/* ================= NAVBAR ================= */
.main-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: #222 !important;
    padding: 20px 15px;
    position: relative;
}

.nav-link:hover {
    color: #ef7c00 !important;
}

/* Dropdown hover */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Dropdown Menu Design */
.dropdown-menu {
    border: none;
    background-color: #2a8768 !important;
    border-radius: 2px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    top: 100%;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #fff !important;
    border-bottom: 1px dotted !important;
}

.dropdown-item:hover {
    background: #ef7c00 !important;
    color: #fff !important;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .nav-link {
        padding: 12px 15px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }
}

/* slider */

/* Custom Prev / Next Button */
.custom-control {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
}

.custom-control i {
    font-size: 18px;
    color: #fff;
}

.carousel-control-prev {
    left: 20px !important;
}

.carousel-control-next {
    right: 20px !important;
}

/* Hover Effect */
.custom-control:hover {
    background: #ef7c00 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .custom-control {
        width: 42px !important;
        height: 42px !important;
    }
}


.company-glimpse {
    background: #f4f4f4;
}

/* Title */
.glimpse-title {
    font-weight: 700;
    color: #2a8768;
    font-size: 25px;
}

.glimpse-title span {
    color: #ff9800;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 4px;
}

.section-desc {
    color: #666;
    max-width: 650px;
    margin: auto;
    font-size: 15px;
}

/* Box */
.glimpse-box {
    background: #fff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 4px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

/* Hover */
.glimpse-box:hover {
    transform: translateY(-8px);
    border-bottom: 3px solid #ff9800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Icon */
.glimpse-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #777;
    transition: all 0.3s ease;
}

/* Icon Hover */
.glimpse-box:hover .glimpse-icon {
    color: #ff9800;
    border-color: #ff9800;
}

/* Text */
.glimpse-box h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.glimpse-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.bamboo-categories {
    background: #fff;
}

.section-title {
    font-weight: 700;
    color: #2a8768;
}

.section-desc {
    color: #666;
    max-width: 650px;
    margin: auto;
}

/* Card */
.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 12px;
    transition: all 0.4s ease;
}

.category-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.category-overlay h5 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Hover */
.category-card:hover img {
    transform: scale(1.1);
}

.category-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Slick arrows */
.slick-prev,
.slick-next {
    width: 45px !important;
    height: 45px !important;
    background: #2a8768 !important;
    border-radius: 50%;
    z-index: 9;
}

.slick-prev:before,
.slick-next:before {
    font-size: 18px;
    color: #fff;
}

.slick-prev {
    left: -6px !important;
}

.slick-next {
    right: -6px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .category-card img {
        height: 260px;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2a8768, #81c784);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::before {
    top: -60px;
    left: -60px;
}

.cta-section::after {
    bottom: -60px;
    right: -60px;
}

/* Text */
.cta-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 8px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.our-products {
    background: #ffff;
}

/* Product Box */
.product-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

/* Image */
.product-img {
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-box:hover img {
    transform: scale(1.1);
}

/* Content */
.product-content {
    padding: 18px;
    text-align: center;
}

.product-content h6 {
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
}

/* Button */
.product-btn {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: #2a8768;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #ff9800;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .product-img img {
        height: 200px;
    }
}

.global-reach {
    background: #f9f9f9;
}

.reach-slide {
    padding: 20px;
}

.reach-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.reach-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* Image circle */
.reach-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.reach-img-wrap img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

/* Text box */
.reach-text {
    display: inline-block;
    padding: 8px 18px;
    background: #f1f8e9;
    color: #2a8768;
    font-weight: 600;
    border-radius: 30px;
    font-size: 15px;
}

/* Slick buttons */
.global-slider .slick-prev,
.global-slider .slick-next {
    width: 45px;
    height: 45px;
    background: #2a8768;
    border-radius: 50%;
    z-index: 10;
}

.global-slider .slick-prev:hover,
.global-slider .slick-next:hover {
    background: #ff9800;
}

.global-slider .slick-prev:before,
.global-slider .slick-next:before {
    font-size: 18px;
    color: #fff;
}

.why-work-with-us {
    background: #fff;
}

/* Box */
.why-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.45s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-box:hover {
    background: linear-gradient(135deg, #2a8768, #81c784);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Icon */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-icon i {
    font-size: 30px;
    color: #fff;
}

/* Icon colors */
.bg-green {
    background: #2a8768;
}

.bg-orange {
    background: #ff9800;
}

.bg-blue {
    background: #2196f3;
}

.bg-purple {
    background: #9c27b0;
}

.bg-teal {
    background: #009688;
}

.bg-red {
    background: #f44336;
}

.bg-darkgreen {
    background: #1b5e20;
}

.bg-yellow {
    background: #fbc02d;
    color: #333;
}

.bg-yellow i {
    color: #fff;
}

/* Hover text color */
.why-box:hover h6,
.why-box:hover p {
    color: #fff;
}

.testimonials {
    background: #f9f9f9;
}

.testimonial-slide {
    padding: 15px;
}

.testimonial-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    border: 2px solid #fc9600;
    transition: all 0.4s ease;
}

.testimonial-box:hover {
    border-color: #2a8768;
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-header svg {
    width: 30px;
}

.review-stars {
    color: #fbbc04;
    font-size: 15px;
}

/* Review text */
.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* User */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4285f4;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-user h6 {
    margin: 0;
    font-size: 14px;
}

.review-user span {
    font-size: 12px;
    color: #777;
}

/* Slick buttons */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 45px;
    height: 45px;
    background: #2a8768;
    border-radius: 50%;
    z-index: 10;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: #ff9800;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-size: 18px;
    color: #fff;
}

.blog-section {
    background: #fff;
}

.blog-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-box:hover img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2a8768;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
}

/* Content */
.blog-content {
    padding: 22px;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-btn {
    display: inline-block;
    padding: 8px 22px;
    background: #ff9800;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background: #2a8768;
}

.site-footer {
    position: relative;
    background: url('../images/footer.jpg') center/cover no-repeat;
    padding: 40px 0 2px;
    color: #ddd;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Widgets */
.footer-widget {
    position: relative;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-widget h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-widget h5::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #ff9800;
    display: block;
    margin-top: 8px;
}

/* Text */
.footer-widget p {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
}

/* Links */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-widget ul li a:hover {
    color: #ff9800;
    padding-left: 6px;
}

/* Contact */
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact i {
    color: #ff9800;
}

/* Social */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #ff9800;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #2a8768;
    transform: translateY(-4px);
}

/* Copyright */
.footer-copy {
    border-top: 1px solid #ff9800;
    padding-top: 20px;
    font-size: 14px;
}

.footer-copy a {
    color: #ff9800;
    text-decoration: none;
}

.footer-copy a:hover {
    text-decoration: underline;
}

.breadcrumb-section {
    position: relative;
    background: url('../images/breadcrumb.avif') center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Title */
.breadcrumb-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #fff !important;
}

/* Mobile */
@media (max-width: 576px) {
    .breadcrumb-title {
        font-size: 28px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff !important;
    content: var(--bs-breadcrumb-divider, "/");
}

.about-solutionx {
    background: #f8f9f4;
}

/* Subtitle */
.about-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #2a8768;
    margin-top: 10px;
}

/* Content box */
.about-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Accent line */
.about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    width: 6px;
    height: calc(100% - 80px);
    background: linear-gradient(180deg, #2a8768, #ff9800);
    border-radius: 10px;
}

/* Paragraphs */
.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 576px) {
    .about-content {
        padding: 25px 20px;
    }

    .about-subtitle {
        font-size: 17px;
    }
}

.about-company {
    background: #ffffff;
}

/* Content Card */
.company-content {
    background: #f9f9f6;
    padding: 35px 40px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Accent bar */
.company-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    width: 5px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #2a8768, #ff9800);
    border-radius: 8px;
}

/* Text */
.company-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.company-content p:last-child {
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 576px) {
    .company-content {
        padding: 25px 20px;
    }
}


/* Our team member */

.our-team {
    background: #f8f9f4;
}

/* Card */
.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

/* Image */
.team-img {
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.08);
}

/* Info */
.team-info {
    padding: 20px 15px;
}

.team-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info span {
    font-size: 14px;
    color: #2a8768;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 576px) {
    .team-img img {
        height: 240px;
    }
}

.mission-vision {
    background: #ffffff;
}

/* Box */
.mv-box {
    background: #f9f9f6;
    border-radius: 16px;
    padding: 40px 35px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

/* Icon */
.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #2a8768;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.mv-icon i {
    font-size: 36px;
    color: #ffffff;
}

/* Hover icon */
.mv-box:hover .mv-icon {
    background: #ff9800;
}

/* Headings */
.mv-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.mv-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Mobile */
@media (max-width: 576px) {
    .mv-box {
        padding: 30px 22px;
    }
}

.certifications {
    background: #f8f9f4;
}

/* Image Box */
.cert-img-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

/* Image */
.cert-img-box img {
    max-width: 100%;
    /* max-height: 120px; */
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.cert-img-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.cert-img-box:hover img {
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 576px) {
    .cert-img-box {
        padding: 18px;
    }

    .cert-img-box img {
        max-height: 90px;
    }
}

.ports-dispatch {
    background: #ffffff;
}

/* Port box */
.port-box {
    background: #f9f9f6;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.port-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Icon */
.port-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #2a8768;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.port-icon i {
    font-size: 30px;
    color: #ffffff;
}

.port-box:hover .port-icon {
    background: #ff9800;
}

/* Text */
.port-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.port-box span {
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 576px) {
    .port-box {
        padding: 25px 15px;
    }
}

.packaging-standards {
    background: #f8f9f4;
}

/* Box */
.pack-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pack-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

/* Icon */
.pack-icon {
    width: 75px;
    height: 75px;
    background: #2a8768;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: 0.4s;
}

.pack-icon i {
    font-size: 32px;
    color: #fff;
}

.pack-box:hover .pack-icon {
    background: #ff9800;
}

/* Text */
.pack-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pack-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {
    .pack-box {
        padding: 28px 18px;
    }
}

.order-process {
    background: #ffffff;
}

/* Box */
.process-box {
    background: #f9f9f6;
    border-radius: 16px;
    padding: 30px 18px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

/* Step Number */
.process-step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Icon */
.process-icon {
    width: 70px;
    height: 70px;
    background: #2a8768;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 15px;
    transition: 0.4s;
}

.process-icon i {
    font-size: 30px;
    color: #ffffff;
}

.process-box:hover .process-icon {
    background: #ff9800;
}

/* Text */
.process-box h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .process-step {
        top: -12px;
    }
}

.payment-shipping {
    background: #f8f9f4;
}

/* Main Box */
.pay-ship-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pay-ship-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

/* Header */
.box-head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.box-icon {
    width: 60px;
    height: 60px;
    background: #2a8768;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.4s;
}

.box-icon i {
    font-size: 26px;
    color: #ffffff;
}

.pay-ship-box:hover .box-icon {
    background: #ff9800;
}

.box-head h4 {
    font-size: 22px;
    font-weight: 600;
}

/* List */
.info-list {
    padding-left: 18px;
}

.info-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {
    .pay-ship-box {
        padding: 28px 22px;
    }

    .box-head h4 {
        font-size: 20px;
    }
}

.blog-main-img {
    border-radius: 16px;
}

.blog-meta span {
    font-size: 14px;
    color: #777;
    margin-right: 15px;
}

.blog-meta i {
    color: #2a8768;
    margin-right: 5px;
}

.blog-title {
    font-weight: 600;
    font-size: 18px;
}

.blog-content p {
    line-height: 1.8;
    color: #444;
}

.blog-content blockquote {
    background: #f8f9f4;
    padding: 20px;
    border-left: 4px solid #2a8768;
    margin: 30px 0;
    font-style: italic;
}

/* Comments */
.comment-box {
    background: #f9f9f6;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.comment-box h6 {
    font-weight: 600;
}

.comment-box span {
    font-size: 13px;
    color: #888;
}

.comment-box p {
    margin-top: 8px;
    font-size: 14px;
}

/* Sidebar */
.sidebar-box {
    background: #f9f9f6;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.sidebar-box h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.related-blog-list {
    list-style: none;
    padding-left: 0;
}

.related-blog-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.related-blog-list img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
}

.related-blog-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.related-blog-list a:hover {
    color: #2a8768;
}

/* Categories */
.category-list {
    list-style: none;
    padding-left: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #333;
    text-decoration: none;
}

.category-list a:hover {
    color: #2a8768;
}

/* Tags */
.tag-list a {
    display: inline-block;
    background: #e8f5e9;
    color: #2a8768;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin: 5px 4px;
    text-decoration: none;
}

.tag-list a:hover {
    background: #2a8768;
    color: #fff;
}

.blog-sidebar-sticky {
    position: sticky;
    top: 100px;
    /* adjust if you have sticky header */
}

/* Disable sticky on mobile */
@media (max-width: 991px) {
    .blog-sidebar-sticky {
        position: static;
    }
}

.contact-us {
    background: #f8f9f4;
}

/* Info Box */
.contact-info-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: #2a8768;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.4s;
}

.contact-icon i {
    color: #fff;
    font-size: 22px;
}

.contact-item:hover .contact-icon {
    background: #ff9800;
}

.contact-item h6 {
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Form Box */
.contact-form-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-form-box .form-control {
    border-radius: 12px;
    padding: 12px 15px;
}

.contact-form-box .form-control:focus {
    box-shadow: none;
    border-color: #2a8768;
}

/* Mobile */
@media (max-width: 768px) {

    .contact-info-box,
    .contact-form-box {
        padding: 28px;
    }
}

/* ================= PRODUCT DETAILS ================= */
.product-details {
    padding: 50px 0;
}

.product-image-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-product-img {
    width: 100%;
    border-radius: 16px;
}

/* Thumbnails */
.slick-thumb {
    margin-top: 20px;
}

.slick-thumb img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.slick-thumb img:hover,
.slick-thumb .slick-current img {
    border-color: #2e7d32;
}

/* Product Info */
.product-info h2 {
    font-weight: 700;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2e7d32;
}

.product-info ul li {
    margin-bottom: 8px;
}

/* Buttons */
.btn-custom {
    background: #2e7d32;
    color: #fff;
    border-radius: 30px;
    padding: 10px 28px;
}

.btn-custom:hover {
    background: #1b5e20;
}

/* ================= RELATED PRODUCTS ================= */
.related-products {
    padding: 15px 0;
    background-color: #deeaf1;
}

.related-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    margin: 10px;
}

.related-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .slick-thumb img {
        width: 95px;
        height: 95px;
    }
}

.wa-chat-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    z-index: 999;
}

.wa-chat-btn img {
    width: 32px;
}

.wa-chat-box {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    display: none;
    z-index: 999;
}

.wa-header {
    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.wa-body {
    padding: 15px;
    font-size: 14px;
}

.wa-footer {
    padding: 10px;
    text-align: center;
}

.wa-footer a {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}
/* ================= Privacy Policy ================= */
.privacy-policy-section {
    padding: 30px 0;
    background: #f8f9f6;
}

.policy-title {
    font-size: 30px;
    font-weight: 700;
}

.policy-title span {
    color: #2e7d32;
}

.policy-subtitle {
    max-width: 700px;
    margin: 12px auto 0;
    color: #666;
}

.policy-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    animation: fadeUp 0.6s ease-in-out;
}

.policy-box h5 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2e7d32;
}

.policy-box p {
    color: #444;
    line-height: 1.8;
}

.policy-box ul {
    padding-left: 20px;
}

.policy-box ul li {
    margin-bottom: 8px;
    color: #444;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .policy-box {
        padding: 25px;
    }
    .policy-title {
        font-size: 30px;
    }
}

/* ================= Terms & Conditions ================= */
.terms-section {
    padding: 30px 0;
    background: #f8f9f6;
}

.terms-title {
    font-size: 30px;
    font-weight: 700;
}

.terms-title span {
    color: #2e7d32;
}

.terms-subtitle {
    max-width: 700px;
    margin: 12px auto 0;
    color: #666;
}

.terms-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    animation: fadeUp 0.6s ease-in-out;
}

.terms-box h5 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2e7d32;
}

.terms-box p,
.terms-box ul li {
    color: #444;
    line-height: 1.8;
}

.terms-box ul {
    padding-left: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .terms-box {
        padding: 25px;
    }
    .terms-title {
        font-size: 30px;
    }
}

/* ================= Cancellation Policy ================= */
.cancellation-policy-section {
    padding: 30px 0;
    background: #f8f9f6;
}
.export-policy-section {
    padding: 30px 0;
    background: #f8f9f6;
}
