/*
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.4
Tested up to: 6.8
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
 * ----------------------------------------------------------------------------
 */

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

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

:root{
	--ancient-color: #8BC24A;
	--secondary-color: #68A65D ;
	--ancient-bg-color: #8BC24A;
	--heading-text-color: #2F2F2F;
	--dark-bg-color: #256453;
	--ancient-icon-color: #8BC24A;
	--white-color: #ffffff;
	--secondary-dark-bg-color: #041624;
	--footer-highlight-color: #F87802;
	--transition-all: all 0.3s ease;
	--light-bg-color: #1D2F3D;
	--description-color: #898989;
	--light-bg-color-l: #F7F6F2;
    --golden-highlight-color: #ffc600;
    --black-color: #000000;

}
html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	padding: 0;
	line-height: 1.6;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--heading-text-color);
}
a {
	text-decoration: none;
}
ul li, ol li{
	margin: 0;
}
/* Global heading button css */

.main-heading {
    font-size: 38px;
    line-height: 42px;
}
@media(max-width:767px){
    .main-heading {
        font-size: 28px;
        line-height: 36px;
    }
}
.global-btn {
    padding: 10px 20px;
    background: var(--ancient-bg-color);
    border-radius: 5px;
	border: 1px solid var(--ancient-color);
    color: var(--white-color);
	transition: var(--transition-all);
}

.global-btn:hover {
	background: var(--white-color);
    border: 1px solid var(--ancient-color);
    color: var(--ancient-bg-color);
}

.highlight-text{
	color: var(--ancient-color);
	font-weight: 600;
}
.cursive-highlight-text{
	font-size: 24px;
    font-family: 'Architects Daughter', sans-serif;
    color: var(--ancient-color);
    margin-bottom: 7px;
}
/* Header css */
header.site-header {
    background: rgb(0 0 0 / 52%);
    transition: all;
    padding: 15px 0;
    position: absolute;
    z-index: 99;
    width: 100%;
    transition: var(--transition-all);
}
header.site-header.inner-pages {
    position: relative;
    background-color: var(--black-color);
}

header.site-header.navbar-scrolled,header.site-header.inner-pages.navbar-scrolled  {
    position: fixed;
    top: 0;
    z-index: 9999;
    padding: 10px 0;
    background: var(--black-color);
}
header.site-header img.logo-main {
    max-width: 70%;
}
@media(max-width:767px){
    header.site-header img.logo-main {
        max-width: 100%;
    }
}

/* Banner section css */

section.banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

section.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner .container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

/* facts main */
section.facts-main {
    position: relative;
    padding-top: 60px;
}
section.facts-main .main-content {
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.31);
    -webkit-box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.31);
    -moz-box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.31);
    padding: 40px;
	border-radius: 10px;
}
section.facts-main .main-content img {
	margin-top: 10px;
}
section.facts-main .facts-main-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
section.facts-main .facts-main-description {
    font-size: 18px;
    text-align: center;
    font-weight: 400;
}
section.facts-main .global-btn {
    border-radius: 20px;
}
section.facts-main .global-btn:hover i {
	margin-left: 5px;
}
@media(max-width:767px){
    section.facts-main .main-content {
        margin-bottom: 20px;
    }
}

