/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.59
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --green-color: #22570E;
    --yellow-color: #c6d936;
    --light-green-color: #C6D936;
    --heading-color: #182421;
}

.container-fluid {
    width: 94%;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

a {
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Red Hat Text', sans-serif;
}

.main-header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid var(--green-color);
}


a.logo-brand img {
    width: 100%;
}

.btn-pill {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fff;
    color: var(--green-color);
    padding: 0.5rem 0.6rem 0.5rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon-circle-hero {
    background-color: var(--green-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-pill:hover {
    background-color: var(--green-color);
    color: #fff;
}

.btn-pill:hover .btn-icon-circle-hero {
    transform: rotate(45deg);
    background-color: #fff;
    color: var(--green-color);
}

.main-body {
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
}


.banner {
    position: relative;
    padding: 0;
}

.banner-content {
    position: absolute;
    top: 23%;
    left: 5%;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #042C2A 0%, #042c2a70 50%, rgb(83 237 130 / 0%) 100%);
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .8;
    transition: opacity .15s ease;
}

.banner-content h1 {
    max-width: 650px;
    font-size: 50px;
    color: #fff;
}

.highlight {
    color: var(--yellow-color);
}

.banner-content p {
    max-width: 548px;
    font-size: 16px;
    margin: 15px 0 25px;
}

.banner-btn {
    background-color: #fff;
    color: var(--green-color);
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 37px;
    display: inline-flex;
    border: 1px solid #fff;
    transition: all 0.3s !important;
}

.banner-btn:hover {
    background-color: transparent;
    color: #fff;
}

a.banner-btn i {
    transform: rotate(320deg) !important;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}



/* About Us Section */
.about-us {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: top;
}

.about-us .about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.about-us .stat-card {
    position: absolute;
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-us .stat-card-1 {
    /* background-color: #fff;
    top: 50px;
    left: -20px;
    transform: translateY(-50%); */
    display: none;
}

.about-us .stat-card-2 {
    background-color: #fff;
    bottom: 20px;
    right: 35px;
    padding: 1rem 1.5rem;
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-us .stat-card p {
    margin: 0;
    font-weight: 500;
}

.about-us .stat-card .stat-year {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #A20B11;
    text-align: center;
}

.about-us .stat-card .stat-label {
    font-size: 0.8rem;
    color: #A20B11;
}

.about-us .stat-card .stat-rating {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-color);
}

.about-us .stat-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.about-us .stat-icon-small {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.about-us .decorative-shape-1 {
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: -20px;
    left: 20px;
    z-index: -1;
}

.about-us .decorative-shape-2 {
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.about-content {
    padding-left: 20px;
}

.about-content .small-heading {
    color: var(--green-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.about-content .small-line {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--green-color);
    border-radius: 10px;
}

.about-content .main-heading {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--heading-color);
}

.about-content .main-heading span {
    color: var(--yellow-color);
}

.about-content .body-text {
    color: var(--text-color-light);
    line-height: 1.6;
}

.about-content .feature-item {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-color);
}

.about-content .feature-item:last-child {
    border-bottom: none;
}

.about-content .feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about-content .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-content .feature-description {
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-content .checklist {
    padding-left: 0;
    margin-top: 20px;
}

.about-content .checklist li {
    margin-bottom: 8px;
    color: var(--text-color-light);
}

.about-content .learn-more-btn {
    background-color: var(--green-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    /* font-weight: 600; */
    color: #fff;
    transition: background-color 0.3s ease;
}

.about-content .learn-more-btn:hover {
    background-color: #0A7A6D;
}


/* Keyframe for continuous, energetic rotation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The main button container */
.btn-rotating-border {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    color: white;
    padding: 2px;
    background: transparent;
    max-width: 250px;
    display: block;
    cursor: pointer;
    border-radius: 0.75rem;
    transition: transform 0.2s ease-out;
    /* shadow-2xl equivalent */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-rotating-border:hover {
    transform: scale(1.05);
}

.btn-rotating-border::before {
    content: '';
    position: absolute;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;

    background: conic-gradient(from 180deg at 50% 50%,
            var(--yellow-color) 0%,
            var(--light-green-color) 5%,
            var(--yellow-color) 15%,
            var(--heading-color) 20%,
            var(--yellow-color) 30%,
            var(--light-green-color) 35%,
            var(--yellow-color) 45%,
            var(--light-green-color) 55%,
            var(--yellow-color) 65%,
            var(--heading-color) 70%,
            var(--yellow-color) 80%,
            var(--light-green-color) 85%,
            var(--yellow-color) 100%);

    z-index: -2;
    animation: spin 4s linear infinite;
    /* Faster spin for an energetic, 'glitchy' feel */
}

/* ::after: The inner element acting as the main background and holding the text */
.btn-rotating-border::after {
    content: attr(data-text);
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    /* Equivalent to p-3 py-4, etc. */
    padding: 12px 24px;
    background: var(--green-color);
    border-radius: 0.65rem;
    transition: background 0.4s ease, color 0.1s ease, box-shadow 0.4s ease, text-shadow 0.1s ease;
    line-height: 1;
    text-align: center;
}

.btn-rotating-border:hover::after {
    /* background: rgba(17, 24, 39, 0.7);  */
    background: #fff;
    color: var(--primary-color);
}


/* Services Section */
.services {
    background: url(images/key-bg.png), rgb(7 47 12 / 67%);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;

}

.services .small-heading {
    color: var(--yellow-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.services .main-heading {
    font-weight: 600;
    line-height: 1.2;
    color: white;
    font-size: 40px;
}

.services .service-card-dark i,
h3,
p {
    position: relative;
}

.services .service-card-dark {
    background-color: #00000052;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.services .service-card-dark.gradient {
    background: #ffffff30;
}

.service-card-dark.gradient::after {
    filter: brightness(0) saturate(100%) invert(69%) sepia(77%) saturate(840%) hue-rotate(6deg) brightness(95%) contrast(96%);

}

.services .service-icon-dark {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s;
    color: var(--green-color);
}

.services .service-card-dark.gradient .service-icon-dark {
    background-color: white;
    color: var(--yellow-color);
}

.service-title-dark {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.service-description-dark {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-color: #ffffff30;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    visibility: visible;
}

.service-card-dark:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.service-card-dark:hover::after {
    filter: brightness(0) saturate(100%) invert(69%) sepia(77%) saturate(840%) hue-rotate(6deg) brightness(95%) contrast(96%);

}

.service-card-dark::after {
    position: absolute;
    bottom: 6px;
    right: 6px;
    content: "";
    background-image: url(images/arrow-shape.png);
    /* filter: grayscale(100%) brightness(0); */
    background-repeat: no-repeat;
    background-size: cover;
    width: 21px;
    height: 18px;
    transition: all 0.4s ease-in-out;
    filter: grayscale(100%) brightness(100);
}

.services .service-card-dark:hover .service-icon-dark {
    background-color: white;
    color: var(--yellow-color);
}




/* .manufacturing-section{
  padding:80px 0;
} */

/* Badge */
.badge-pill {
    display: inline-block;
    background: var(--light-green-color);
    color: var(--green-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.manufacturing-section .main-heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 20px;
    /* margin-top: 15px; */
}

.custom-tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.custom-tabs .nav-link {
    border: none;
    background: none;
    font-weight: 600;
    color: #6b6b6b;
    padding: 10px 0;
    margin-right: 30px;
}

.custom-tabs .nav-link.active {
    color: var(--green-color);
    border-bottom: 2px solid var(--green-color);
}

/* Content */
.custom-tab-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* Feature list */
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    position: relative;
    padding-left: 22px;
}

.features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--green-color);
}

/* Button */
.primary-btn {
    display: inline-block;
    background: var(--green-color);
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
}

/* Right Image */
.right-image {
    width: 100%;
    border-radius: 6px;
}

/* Stats Box */
.stats-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--light-green-color);
    padding: 30px;
    width: 260px;
}

.stat-item:not(:last-child) {
    margin-bottom: 20px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

/* Responsive */
@media(max-width:991px) {
    .stats-card {
        position: static;
        margin-top: 20px;
        width: 100%;
        border-radius: 6px;
    }
}


section#why-choose-us {
    padding: 0;
}

.cta-banner {
    background: url('images/cta-bg-2.webp') center/cover no-repeat;
    border-radius: 25px;
    padding: 50px 70px;
    position: relative;
    background-attachment: fixed !important;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 60, 23, 0.74);
    border-radius: 25px;
    z-index: 1;
}

.cta-heading {
    font-size: 32px;
    line-height: 1.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.btn-custom-pill {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--yellow-color);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-custom-pill .btn-icon-circle-s2 {
    background-color: #fff;
    color: var(--yellow-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom-pill:hover .btn-icon-circle-s2 {
    color: var(--green-color);
}

.btn-custom-pill:hover {
    background-color: var(--green-color);
    color: #fff;
}



/* pcd section */
.small-badge {
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #fff;
    color: var(--blue-color);
    border: 1px solid #0000005e;
    display: inline;
    align-items: center;
    justify-content: center;
}

.small-badge span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    border: 6px solid var(--red-color);
    display: inline-flex;
    margin-right: 10px;
}

.pcd-img-box {
    position: relative;
}

.pcd-img-box img {
    border-radius: 20px;
}

.tag-box {
    position: absolute;
    top: 0;
    width: 255px;
    right: 0;
    background-color: var(--blue-color);
    padding: 20px;
    border-radius: 0px 20px 0px 20px;
    color: #fff;
}

.tag-box a {
    color: var(--red-color);
}

.pcd-content {
    padding-left: 30px;
}

.pcd-content h2 {
    font-weight: 600;
    font-size: 40px;
    /* line-height: 1.1; */
    /* margin: 15px 0; */
    color: var(--heading-color);
}

.pcd-content h2 span {
    font-family: 'Marck Script', cursive;
    color: var(--red-color);
    font-size: 3.5rem;
    font-weight: 400;
}

.pcd-point-box {
    display: flex;
    align-items: center;
}

.icon-box-pcd i {
    width: 70px;
    height: 70px;
    background-color: var(--green-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 18px;
    margin-right: 30px;
    color: #fff;
}

.pcd-point-1 p {
    color: #5F5F5F;
}




/* --- Product Section - Dark Theme --- */
.products-section {
    /* background-color: var(--clr-primary-dark) !important; */
    background: linear-gradient(90deg, var(--green-color) 0%, var(--light-green-color) 100%);
    overflow: hidden;
}

.sycon-main-headline {
    font-size: 40px;
    font-weight: 600;
}

.products-section .subheading-bg {
    background-color: unset;
}

.products-section .badge-s4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--clr-border-light);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--clr-white);
}

.products-section .badge-s4 span {
    color: var(--clr-accent-gold);
    font-weight: 700;
    font-size: 1.1em;
}


.products-section .btn-pill-explore {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--clr-white);
    color: var(--clr-primary-dark);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products-section .btn-icon-circle-explore {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.products-section .btn-pill-explore:hover {
    background-color: var(--clr-accent-gold);
    color: var(--clr-primary-dark);
}

.products-section .btn-pill-explore:hover .btn-icon-circle-explore {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    transform: translateX(3px);
}

.products-section .products-swiper {
    padding: 10px 0 80px 0;
}

.products-section .product-slide {
    padding: 10px;
    height: auto;
    margin-right: 0 !important;
}

.products-section .product-card {
    background-color: var(--clr-white);
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products-section .product-image-container {
    background-color: var(--clr-light-gray);
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.products-section .product-image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.products-section .product-info {
    padding: 15px;
    text-align: left;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: white;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    width: 90%;
    border-radius: 15px;
}


.products-section .product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.products-section .product-details {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.products-section .product-pagination.swiper-pagination-bullets {
    bottom: 0;
    text-align: center;
    padding-left: 10px;
}

.products-section .product-pagination .swiper-pagination-bullet {
    background-color: #fff;
    width: 13px;
    background: #fff;
    border-radius: 5px;
    height: 10px;
    margin: 0 5px;
    opacity: 0.5;
    transition: background-color 0.3s, opacity 0.3s;
}

.products-section .product-pagination .swiper-pagination-bullet-active {
    background-color: var(--green-color);
    width: 25px;
    border-radius: 5px;
    opacity: 1;
}

@media (max-width: 768px) {

    .products-section .btn-pill-explore {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .products-section .btn-icon-circle-explore {
        width: 25px;
        height: 25px;
    }

    .products-section .product-info {
        padding: 10px;
    }

    .products-section .product-name {
        font-size: 1rem;
    }

    .products-section .product-slide {
        padding: 0;
    }
}



/* contact section */
.contact-box {
    border-radius: 25px;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #bfbfbf;
}

h2.manufacture-heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--heading-color);
}

.contact-box img {
    border-radius: 25px 0 0 25px;
}

.contact-box-content {
    padding: 0 40px;
}

.contact-box-content p {
    font-size: 17px;
    margin-bottom: 25px;
}

.contact-box-content .form-control {
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    padding: 8px 10px;
}

.contact-box-content input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: inline-flex;
    background-color: var(--yellow-color);
    padding: 10px 25px;
    align-items: center;
    border-radius: 50px;
    border: none;
}



.footer-section {
    color: #fff;
    margin-top: auto;
}

.footer-main-box {
    background-color: var(--green-color);
    width: 98%;
    margin: auto;
    padding: 60px 0;
    border-radius: 15px 15px;


}

.footer-logo-col {
    padding-right: 30px;
}



.footer-logo img {
    height: 75px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.footer-logo-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -5px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-links-col h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 15px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: #fff;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #101828;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 10px;
}

.contact-info p a {
    color: #475467;
    font-size: 14px;
}

.contact-info strong {
    color: #101828;
}

.emergency-number {
    font-size: 17px;
    font-weight: 700;
    color: #101828;
    margin-top: 20px;
    margin-bottom: 25px;
}

.appointment-btn {
    background-color: var(--yellow-color);
    color: var(--green-color);
    border: none;
    width: 100%;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.appointment-btn:hover {
    background-color: #219d52;
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/* manufacture section */
.manufacture-heading-2 {
    font-size: 40px;
/*     max-width: 600px; */
    margin-top: 15px;
    font-weight: 600;
}

.manufacture-content h5 {
    border-bottom: 1px solid #ababab;
    padding-bottom: 10px;
    color: #1c3925;
}

.manu-point-1 p {
    margin-bottom: 0;
    color: #0a120a;
}

.manu-point-1 {
    display: flex;
    align-items: flex-end;
}

.manu-point-1 p {
    margin-bottom: 0;
}

.manu-point-1 img {
    width: 65px;
    margin-right: 10px;
}


/* testinomial section */
.testinomial-left {
    background-color: var(--green-color);
    padding: 30px;
    border-radius: 25px;
    height: 100%;
}

.test-small {
    display: inline;
    background-color: #ffffff3d;
    padding: 5px 15px;
    border-radius: 15px;
    color: #fff;
}

.testinomial-left h2 {
    color: #fff;
    margin: 15px 0;
    font-size: 40px;
    max-width: 423px;
}

.testinomial-left p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 0;
}

.testinomial-left {
    background-color: var(--green-color);
    padding: 50px 30px;
    border-radius: 25px;
}

.client-image-box img {
    width: 50px !important;
    border-radius: 50%;
}

.testinomial-owl {
    background-color: #111811;
    padding: 50px 30px;
    border-radius: 25px;
    color: #fff;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* .testinomial-right {
    background-color: #1C2539;
    padding: 50px 30px;
    border-radius: 25px;
    color: #fff;
    height: 100%;
} */
.testinomial-right i {
    margin: 0 5px 0 0px;
    color: #ECB014;
}

.testinomial-right p {
    margin: 30px 0 40px;
    font-size: 18px;
}

.client-image-box p {
    margin: 0;
}

.client-image-box {
    display: flex;
    align-items: center;
    gap: 20px;
}


section.ourdivision {
    /* margin: 60px 0 0 0; */
    position: relative;
    z-index: 9;
    padding: 0;
}

.container-fluid.extermee {
    background: #fff;
    padding: 35px 15px;
    box-shadow: 0px 0px 5px #22570e;
    border-radius: 16px;
    width: 92%;
}

h2.mainheadingset {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 10px;
    padding-left: 15px;
}

h2.mainheadingset:before {
    position: absolute;
    content: '';
    bottom: 49%;
    right: 15px;
    background: linear-gradient(90deg, var(--green-color) 0%, var(--light-green-color) 100%);
    width: 68%;
    height: 4px;
}

.delivery-logo {
    border: 5px double var(--green-color);
}

.delivery-logo img {
    width: 100%;
}


@media(max-width:991px) {
    .container-fluid {
        width: 96%;
    }

    section {
        padding: 40px 0;
    }

    .carousel-item video {
        height: 550px;
        object-fit: cover;
    }

    .banner-content h1 {
        font-size: 33px;
    }

    .banner-content {
        top: 17%;
        left: 5%;
    }

    .about-us .stat-card-2 {
        bottom: 20px;
        right: 8%;
        width: 84%;
        padding: 15px 10px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content .main-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .services .main-heading {
        font-size: 30px;
    }

    .services .service-card-dark {
        padding: 30px 20px;
    }

    .manufacturing-section .main-heading {
        font-size: 30px;
    }

    .right-image {
        margin-top: 20px;
    }

    .cta-banner {
        padding: 40px 20px;
    }

    .cta-heading {
        font-size: 28px;
        margin-bottom: 20px !important;
    }

    .pcd-img-box {
        margin-bottom: 30px;
    }

    .pcd-content {
        padding-left: 0;
    }

    .pcd-content h2 {
        font-size: 30px;
    }

    .icon-box-pcd i {
        width: 60px;
        height: 60px;
        font-size: 25px;
        margin-right: 15px;
    }

    .sycon-main-headline {
        font-size: 30px;
    }

    .contact-box img {
        border-radius: 25px 25px 0 0px;
    }

    .contact-box-content {
        padding: 30px 10px;
    }

    h2.manufacture-heading {
        font-size: 30px;
    }

    h2.mainheadingset:before {
        width: 10%;
    }

    .delivery-logo {
        margin-bottom: 15px;
    }
    .manufacture-heading-2 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 15px;
}
.testinomial-left h2 {
    margin: 0px 0 15px;
    font-size: 30px;
}
}

#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;

}

#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}

#sequence {
    width: 100%;
    float: left;
    background: var(--green-color);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}


.modal-body.contact-modal {
    background-color: var(--green-color);
}

.modal-body.contact-modal input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: inline-flex;
    background-color: var(--yellow-color);
    padding: 10px 25px;
    align-items: center;
    border-radius: 50px;
    border: none;
}



/* Breadcrumb css */
.breadcrumb-section {
    background: linear-gradient(90deg, var(--green-color) 0%, var(--light-green-color) 100%);
    position: relative;
    padding: 40px 0 40px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 3px solid #244405;
}

.breadcrumb-section .page-header-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}


.simple-breadcrumb-nav {
    font-size: 1rem;
    white-space: nowrap;
}

.simple-breadcrumb-nav a {
    color: #ddd;
    font-weight: 500;
    transition: 0.4s;
}

.simple-breadcrumb-nav a:hover {
    color: var(--yellow-color);
    text-decoration: none;
}

.simple-breadcrumb-nav .separator {
    margin: 0 8px;
    color: var(--heading-color);
    opacity: 0.8;
}

.simple-breadcrumb-nav .current-page-title {
    color: var(--green-color);
    font-weight: 600;
}


@media (max-width: 767.98px) {

    .breadcrumb-section {
        padding: 40px 0 40px;
    }

    .breadcrumb-section .page-header-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .col-md-4.text-end {
        text-align: center !important;
    }

    h1.inner-heading {
        font-size: 28px !important;
    }

    .page-section.bg-subtle {
        padding: 2rem 1rem !important;
    }
}



h1.inner-heading {
    color: var(--heading-color);
    font-weight: bold;
    font-size: 32px;
}

h2.heading-content {
    font-size: 32px;
    font-weight: bold;
    color: var(--green-color);
}

.card-body.text-center i {
    color: var(--green-color);
}

.page-section h2,
.page-section h3 {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.2rem;
    position: relative;
}


.page-section {
    margin-bottom: 5rem;
}

.page-section h2,
.page-section h3 {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.2rem;
    position: relative;
}

.page-section h2::after,
.page-section h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--yellow-color);
    margin-top: 10px;
    border-radius: 2px;
}

.page-section p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Subtle background section */
.page-section.bg-subtle {
    background: linear-gradient(135deg, #DEEED9, #DEEED9);
    padding: 3rem 2rem;
    border-radius: 14px;
    border: 1px solid var(--green-color);
}

/* Card style for last section */
.page-card {
    background: #d5d5d5;
    border-radius: 14px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    height: 100%;
}

.page-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.page-img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.text-custom-heading {
    color: #082772 !important;
}

.infrastructure-card {
    background-color: var(--color-card-bg);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-header-bg {
    background: linear-gradient(180deg, var(--color-page-bg) 0%, var(--color-subtle-bg) 100%);
}

.list-header {
    background-color: var(--color-primary-dark);
    color: var(--color-light);
    padding: 1rem 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.list-header.accent-bg {
    background-color: #d15a2e;
    color: var(--color-light);
}

.machine-list-item {
    padding: 1.1rem 2rem;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-primary-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--color-card-bg);
}

.machine-list-item:hover {
    background-color: #f3f3f3;
    transform: none;
}

.machine-list-item:last-child {
    border-bottom: none;
}

.feature-icon-box-small {
    color: var(--color-light);
    background-color: #082772;
    border: 2px solid #082772;
    width: 55px;
    height: 55px;
    line-height: 51px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 5px 15px rgba(8, 39, 114, 0.2);
}

.heading-accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.75rem auto 30px;
    border-radius: 3px;
}

.feature-card-title {
    color: #082772;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

ul.export-list li {
    padding: 0 0 6px 0;
}

button.product-list-btn {
    background: #517c1a;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
}

button.product-list-btn a {
    color: #fff;
    font-weight: 600;
    font-size: 19px;
}


