@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: "Poppins", sans-serif; */








* {
    font-family: "Poppins", sans-serif !important;
}

body {
    overflow-x: hidden;
    position: relative;
}

:root {
    --black-color: #000;
    --primary-color: #008000;
    --white-color: #fff;
}



p {
    font-size: 16px;
    font-weight: 400;
}



header {
    z-index: 9;
    top: 0;
    background-color: #9aef9aa1;
    left: 0;
    position: relative;
    right: 0;
    width: 100%;
}

.header-container {
    align-items: center;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
    padding: 6px 0;
    width: 100%;
}

.header-container .logo-box .logo {
    height: 105px;
}

.header-container .social-menu-box {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

/* Social icons */
.header-container .social-menu-box .social-box ul {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-container .social-menu-box .social-box ul li a {
    align-items: center;
    background-color: var(--black-color);
    border-radius: 50%;
    color: var(--white-color);
    display: flex;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    transition: all .4s ease;
    width: 30px;
}

.header-container .social-menu-box .social-box ul li a:hover {
    scale: 1.03;
}

/* Menu box */
.header-container .social-menu-box .menu-box,
.page-header-content,
.quality-content {
    position: relative;
    z-index: 1;
}

.header-container .social-menu-box .menu-box button {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    outline: none;
    font-size: 28px;
}

/* Navigation (slide effect) */
.header-container .social-menu-box .menu-box .navigation-bar {
    /* Hidden by default */
    max-height: 0;
    background-color: #008000d3;
    left: -140px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    top: 76px;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    width: 230px;
}

.header-container .social-menu-box .menu-box .navigation-bar.active {
    /* adjust for content */
    padding: 10px;
    max-height: 500px;
}

.header-container .social-menu-box .menu-box .navigation-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-container .social-menu-box .menu-box .navigation-bar ul li a {
    background-color: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    display: block;
    margin-bottom: 10px;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
}

/* Hide close button initially */
.menu-close-button {
    display: none;
}

.page-header {
    align-items: center;
    background: url('../img/page-banner.webp') center/cover no-repeat;
    color: white;
    display: flex;
    height: 200px;
    justify-content: center;
    position: relative;
    text-align: center;
}

.page-header::before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.page-header h1 {

    margin-bottom: 10px;
    text-transform: uppercase;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
    content: "›";
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb .active {
    color: #fff;
}

/* quality and infra  */




.quality-section {
    background: url('../img/page-banner.webp') no-repeat center center/cover;
    color: #fff;
    padding: 60px 20px;
    position: relative;
}

.quality-section::before {
    /* Green overlay */
    z-index: 0;
    background: rgba(15, 112, 61, 0.9);
    content: "";
    inset: 0;
    position: absolute;
}

.quality-content img {
    height: auto;
    max-width: 100%;
}

.quality-text h2 {
    color: #fff;

    margin-bottom: 20px;
}

.quality-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* quality and infra  */





/* hero banner css  */
.hero-section {
    margin: auto;
    position: relative;
    width: 100%;
}

.hero-section img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Custom Navigation Buttons */
.custom-nav {
    /* hidden by default */
    visibility: hidden;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;

    height: 45px;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    width: 45px;
}

.hero-section:hover .custom-nav {
    opacity: 1;
    visibility: visible;
}

.custom-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Adjust positions */
.swiper-button-prev {
    left: 15px;
}

.swiper-button-next {
    right: 15px;
}

.swiper-button-prev::after,
.swiper-button-next::after {

    display: none;
}

/* Pagination Styling */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    opacity: 1;
}

/* hero banner css  */










/* Footer Base */
.footer {
    /* dark green background */
    color: #ffffff;
    background-color: #0d8237;
}

.footer .footer-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Paragraph */
.footer .footer-content p,
/* Contact Info */
.footer .footer-content ul li {
    line-height: 1.6;
}

/* Links */
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #cddc39;
}

/* Social Icons */
.footer ul.list-inline li a {
    background: #1a963d;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    transition: all 0.3s ease;
    width: 35px;
}

.footer ul.list-inline li a:hover {
    background: #cddc39;
    color: #0d8237;
}

/* Bottom Bar */
.footer .footer-bottom {
    /* lighter green strip */
    padding: 10px 15px;
    background: #65b64d;
    margin-top: 30px;
}

.footer .footer-bottom p {
    margin: 0;
}

/* certificate page css  */

.cert-box {
    /* box green */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #c5e1c5;
    margin: 0px auto;
    max-width: 90%;
    padding: 30px;
}

.cert-text {
    color: #000;
    line-height: 1.6;

}

.certificate-box {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    margin: 10px;
    padding: 10px;
    text-align: center;
}

.certificate-box img {
    /* adjust height */
    object-fit: contain;
    height: auto;
    max-height: 500px;
    width: 100%;
}

/* certificate page css  */



/* contact page css  */


.contact-box {
    background: #0f703d;
    color: #fff;
    height: 100%;
    padding: 20px;
}

.contact-box h4 {

    margin-bottom: 20px;
}

.contact-info i {
    color: #fff;
    margin-right: 8px;
}

.info-card {
    align-items: center;
    border: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px;
}

.director-badge {
    background: #000;
    color: #fff;
    display: inline-block;

    padding: 5px 15px;
    position: relative;
    top: -12px;
}

.social-icons a {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin-right: 8px;
    text-align: center;
    width: 40px;
}

.social-icons a:hover {
    background: #fff;
    color: #0f703d;
}

.form-box {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* contact page css  */




/* index page css  */


.flip-card {
    /* fixed height */
    margin-bottom: 20px;
    background: transparent;
    height: 300px;
    perspective: 1000px;
    width: 100%;
}

.flip-card-inner {
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease, box-shadow 0.3s ease;
    width: 100%;
}

.flip-card:hover .flip-card-inner {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: rotateY(180deg) scale(1.03);
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

/* Front Side */
.flip-card-front img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Back Side */
.flip-card-back {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transform: rotateY(180deg);
}

.flip-card-back img.bg {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.flip-card-back::before {
    background: rgba(0, 0, 0, 0.55);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.flip-card-back img.icon {
    margin-bottom: 15px;
    position: relative;
    width: 60px;
    z-index: 2;
}

.flip-card-back h2,
.flip-card-back p {
    margin: 0;
    position: relative;
    z-index: 2;
}

.flip-card-back h2 {

    margin-bottom: 10px;
}

.flip-card-back p {
    line-height: 1.5;
}

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

}

@media (max-width: 576px) {
    .flip-card {
        height: 220px;
    }

    .flip-card-back img.icon {
        width: 45px;
    }

}


/* index page css  */





/* product page css  */



/* Main Tabs */
.nav-pills .nav-link,
/* Inner Tabs */
.inner-nav .nav-link,
/* Main Tabs */
.nav-pills .nav-link,
/* Inner Tabs */
.inner-nav .nav-link {
    background: #e6e6e6;
    border-radius: .5rem;
    color: #000;
    margin-right: .5rem;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active {
    background-color: #2c9c4c;
    color: #fff;
}

.inner-nav .nav-link.active,
.inner-nav .nav-link.active {
    background-color: #f26522;
    color: #fff;
}

.inner-tab-pane,
.inner-tab-pane {
    background: #006633;
    color: #fff;
    margin-top: 1rem;
    padding: 1rem;
}

/* product page css  */



/* quality page css  */



.process-card {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.process-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.process-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.process-overlay {
    align-items: center;
    background: rgba(15, 112, 61, 0.85);
    color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    left: -100%;
    padding: 20px;
    position: absolute;
    text-align: center;
    top: 0;
    transition: left 0.5s ease;
    width: 100%;
}

.process-card:hover .process-overlay {
    left: 0;
}

.process-title {
    bottom: 10px;
    color: #fff;

    left: 50%;
    position: absolute;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
}

.process-card:hover .process-title {
    opacity: 0;
}

/* quality page css  */



/* about page  css  */





.left {
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e1e6e4;
    display: flex;
    justify-content: center;
    padding: 12px;
}

.product-image {
    max-width: 420px;
    object-fit: contain;
    width: 100%;
}

/* right card */
.card {
    background: linear-gradient(180deg, var(--card-bg), var(--dark-green));
    box-shadow: 0 6px 18px rgba(10, 80, 40, 0.08);
    color: var(--text);
    padding: 20px;
}

.title {
    margin: 0 0 8px;
}

.subtitle {
    line-height: 1.45;
    margin-bottom: 14px;
    opacity: 0.95;
}

.features {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 16px;
    padding: 14px;
}

.features h4 {
    margin: 0 0 8px;
}

.features ul {
    margin: 0;
    padding-left: 18px;
}

.features li {
    margin: 6px 0;
}

/* table */
.specs {
    margin-top: 6px;
}

.specs-table {
    border-collapse: collapse;
    width: 100%;
}

.specs-table th,
.specs-table td {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px;
    text-align: left;
}

.specs-table th {
    background: rgba(0, 0, 0, 0.12);
}

/* responsive */
@media (max-width:900px) {
    .wrapper {
        grid-template-columns: 1fr;
    }

    .left {
        order: 2;
    }

    .card {
        order: 1;
    }

}


/* small helpers */
.badge {
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 6px 8px;
}

/* Top Section */
.top-section {
    display: flex;
    flex-wrap: wrap;
}

.top-section img {
    height: auto;
    object-fit: cover;
    width: 50%;
}

.top-text {
    background: #4caf50;
    box-sizing: border-box;
    color: #fff;
    padding: 40px;

    width: 50%;
}

.section-title {
    align-items: center;
    color: #ffffffff;
    display: flex;
    width: 30%;
}

.section-title::after {
    background: #4caf50;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 8px;
    margin-left: 10px;
    width: 8px;
}

.section-text {

    width: 70%;
}

.section {
    align-items: flex-start;
    display: flex;
    margin-bottom: 40px;
}



.title {
    color: #4CAF50;

    position: relative;
    text-transform: uppercase;
    width: 20%;
}

.title::after {
    background: #4CAF50;
    content: "";
    display: block;
    height: 2px;
    margin-top: 5px;
    width: 40px;
}

.dot {
    background: #4CAF50;
    border-radius: 50%;
    flex-shrink: 0;
    height: 12px;
    margin: 6px 20px 0 20px;
    width: 12px;
}

.content {
    width: 70%;
}

.content b {}