/* section about us */
section.about-us{
	position: relative;
	padding: 60px 0;
}
section.about-us span span {
    position: relative;
    top: 8px;
}
.ancient-desc {
    font-size: 16px;
}
.fact-head {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.fact-description {
    color: var(--description-color);
}
@media(max-width:767px){
    section.about-us .img-organic {
        width: 50px;
    }
}


/* features */
section.features{
	padding: 30px 0;
	background-color: var(--secondary-dark-bg-color);
}
section.features i{
	color: var(--ancient-icon-color);
	font-size: 26px;
}
.feature-head {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}
.feature-desc {
    margin: 0;
    font-size: 16px;
}
.feature-primary {
    background: var(--dark-bg-color);
    padding: 20px;
    border-radius: 5px;
	color: var(--white-color);
}
.feature-secondary {
    background: var(--light-bg-color);
    padding: 20px;
    border-radius: 5px;
	color: var(--white-color);
}
@media(max-width:767px){
.feature-primary,.feature-secondary {
    margin-bottom: 20px;
}

}

/* Cta section */

section.cta {
    position: relative;
    padding: 20px 0;
    background: var(--secondary-dark-bg-color);
}
section.cta .global-btn:hover i{
	margin-right: 5px;
}


/* counter section */
section.counter {
    background-color: var(--light-bg-color-l);
    padding: 40px 0;
}
section.counter .counter-main-heading {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}
section.counter .count {
    font-size: 42px;
    margin: 0;
    font-weight: 600;
	color: var(--ancient-color);
	text-align: center;
}
section.counter .counter-heading {
    margin: 0;
    font-size: 20px;
    text-align: center;
}
@media(max-width:767px){
    section.counter .counter-heading {
        font-size: 18px;
    }
}

/* service section */
section.services {
    position: relative;
    padding-bottom: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.services .main-heading {
    margin-bottom: 40px;
}

section.services .into-head {
    font-weight: 500;
    color: var(--ancient-color);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section.services .service-img img {
    vertical-align: top;
    object-fit: cover;
    background-repeat: no-repeat;
}

section.services .service-number {
    font-size: 62px;
    margin: 0;
    font-weight: 600;
    color: var(--ancient-color);
}

section.services .service-heading {
    font-size: 26px;
    font-weight: 600;
}

section.services .service-desc {
    font-weight: 400;
    letter-spacing: .3px;
}

.service-btn {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--heading-text-color);
    transition: var(--transition-all);
}

section.services .service-btn i {
    color:var(--ancient-color);
}

section.services .service-btn:hover i {
    margin-left: 5px;
}
section.services .service-content{
    border-radius: 5px;
    box-sizing: border-box;
    padding: 1rem 1.2rem 1.5rem;
    transition: var(--transition-all);
}
section.services .service-content:hover {
    background-color: var(--dark-bg-color);
    color: var(--white-color);
    transform: translatey(-10px);
    -moz-box-shadow: 5px 5px 15px rgba(20,39,6,.1);
    -webkit-box-shadow: 5px 5px 15px rgba(20,39,6,.1);
    box-shadow: 5px 5px 15px rgba(20,39,6,.1);

}
section.services .service-content:hover .service-btn{
    color: var(--white-color);
}
section.services .service-content:hover i {
    margin-left: 5px;
}
section.services .service-content:hover i, 
section.services .service-content:hover .service-number{
    color: var(--golden-highlight-color);
}

/* section what-make-us */
section.what-make-us .image-with-content-container {
    position: relative;
    margin-bottom: 40px;
}
section.what-make-us .into-head {
    font-weight: 500;
    color: var(--ancient-color);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section.what-make-us .featured-image-wrapper {
    position: relative;
    border-radius: 5px 5px 0 0;
}

section.what-make-us .featured-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: 100% 20%;
    max-height: 98px;
}

section.what-make-us .overlap-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background:var(--ancient-icon-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 3px solid #f8f9fa;
    transition: all 0.3s ease;
}

section.what-make-us .overlap-icon:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section.what-make-us .overlap-icon i {
    font-size: 20px;
    color: var(--white-color);
}

section.what-make-us .white-content-box {
    background:var(--white-color);
    padding: 7px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

section.what-make-us .content-title {
    margin: 15px 0 0;
    color: #333;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    section.what-make-us .content {
        margin-bottom: 20px;
    }
    section.what-make-us .overlap-icon {
        width: 40px;
        height: 40px;
        bottom: -15px;
    }

    section.what-make-us .overlap-icon i {
        font-size: 16px;
    }

    section.what-make-us .white-content-box {
        padding: 10px;
    }
    section.what-make-us .featured-image {
        max-height: 200px;
    }
}


/* Product craousal section */
.product-showcase-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.product-showcase-section .section-header {
    padding-right: 30px;
}

.product-showcase-section .top-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-showcase-section .product-icons span {
    font-size: 20px;
    border: 2px solid var(--dark-bg-color);
    color: var(--dark-bg-color);
    border-radius: 50%;
    padding: 5px;
}

.product-showcase-section .description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-showcase-section .spacer {
    height: 15px;
    width: 100%;
    display: block;
}

.product-showcase-section .button-spacer {
    height: 25px;
    width: 100%;
    display: block;
}

.product-showcase-section .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-showcase-section .cta-button:hover {
    background-color: var(--dark-bg-color);
    transform: translateY(-2px);
}

.product-showcase-section .product-carousel {
    position: relative;
}

.product-showcase-section .product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.product-showcase-section .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-showcase-section .product-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 47px;
    height: 35px;
    z-index: 10;
}

.product-showcase-section .product-badge img {
    width: 100%;
    height: auto;
}

.product-showcase-section .product-image {
    text-align: center;
}

.product-showcase-section .product-image img {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
}

.product-showcase-section .product-details {
    padding: 20px;
    background: #fff;
}

.product-showcase-section .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-showcase-section .product-code {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product-showcase-section .product-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.product-showcase-section .product-icons li {
    margin-right: 10px;
}

.product-showcase-section .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.product-showcase-section .owl-nav button {
    width: 40px;
    height: 40px;
    background: #000 !important;
    border-radius: 50% !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.product-showcase-section .owl-nav button:hover {
    background: #e0e0e0 !important;
}

.product-showcase-section .owl-nav button i {
    font-size: 18px;
    color: #333;
}

.product-showcase-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.product-showcase-section .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
}

.product-showcase-section .owl-dots button.owl-dot.active {
    background: var(--dark-bg-color) !important;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .product-showcase-section .section-header {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

    .product-showcase-section .owl-nav {
        position: relative;
        top: 0;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .product-showcase-section .product-showcase-section {
        padding: 50px 0;
    }

    .product-showcase-section .main-heading {
        font-size: 26px;
    }
}

/* why us section */
section.why-choose-us {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.why-choose-us::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(15 16 17 / 80%);
}
section.why-choose-us .why-choose-inner {
    padding: 20px 20px 40px 10px;
    background-color: #447B38;
    color: var(--white-color);
}
section.why-choose-us .main-heading {
    padding: 20px 0;
}

section.why-choose-us i {
    font-size: 32px;
    margin-top: 7px;
}
section.why-choose-us .why-us-heading {
    font-size: 22px;
}


/* section testimonials */

section.testimonials {
    position: relative;
    padding: 60px 0;
}

section.testimonials .top-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #02A202;
}

section.testimonials .testimonial-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

section.testimonials .testimonial-marquee::before,
section.testimonials .testimonial-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px; /* Adjust width as needed */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

section.testimonials .testimonial-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

section.testimonials .testimonial-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

section.testimonials .marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

section.testimonials .testimonial-marquee:hover .marquee-content {
    animation-play-state: paused;
}

section.testimonials .deensimc-tes-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    max-height: 100%;
    padding: 0 15px;
}

section.testimonials .deensimc-tes-main {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 370px;
    width: 100%;
    text-align: left;
    box-shadow: none !important;
}

section.testimonials .deensimc-tes-main blockquote {
    margin: 0;
    display: block;
    border-radius: 8px;
    position: relative;
    background-color: #e7e7e7;
    padding: 30px 50px 65px 50px;
    font-size: 0.8em;
    font-weight: 500;
    margin: 0 0 -50px;
    line-height: 1.6em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: none;
}

section.testimonials .contents-wrapper {
    position: relative;
}

section.testimonials .quote-left {
    position: absolute;
    transform: translate(-110%, -50%);
    z-index: 1;
    font-size: 40px;
    color: #BBBBBB;
    opacity: 1;
}

section.testimonials .quote-right {
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    position: absolute;
    z-index: 1;
    font-size: 40px;
    color: #BBBBBB;
    opacity: 1;
}

section.testimonials .deensimc-contents {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1F1C46;
    display: block;
}

section.testimonials .deensimc-toggle {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1F1C46;
    display: inline-block;
    margin-top: 10px;
}

section.testimonials .deensimc-tes-author {
    padding: 0 15px;
    margin-top: -20px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

section.testimonials .deensimc-tes-author img {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    margin-top: 10px;
    display: inline-block;
    z-index: 1;
    position: relative;
    border-style: none;
}

section.testimonials .deensimc-tes-heading {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
    color: #000000;
}

section.testimonials .deensimc-tes-name {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #000000;
    margin-bottom: 5px;
    display: block;
}

section.testimonials .deensimc-tes-title {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    display: block;
}

section.testimonials .deensimc-tes-ratings {
    padding: 10px 0;
}

section.testimonials .deensimc-tes-icons {
    color: #FFD700;
    margin-right: 6px;
}

section.testimonials .deensimc-tes-review-text {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    section.testimonials .deensimc-tes-main blockquote {
        padding: 30px 30px 65px 30px;
    }

    section.testimonials .quote-left {
        font-size: 32px;
        transform: translate(-120%, -50%);
    }

    section.testimonials .quote-right {
        font-size: 32px;
    }
}

/* section mission */

section.mission-vision{
	background: linear-gradient(to bottom, var(--light-bg-color-l) 50%, var(--secondary-dark-bg-color) 50%);
	position: relative;
	padding: 60px 0;
}

section.mission-vision .content-main {
    background: var(--white-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}
section.mission-vision .content-main img{
	border-radius: 15px;
}
section.mission-vision .main-head {
    font-size: 30px;
}

section.mission-vision .desc {
    font-size: 16px;
    margin-bottom: 20px;
}
@media(max-width:767px){
    section.mission-vision .content-main {
        margin-bottom: 20px;
    }
}

/* section blog */
section.latest-news {
	position: relative;
	padding: 60px 0;
}
section.latest-news .blog-card {
	transition: var(--transition-all);
	overflow: visible;
}

section.latest-news .blog-card:hover {
	transform: translateY(-5px);
}
section.latest-news .blog-card i{
	color: var(--ancient-icon-color);
}

section.latest-news .card-content-overlay {
	width: 80%;
	bottom: -50px;
	background: var(--white-color);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

section.latest-news .card-title {
	position: relative;
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
}

section.latest-news .card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 20%;
    height: 3px;
    background: var(--ancient-color);
}

section.latest-news .card-content-overlay .card-body {
	padding: 1.25rem;
}

section.latest-news .read-more {
    display: block;
    border-top: 1px solid var(--light-bg-color-l);
    padding: 10px 0 0;
}
section.latest-news .know-more {
    color: var(--heading-text-color);
    font-weight: 600;
	transition: var(--transition-all);
}
section.latest-news .know-more:hover i{
	margin-left: 5px;
}
section.latest-news .col-margin {
    margin-bottom: 1.5rem!important;
}

@media(max-width:767px){
    section.latest-news .col-margin {
        margin-bottom: 4.5rem!important;
    }
}

/* sequence */

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

#sequence a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 5px 0;
	font-size: 15px;
	color: var(--white-color) !important;
	font-weight: 600;
	text-decoration: none !important;
	border-right: 1px solid;
}

/* contact modal form */
div#contactModal input.wpcf7-form-control.wpcf7-text {
	border: 0;
	border-bottom: 1px solid var(--description-color);
	padding: 10px 20px;
	border-radius: 10px;
	width: 100%;
}
div#contactModal textarea.wpcf7-form-control.wpcf7-textarea {
	border: 0;
	border-bottom: 1px solid var(--description-color);
	padding: 10px 20px;
	border-radius: 10px;
	width: 100%;
	height: 100px;
}

div#contactModal input.wpcf7-form-control.wpcf7-submit {
	padding: 10px 30px;
	border-radius: 10px;
	border: 1px solid var(--ancient-bg-color);
	background-color: var(--ancient-bg-color);
	color: var(--white-color);
	transition: all 0.3s ease;
}

div#contactModal input.wpcf7-form-control.wpcf7-submit:hover {
	border: 1px solid var(--ancient-bg-color);
	background-color: var(--white-color);
	color: var(--ancient-bg-color);
}

/* Inner page css */
/* Breadcrumb Section */
section.breadcrumb-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #1a237e, #283593);
  overflow: hidden;
  z-index: 1;
}

section.breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(78 169 82 / 48%);
    z-index: -1;
}

/* Particles Background */
section.breadcrumb-section #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

section.breadcrumb-section .heading-text {
  position: relative;
  display: inline-block;
  animation: textReveal 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

section.breadcrumb-section .heading-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffa502);
  animation: underlineGrow 1.2s 0.5s ease-out forwards;
}

section.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 1.1rem;
}

section.breadcrumb-section .breadcrumb-item {
  position: relative;
  margin: 0 10px;
}

section.breadcrumb-section .breadcrumb-item:not(:last-child):after {
  content: ">";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

section.breadcrumb-section .breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

section.breadcrumb-section .breadcrumb-link:hover {
  color: #fff;
  transform: translateX(5px);
}

section.breadcrumb-section .breadcrumb-link i {
  transition: all 0.3s ease;
}

section.breadcrumb-section .breadcrumb-link:hover i {
  transform: scale(1.2);
}

section.breadcrumb-section .breadcrumb-current {
  color: #fff;
  font-weight: 500;
  position: relative;
}

section.breadcrumb-section .breadcrumb-current:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ffa502);
  animation: currentUnderline 0.8s ease-out forwards;
}
section.breadcrumb-section .main-heading{
    text-align: center;
}

/* Animations */
@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes currentUnderline {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}

@media (max-width: 768px) {
  section.breadcrumb-section .breadcrumb-section {
    padding: 40px 0;
  }
  section.breadcrumb-section .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  section.breadcrumb-section .breadcrumb-item {
    white-space: nowrap;
  }
}

/* Footer csss */
footer.main-footer {
		color: #333;
		position: relative;
	}

	footer.main-footer .newsletter-background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		opacity: 100;
		z-index: 0;
		border-radius: 70px;
	}

	footer.main-footer .newsletter-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 1;
	}

	footer.main-footer .newsletter-image {
		flex: 0 0 40%;
		padding-right: 30px;
	}

	footer.main-footer .newsletter-image img {
		max-width: 100%;
		height: auto;
	}

	footer.main-footer .newsletter-form {
		flex: 0 0 55%;
	}

	footer.main-footer .newsletter-form h3 {
		font-size: 28px;
		color: #2e7d32;
		margin-bottom: 15px;
	}

	footer.main-footer .newsletter-form p {
		font-size: 16px;
		color: #666;
		margin-bottom: 25px;
	}

	footer.main-footer .subscribe-form {
		display: flex;
		max-width: 500px;
	}

	footer.main-footer .subscribe-form input {
		flex: 1;
		padding: 12px 15px;
		border: 1px solid #ddd;
		border-radius: 4px 0 0 4px;
		font-size: 16px;
		outline: none;
	}

	footer.main-footer .subscribe-form button {
		padding: 12px 25px;
		background-color: #2e7d32;
		color: white;
		border: none;
		border-radius: 0 4px 4px 0;
		cursor: pointer;
		font-weight: 600;
		transition: background-color 0.3s;
	}

	footer.main-footer .subscribe-form button:hover {
		background-color: #1b5e20;
	}

	/* Footer Content */
	footer.main-footer .footer-content {
		position: relative;
		padding: 60px 0 30px;
		background-color: #2a2a2a;
		color: #fff;
	}

	footer.main-footer .footer-background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		z-index: 0;
	}

	footer.main-footer .row {
		position: relative;
		z-index: 1;
	}

	footer.main-footer .footer-col {
		/* flex: 0 0 25%; */
		flex: 0 0 33%;
		padding: 0 15px;
		margin-bottom: 30px;
	}

	footer.main-footer .footer-col h4 {
		font-size: 22px;
		color: #fff;
		margin-bottom: 25px;
		position: relative;
		padding-bottom: 10px;
	}

	footer.main-footer .footer-col h4::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 50px;
		height: 2px;
		background: #2e7d32;
	}

	footer.main-footer .footer-col p {
		font-size: 16px;
		color: #fff;
		line-height: 1.6;
		margin-bottom: 20px;
	}

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

	footer.main-footer .footer-col ul li {
		margin-bottom: 12px;
	}

	footer.main-footer .footer-col ul li a::before {
		content: "\f105";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		margin-right: 5px;
	}

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

	footer.main-footer .footer-col ul li a:hover {
		color: #2e7d32;
		padding-left: 5px;
	}

	footer.main-footer .contact-info li {
		display: flex;
		align-items: flex-start;
		margin-bottom: 15px;
		color: #fff;
		font-size: 16px;
		line-height: 1.5;
	}

	footer.main-footer .contact-info i {
		margin-right: 10px;
		color: #2e7d32;
	}

	footer.main-footer .social-icons {
		display: flex;
		margin-top: 20px;
	}

	footer.main-footer .social-icons a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 35px;
		height: 35px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		margin-right: 10px;
		color: #fff;
		text-decoration: none;
		transition: all 0.3s;
	}

	footer.main-footer .social-icons a:hover {
		background: #2e7d32;
		transform: translateY(-3px);
	}

	footer.main-footer .copyright {
		text-align: center;
		position: relative;
		background-repeat: no-repeat;
		background-size: cover;
		padding: 80px 0;
	}

	footer.main-footer .copyright .privacy a {
		font-size: 16px;
		color: #fff;
	}

	footer.main-footer .copyright .copyright-p {
		font-size: 16px;
		color: #fff;
	}


	@media (max-width: 991px) {
		footer.main-footer .footer-col {
			flex: 0 0 50%;
		}

		footer.main-footer .newsletter-content {
			flex-direction: column;
		}

		footer.main-footer .newsletter-image {
			margin-bottom: 0px;
			padding-right: 0;
			text-align: center;
		}

		footer.main-footer .newsletter-form {
			text-align: center;
		}

		footer.main-footer .subscribe-form {
			margin: 0 auto;
		}
	}

	@media (max-width: 767px) {
		footer.main-footer .subscribe-form button {
			padding: 0;
		}

		footer.main-footer .footer-col {
			flex: 0 0 100%;
		}

		footer.main-footer .newsletter-form h3 {
			font-size: 24px;
		}
	}

/* ================ Brand Colors ================ */
:root {
  --brand-primary: #256453;
  --brand-secondary: #8BC24A;
  --brand-light: #f8f9fa;
  --brand-dark: #1a2e35;
  --brand-white: #ffffff;
}

/* ================ Typography ================ */
.brand-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.brand-page-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-secondary);
  border-radius: 2px;
}

.brand-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  position: relative;
  padding-bottom: 15px;
}

.brand-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--brand-secondary);
}

.brand-section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.brand-section-subtitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-secondary);
}

/* ================ Buttons ================ */
.brand-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--brand-secondary);
  color: var(--brand-white);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--brand-secondary);
}

.brand-btn:hover {
  background: transparent;
  color: var(--brand-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 194, 74, 0.3);
}

/* ================ Cards ================ */
.brand-achievement-card,
.brand-mission-card,
.brand-vision-card,
.brand-value-card {
  background: var(--brand-white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--brand-secondary);
}

.brand-mission-card {
  border-top-color: var(--brand-primary);
}

.brand-vision-card {
  border-top-color: var(--brand-secondary);
}

.brand-achievement-card:hover,
.brand-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ================ Icons ================ */
.achievement-icon,
.mv-icon,
.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 194, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-secondary);
  font-size: 1.5rem;
}

.mv-icon {
  background: rgba(37, 100, 83, 0.1);
  color: var(--brand-primary);
}

/* ================ Lists ================ */
.brand-mv-list {
  list-style: none;
  padding-left: 0;
}

.brand-mv-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.brand-mv-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
}

/* ================ Quote ================ */
.brand-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brand-primary);
  padding: 20px;
  background: rgba(139, 194, 74, 0.1);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 0 8px 8px 0;
}

/* ================ Director's Card ================ */
.director-message-card {
  background: var(--brand-white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.director-image-wrapper img {
  border: 5px solid var(--brand-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 200px;
}

.director-name {
  font-weight: 700;
  color: var(--brand-primary);
  margin-top: 15px !important;
}

.director-designation {
  color: var(--brand-secondary);
  font-weight: 500;
}

/* ================ Responsive Adjustments ================ */
@media (max-width: 768px) {
  .brand-page-title {
    font-size: 2rem;
  }
  
  .brand-section-title {
    font-size: 1.5rem;
  }
  
  .brand-section-subtitle {
    font-size: 1.3rem;
  }
}

/* ================ PCD Franchise Page Styles ================ */
.brand-highlight-box {
  background-color: rgba(139, 194, 74, 0.1);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 0 8px 8px 0;
}

.brand-check-list {
  list-style: none;
  padding-left: 0;
}

.brand-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.brand-check-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
}

.brand-feature-card {
  background: var(--brand-white);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--brand-secondary);
  transition: all 0.3s ease;
}

.brand-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 194, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--brand-secondary);
  font-size: 1.2rem;
}

.brand-form-card {
  background: var(--brand-white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--brand-primary);
}
.brand-form-card input{
    padding: 10px 15px;
    width: 100%;
}
.brand-form-card textarea{
    padding: 10px 15px;
    width: 100%;
    height: 100px;
}
.brand-form-card input.wpcf7-form-control.wpcf7-submit {
display: inline-block;
    padding: 10px 25px;
    background: var(--brand-secondary);
    color: var(--brand-white);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-secondary);
}

/* ================ R&D Page Styles ================ */
.brand-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-item {
  background: rgba(37, 100, 83, 0.05);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--brand-primary);
  opacity: 0.8;
}

.brand-process-card {
  background: var(--brand-white);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(37, 100, 83, 0.05);
  position: absolute;
  top: 10px;
  right: 15px;
  line-height: 1;
}

.brand-lab-card {
  background: var(--brand-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.lab-image {
  height: 200px;
  overflow: hidden;
}

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

.brand-lab-card:hover .lab-image img {
  transform: scale(1.05);
}

.lab-content {
  padding: 20px;
}

.brand-lab-features {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.brand-lab-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.brand-lab-features li:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
  font-size: 0.8rem;
}

.brand-collab-logo {
  background: var(--brand-white);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.brand-collab-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Accordion Styles */
.accordion-button {
  font-weight: 600;
  color: var(--brand-primary);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(139, 194, 74, 0.1);
  color: var(--brand-primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(139, 194, 74, 0.25);
}

@media (max-width: 768px) {
  .brand-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item {
    padding: 10px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* Third Party Manufacturing Specific Styles */
.brand-highlight-box {
  background-color: rgba(139, 194, 74, 0.1);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 0 8px 8px 0;
}

.brand-check-list {
  list-style: none;
  padding-left: 0;
}

.brand-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.brand-check-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
}

.brand-feature-card {
  background: var(--brand-white);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--brand-secondary);
  transition: all 0.3s ease;
}

.brand-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 194, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--brand-secondary);
  font-size: 1.2rem;
}

.brand-process-card {
  background: var(--brand-white);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(37, 100, 83, 0.05);
  position: absolute;
  top: 10px;
  right: 15px;
  line-height: 1;
}

/* Accordion Styles */
.accordion-button {
  font-weight: 600;
  color: var(--brand-primary);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(139, 194, 74, 0.1);
  color: var(--brand-primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(139, 194, 74, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .brand-process-card {
    padding: 20px 15px;
  }
  
  .process-number {
    font-size: 2.5rem;
  }
}

/* ================ Contact Page Styles ================ */
.brand-contact-card {
  background: var(--brand-white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--brand-primary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(139, 194, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: var(--brand-primary);
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--brand-dark);
}

.social-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(139, 194, 74, 0.1);
  border-radius: 50%;
  color: var(--brand-secondary);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--brand-secondary);
  color: var(--brand-white);
  transform: translateY(-3px);
}

.brand-map-section {
  background: var(--brand-white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.brand-form-card.contact-page input {
    margin-bottom: 15px;
}
.brand-form-card.contact-page textarea {
    height: 150px;
}
.social-links-inn {
    display: flex;
}

@media (max-width: 992px) {
  .brand-contact-card, .brand-form-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-icon {
    margin-bottom: 10px;
  }
}

/* ================ Product Archive Styles ================ */
section.ancient-products {
  background-color: #f9f9f9;
}

section.ancient-products .ancient-page-header {
  margin-bottom: 40px;
}

section.ancient-products .ancient-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

section.ancient-products .ancient-page-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--brand-secondary);
}

section.ancient-products .ancient-page-subtitle {
  font-size: 1.2rem;
  color: #666;
}

section.ancient-products .ancient-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

section.ancient-products .ancient-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

section.ancient-products .product-badge .badge {
  background: var(--brand-secondary);
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

section.ancient-products .product-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

section.ancient-products .product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

section.ancient-products .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 100, 83, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

section.ancient-products .ancient-product-card:hover .product-overlay {
  opacity: 1;
}

section.ancient-products .quick-view-btn {
  color: #fff;
  background: var(--brand-secondary);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

section.ancient-products .ancient-product-card:hover .quick-view-btn {
  transform: translateY(0);
}

section.ancient-products .product-content {
  padding: 20px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

section.ancient-products .product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

section.ancient-products .product-title a:hover {
  color: var(--brand-secondary);
}

section.ancient-products .product-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

section.ancient-products .meta-item {
   margin-bottom: 8px;
        align-items: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
}

section.ancient-products .meta-item i {
  color: var(--brand-secondary);
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

section.ancient-products .product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

section.ancient-products .price {
  font-weight: 700;
  color: var(--brand-primary);
}

section.ancient-products .price .amount {
  font-size: 1.2rem;
}

section.ancient-products .add-to-cart a {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

section.ancient-products .add-to-cart a:before {
  content: '\f217';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
}

section.ancient-products .add-to-cart a:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 194, 74, 0.3);
}

/* ================ Single Product Styles ================ */
section.ancient-single-product {
    background-color: #f9f9f9;
    padding: 50px 0;
}

section.ancient-single-product .ancient-product-detail {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

section.ancient-single-product .ancient-product-gallery {
    position: relative;
}

section.ancient-single-product .main-image {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

section.ancient-single-product .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

section.ancient-single-product .thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

section.ancient-single-product .thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

section.ancient-single-product .thumbnail-img:hover {
    border-color: var(--brand-secondary);
}

section.ancient-single-product .ancient-product-info {
    padding-left: 30px;
}

section.ancient-single-product .product-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--brand-primary);
}

section.ancient-single-product .product-rating {
    margin-bottom: 15px;
}

section.ancient-single-product .star-rating {
    color: #ffb300;
    font-size: 1.2rem;
}

section.ancient-single-product .product-price {
    font-size: 1.8rem;
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

section.ancient-single-product .meta-box {
    background: rgba(139, 194, 74, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

section.ancient-single-product .meta-title {
    font-size: 1.1rem;
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

section.ancient-single-product .meta-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

section.ancient-single-product .meta-list li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

section.ancient-single-product .meta-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

section.ancient-single-product .description-title {
    font-size: 1.3rem;
    color: var(--brand-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

section.ancient-single-product .product-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

section.ancient-single-product .share-label {
    font-weight: 600;
    margin-right: 15px;
    color: var(--brand-primary);
}

section.ancient-single-product .share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

section.ancient-single-product .share-icon.facebook {
    background: #3b5998;
}

section.ancient-single-product .share-icon.twitter {
    background: #1da1f2;
}

section.ancient-single-product .share-icon.linkedin {
    background: #0077b5;
}

section.ancient-single-product .share-icon.whatsapp {
    background: #25d366;
}

section.ancient-single-product .share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    section.ancient-single-product .ancient-product-info {
        padding-left: 0;
        padding-top: 30px;
    }
    
    section.ancient-single-product .product-title {
        font-size: 1.6rem;
    }
    
    section.ancient-single-product .product-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    section.ancient-single-product .ancient-product-detail {
        padding: 20px;
    }
    
    section.ancient-single-product .thumbnail-slider {
        flex-wrap: wrap;
    }
}
.ancient-related-products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ancient-related-products .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-primary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.ancient-related-products .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--brand-secondary);
}

.ancient-related-products .ancient-product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ancient-related-products .ancient-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ancient-related-products .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.ancient-related-products .product-badge .badge {
    background: var(--brand-secondary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ancient-related-products .product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.ancient-related-products .product-image-wrapper img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.ancient-related-products .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.ancient-related-products .ancient-product-card:hover .product-overlay {
    opacity: 1;
}

.ancient-related-products .quick-view-btn {
    color: #fff;
    background: var(--brand-primary);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.ancient-related-products .product-content {
    padding: 15px;
}

.ancient-related-products .product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ancient-related-products .product-title a {
    color: var(--brand-primary);
    text-decoration: none;
}

.ancient-related-products .product-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.ancient-related-products .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ancient-related-products .price {
    font-weight: 700;
    color: var(--brand-primary);
}

@media (max-width: 768px) {
    .ancient-related-products .section-title {
        font-size: 1.5rem;
    }
}

/* Table and grid toggle css */

/* View Toggle Styles */
    .view-toggle {
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .view-toggle .btn {
        border: none;
        padding: 8px 20px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .view-toggle .btn.active {
        background: var(--brand-secondary);
        color: #fff;
    }

    .view-toggle .btn:not(.active):hover {
        background: rgba(139, 194, 74, 0.1);
        color: var(--brand-primary);
    }

    /* Table View Styles */
    .products-table-view .table {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .products-table-view .table th {
        background: var(--brand-primary);
        color: #fff;
        font-weight: 600;
        border: none;
        padding: 15px;
    }

    .products-table-view .table td {
        vertical-align: middle;
        padding: 15px;
        border-color: rgba(0, 0, 0, 0.05);
    }

    .products-table-view .table tr:hover td {
        background: rgba(139, 194, 74, 0.05);
    }

    .products-table-view .badge {
        background: var(--brand-secondary);
        color: #fff;
        padding: 4px 10px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 5px;
    }
@media (min-width: 992px) and (max-width: 1400px) {
    .mega-menu-link {
        font-size: 14px !important;
    }

    .global-btn {
        font-size: 12px !important;
    }

    section.facts-main .facts-main-heading {
        font-size: 26px !important;
    }
    section.facts-main .facts-main-description {
        font-size: 14px !important;
    }

    .main-heading {
        font-size: 32px !important;
        line-height: 42px;
    }

    .ancient-desc {
        font-size: 14px !important;
    }

    .feature-head {
        font-size: 18px !important;
    }

    footer.main-footer .footer-col p,
    footer.main-footer .footer-col ul li a,
    footer.main-footer .footer-col ul li,
    footer.main-footer .copyright .privacy a,
    footer.main-footer .copyright .copyright-p {
        font-size: 14px !important;
    }
}
