/*
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.9
Tested up to: 6.7
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;
}

header#masthead {
    margin: 10px 0px 10px 0px;
}
/* Body */
body {
    font-family: "Merriweather", serif;
    font-style: normal;
    font-size: 14px;
    color: #626262;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: #222;
    line-height: 1.2;
}

h1 {
    font-size: 2.5em;
}
h2 {
    font-size: 2em;
}
h3 {
    font-size: 1.75em;
}
h4 {
    font-size: 1.5em;
}
h5 {
    font-size: 1.25em;
}
h6 {
    font-size: 1em;
}

p {
    margin-bottom: 1em;
    line-height: 22px;
}

a {
    text-decoration: none !important;
    color: #007BFF;
    transition: all 0.3s ease;
}

a:hover, a:focus {
    color: #0056b3;
    text-decoration: underline;
}

ul {
    list-style-type: none;
    margin: 1em 0;
    padding-left: 1.5em;
}

ul li {
    margin-bottom: 0.5em;
}

ol {
    list-style-type: decimal;
    margin: 1em 0;
    padding-left: 1.5em;
}

ol li {
    margin-bottom: 0.5em;
}

/* span {
    color: inherit;
    font-size: inherit;
} */

/* Global Css End */


/* Header Top section */
.header-top {
    background: #154633;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
}

.header-top ul.list-inline {
    display: inline-block;
    margin: 0;
    margin-right: 10px;
}

.header-top .list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    margin: 0;
}
.header-top ul.list-inline li i {
    margin-right: 10px;
    color: #cf7949;
    transition: all 0.4s ease;
}
.header-top ul li a {
    color: #fff;
    transition: all 0.4s ease;
}

.header-top ul.social-links {
    display: inline-block;
    margin: 0;
}

.header-top ul.social-links li.fologap {
    margin: 0 20px;
    color: #cf7949;
}

.header-top ul.social-links li {
    display: inline-block;
    margin: 0;
}

.header-top ul li a {
    color: #fff;
    transition: all 0.4s ease;
}

.header-top ul.social-links li i {
    margin-right: 5px;
    transition: all 0.4s ease;
}

.header-top .contact-us {
    text-align: right;
}

.header-top a.topbarbtn {
    background: #dd743c;
    color: #fff;
    padding: 5px 30px;
    border: 1px solid #dc7036;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.header-top a.topbarbtn:hover {
    background: #fff;
    color: #a6ce39;
    border: 1px solid #a6ce39;
}

@media screen and (max-width: 767px) {
    .header-top .contact-info {
        text-align: center;
    }
    .header-top .contact-us {
        text-align: center !important;
        margin-top: 5px;
    }
    .header-top a.topbarbtn {
        padding: 5px 15px;
    }
}

@media (max-width:425px){
    .header-top .contact-us {
        display: none;
    }
    .header-top ul.social-links {
        margin-top: 10px;
    }
    .header-top ul.list-inline {
    display: flex;
    margin: 0;
    justify-content: space-between;
    font-size: 12px;
}
}


/* Header section */
header#masthead img.logoimg.img-fluid {
    width: 70%;
}

.blackblock {
    background: linear-gradient(rgb(35 69 52), rgb(240 144 90));
    color: #fff;
    padding: 22px 0;
}

.blackblock p {
    margin: 0;
}

/* About us section */
section.about-us {
	padding: 60px 0;
    position: relative;
}

/* Feature section */
.feature-secction {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 100px 0px 85px 0px;
}

.feature-secction .feature-title h1 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 50px;
}
section#feature h1 {
    color: #fff !important;
}
.feature-secction span.highlight {
    color: #c37d52;
}

.feature-secction .single-feature {
    background: #fff;
    text-align: center;
    padding: 20px 20px 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0px 5px 60px 0px rgb(0 44 93 / 7%);
}

.feature-secction .single-feature .feature-content p {
    margin-bottom: 15px;
}

.feature-secction .single-feature .feature-content h2 {
    font-size: 22px;
    font-weight: 600;
}

.feature-button a {
    padding: 16px 20px;
    background: #c37d52;
    border-radius: 50px;
    color: #fff;
    transition: .5s;
}

.feature-button a span {
    display: none;
    transition: .5s;
}

.feature-button a i {
    transition: .5s;
}

.feature-button a:hover {
    padding: 16px 30px;
    border-radius: 30px;
}

.feature-button a:hover span {
    display: inherit;
    color: #fff;
}

.feature-button a:hover i {
    margin-left: 10px;
}

.feature-secction .single-feature.item-4 {
    background-color: #b98059;
    text-align: left;
}

.feature-secction .single-feature.item-4 h4 {
    color: #fff;
}

.feature-secction .single-feature.item-4 h3 {
    color: #fff;
    font-size: 24px;
    margin: 25px 0px 25px 0px;
}

.feature-secction .single-feature.item-4 p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 3px;
}

.feature-secction .single-feature.item-4 .bar {
    height: 1px;
    width: 100%;
    background-color: #fff;
    margin: 20px 0px;
}

.feature-secction .single-feature.item-4 h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
}

/* Call do section */

.call-do-section {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.call-do-section .call-do-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 90px 0px;
}

.call-do-section .call-do-content .left-content .image img {
    width: 100%;
}

.call-do-section .call-do-content .left-content .title {
    padding-left: 25px;
}

.call-do-section .call-do-content .left-content .title p {
    font-size: 34px;
    color: #fff;
    /* margin-bottom: 0; */
    margin-top: 0;
}

.call-do-section .call-do-content .left-content .title h1 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 5px;
}

/* Product Category Section */
section.product-category {
	padding: 60px 0;
}

.product-category .product-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

@media (max-width: 1199px) {
	.product-category .product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.product-category .product-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 576px) {
	.product-grid {
		grid-template-columns: 1fr;
	}
}
/* @media (max-width: 360px) {
	.product-grid {
		grid-template-columns: 1fr;
	}
} */

.product-category-item {
	position: relative;
	text-align: center;
	height: 100%;
}

.product-category-item .product-category-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}

.product-category-item .product-category-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	object-fit: cover;
	transform: scale(1.2);
	transition: .3s;
	z-index: -1;
}

.product-category-item .product-category-text {
	background: #FFFFFF;
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transition: .3s;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.product-category-item:hover .product-category-img img {
	transform: scale(1);
}

.product-category-item:hover .product-category-text {
	background: rgba(15, 66, 41, .6);
}

.product-category-item:hover .product-category-text .btn-square {
	background: #FFFFFF;
}

.product-category-item img.img-fluid.rounded-circle {
	width: 100px;
	height: 100px;
}

.product-category-item:hover .product-category-text h4,
.product-category-item:hover .product-category-text p {
	color: #FFFFFF;
}

.product-category-item:hover .product-category-text .btn {
	width: 112px;
}

.product-category-item .product-category-text .btn-square {
	width: 100px;
	height: 100px;
	background: transparent;
	transition: .5s;
}

section.product-category .btn-square,
section.product-category .btn-sm-square,
section.product-category .btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.product-category-item .product-category-text .btn {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	color: #111;
	background: #fff;
	white-space: nowrap;
	overflow: hidden;
	transition: .3s;
}


/* facts */
section.facts {
    position: relative;
    background-position: 100% !important;
    background-attachment: fixed !important;
    object-fit: contain;
}

section.facts .overlay {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 66, 41, .6);
}

section.facts .main{
	position: relative;
}
/* Product Section End */

/* our pproduct section */
section.our-product {
 padding: 60px 0;
 background-color: #D4E4BD;
}

section.our-product .simplefilter li.active {
    background-color: #348E38 !important;
    color: #FFFFFF;
}

section.our-product .simplefilter_49 li {
    background-color: #FFFFFF;
    color: #348e38;
    transform: all 0.3s ease;
}
section.our-product .simplefilter li:hover {
    background-color: #348e38 !important;
    color: #FFFFFF;
}
section.our-product .filtr-search {
    border: 5px solid #348e38 !important;
}

/* Services section */
/* section.services{
    padding: 60px 0;
}

section.services .service-outer {
    border: 1px solid #348e38;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-outer:hover {
    border: 1px solid #348e38;
    background-color: #348e38;
}
.service-outer:hover svg {
    color: #fff;
}
.service-outer:hover h2,.service-outer:hover p {
    color: #fff !important;
} */


/* services */
section.services{
    padding: 60px 0;
    position: relative;
}
section.services .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: #fff;
    transition: 0.5s;
    color: #111;
}

section.services .nav-main {
    background-color: #f9cbaf;
}

section.services .nav a.accordion-link.active {
    background: #348E38;
}
section.services .nav a.accordion-link.active h5{
    color: #ffffff;
}

/* why us */
section.why-us .btn-square, section.why-us .btn-sm-square, section.why-us .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Blogs Section */
section.latest-blog {
    position: relative;
    padding: 60px 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

section.latest-blog .overlay {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

section.latest-blog .btn-solid-border {
    border: 2px solid #348E38;
    background: transparent;
    color: #242424;
    transition: all 0.3s ease;
}

section.latest-blog .btn-solid-border:hover {
    border: 2px solid #348E38;
    background: #348E38;
}

section.latest-blog .main-hrading {
    color: #ffffff;
}

section.latest-blog .main-heading span {
    color: #ffffff;
}

/* contact section */

section.contact {
    color: #111;
    background-color: #fff;
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, #444444, transparent 50%);
    position: relative;
}

.section-title p {
    color: #1111;
    margin: 0;
    font-size: 36px;
    font-weight: 800;
}

section.contact .info-item {
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

section.contact .info-item i {
    font-size: 20px;
    color: #348e38;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, #348e38, transparent 40%);
}

section.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, #111, transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

section.contact a.contact-item {
    color: #111111;
    transition: all 0.3s ease;
}

section.contact a.contact-item:hover {
    color: #348e38;
    letter-spacing: 1px;
}

section.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

section.contact .contact-form-outer {
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

section.contact input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    color: #444444;
    background-color: #ffffff;
    border-color: color-mix(in srgb, #444444, transparent 80%);
}

section.contact textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    height: 100px;
    color: #444444;
    background-color: #ffffff;
    border-color: color-mix(in srgb, #444444, transparent 80%);
}

section.contact input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background-color: #348e38;
    border: 1px solid #348e38;
    color: #ffffff;
    transition: all 0.3s ease;
}

section.contact input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #ffffff;
    border: 1px solid #348e38;
    color: #348e38;
}


/* Footer */

footer.footer {
    background-color: #000000;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 40px 20px;
}
  
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 20%;
}

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


footer.footer img.footer-logo {
    width: 60%;
}

footer.footer .btn-square, footer.footer .btn-sm-square,footer.footer .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
footer.footer .btn-square {
    width: 38px;
    height: 38px;
}

footer.footer .btn-outline-light:hover {
    color: #000;
    background-color: #E8F5E9;
    border-color: #E8F5E9;
}

footer.footer .btn.btn-link {
    display: flex;
    margin-bottom: 5px;
    padding: 0;
    align-items: center;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

footer.footer .btn.btn-link:hover {
    color: #348E38;
    letter-spacing: 1px;
    box-shadow: none;
}

footer.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}


footer.footer a.contact-link {
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

footer.footer a.contact-link:hover {
    color: #348E38;
    letter-spacing: 1px;
}

/* copyright text */
.copyright {
    background: #ae561f;
    color: #fff;
}
.copyright a {
    color: #FFFFFF;
}
.copyright a:hover {
    color: #348E38;
}

/* Modal Css */
div#contactModal .modal-header {
    background-color: #348E38;
    color: #fff;
}
div#contactModal .modal-title{
    color: #ffffff;
}
div#contactModal .modal-content {
    background: #fff;
}

div#contactModal input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    color: #444444;
    background-color: #ffffff;
    border-color: color-mix(in srgb, #444444, transparent 80%);
}

div#contactModal textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    height: 100px;
    color: #444444;
    background-color: #ffffff;
    border-color: color-mix(in srgb, #444444, transparent 80%);
}

div#contactModal input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background-color: #348e38;
    border: 1px solid #348e38;
    color: #ffffff;
    transition: all 0.3s ease;
}

div#contactModal input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #ffffff;
    border: 1px solid #348e38;
    color: #348e38;
}

/* sequence */
#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;
    border-right: 1px solid;
}

#sequence {
    width: 100%;
    float: left;
    background: #348e38;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #ffffff !important;
    margin: 0 !important;
}

@media (max-width:767px){
    header#masthead img.logoimg.img-fluid {
        width: 60% !important;
    }
    .copyright {
        margin-bottom: 20px;
    }

    footer.footer {
        padding: 40px 0;
    }

    .main-heading {
        font-size: 28px;
    }
    p {
/*         line-height: 10px; */
		line-height: 23px
    }
    .feature-secction {
        padding: 60px 0;
    }
    .feature-secction .feature-title h1 {
        font-size: 28px;
    }

    .call-do-section .call-do-content {
        display: flex;
        justify-content: center;
    }

    .call-do-section .call-do-content .left-content .title p {
        font-size: 22px;
    }
    .call-do-section .call-do-content .left-content .title h1 {
        font-size: 28px;
    }

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

    .latest-blog .card h3 {
        font-size: 18px !important;
    }
    section.contact .info-item p {
        padding: 0 10px;
    }
    footer.footer img.footer-logo {
        width: 50% !important;
        margin-bottom: 10px;
    }
}

/* Gsap animation */
.gsap-reveal-img {
    line-height: 0; }
    .gsap-reveal-img .reveal-wrap {
      position: relative;
      overflow: hidden; }
      .gsap-reveal-img .reveal-wrap .cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #D4E4BD;
        margin-left: -100%;
        z-index: 9; }
      .gsap-reveal-img .reveal-wrap .reveal-content {
        opacity: 0;
        visibility: hidden; }
        .gsap-reveal-img .reveal-wrap .reveal-content .portfolio-item-content h3 {
          margin-bottom: 10px;
          font-size: 16px;
          font-weight: bold; }
  
  .gsap-reveal {
    position: relative;
    display: inline-block;
    overflow: hidden; }
    @media (max-width: 991.98px) {
      .gsap-reveal.gsap-reveal-filter {
        overflow: visible !important; } }
    .gsap-reveal .cover {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: black; }
  
  .gsap-reveal-hero {
    line-height: 0; }
    .gsap-reveal-hero .reveal-wrap {
      position: relative;
      overflow: hidden;
      display: inline-block; }
      .gsap-reveal-hero .reveal-wrap .cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #D4E4BD;
        margin-left: -100%;
        z-index: 2; }
      .gsap-reveal-hero .reveal-wrap .reveal-content {
        line-height: 1.5;
        z-index: 1;
        display: inline-block;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%); }


 /*Global button animation */



.global_btn {
    font-size: 16px;
    font-weight: 600;
    background-color: #cf7949;
    padding: 15px 24px 15px 24px;
    display: inline-block;
    align-items: center;
    border-radius: 99px;
    position: relative;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}
    .text {
        color: #fff;
        line-height: 1;
        position: relative;
        z-index: 5;
        margin-right: 32px;
    }

    svg {
        display: inline-block;
        position: relative;
        z-index: 5;
        transform: rotate(0deg) translateX(0);
        transform-origin: left;
        transition: all .5s cubic-bezier(.77, 0, .175, 1);
    }

/*     &::before {
        content: '';
        background-color: #95C11F;
        width: 32px;
        height: 32px;
        display: block;
        position: absolute;
        z-index: 1;
        border-radius: 99px;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        transition: all .5s cubic-bezier(.77, 0, .175, 1);
    } */

    &.light {
/*         background-color: #95C11F; */

        &::before {
            background-color: #154633;
        }

    }
}

.global_btn:hover {

    svg {
        transform: rotate(45deg) translateX(-8px);
    }

    &::before {
        content: '';
        width: 100%;
        height: 100%;
        right: 0;
    }
}


/* Inner section */


section.breadcrumb .main-heading {
    font-size: 42px;
    font-weight: 600;
}

section.inner-content .contact-form input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    color: #444444;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

section.inner-content .contact-form textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    height: 110px;
    color: #444444;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

section.inner-content .contact-form input.wpcf7-form-control.wpcf7-submit {
    padding: 15px 40px;
    background-color: #348e38;
    border: 1px solid #348e38;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

section.inner-content .contact-form input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #ffffff;
    border: 1px solid #348e38;
    color: #348e38;
}

section.inner-content .main-heading-inner {
    font-size: 42px;
    color: #0F4229;
    font-weight: 600;
    margin-bottom: 15px;
}

section.breadcrumb {
    position: relative;
    padding: 50px 0;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

section.breadcrumb::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 66, 41, .6);
}

section.breadcrumb .content {
    position: relative;
    color: #ffffff;
    z-index: 1;
}

section.breadcrumb .breadcrumb-item.active {
    color: #ffffff;
}

section.breadcrumb .home-url {
    color: #ffffff;
    transition: all 0.3s ease;
}

section.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

section.breadcrumb .home-url:hover {
    color: #95C11F;
}


section.inner-content h1.year{
    font-size: 62px;
    font-weight: 600;
}
section.inner-content .about-heading{
    font-size: 42px;
    color: #0F4229;
    font-weight: 600;
    margin-bottom: 15px;
}
section.inner-content h4.sub-heading-about {
    font-weight: 600;
}

section.inner-content .flex-shrink-0 {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

section.inner-content .mission-heading{
    font-size: 32px;
    color: #0F4229;
    font-weight: 600;
    margin-bottom: 15px;
}

section.inner-content .img-container{
    overflow: hidden;
    width: 100%;
}

section.inner-content .inner-image-animate{
    border: 5px solid #0F4229;
    padding: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

section.inner-content .inner-image-animate:hover{
    transform: scale(1.05) translateY(-1px);

}

@media(max-width:767px){
    section.inner-content {
        padding:0;
    }
    section.breadcrumb {
        padding: 40px 0;
        background-position: right;
    }
    section.breadcrumb .main-heading {
        font-size: 32px;
    }

    section.inner-content .main-heading-inner {
        font-size: 32px;
    }

    section.inner-content  p.description {
        line-height: 20px;
    }

    section.inner-content .about-heading{
        font-size: 32px;
    }
}

/* temp css */
.text-primary {
    color: #cf7949 !important;
}

:root {
    --primary: #00453F;
    --secondary: #A6CE39;
    --vl-primary: #348e38;
    --vl-secondary: #cf7949;
    --vl-accent: #348e38;
    --vl-bg-light: #D4E4BD;
    --vl-section-bg: #D4E4BD;
    --vl-text-dark: #626262;
    --vl-text-muted: #555555;
    --vl-white: #ffffff;
    --vlc-bg-hero: #D4E4BD; 
    --vlc-bg-input: #f9fbf7;
	    --vp-primary-green: #2d6a4f;
    --vp-dark-green: #1b4332;
    --vp-accent-brown: #8b4513;
    --vp-bg-light: #f8f9fa;
    --vp-cta-bg: #f1f3f0;
    --vp-text-muted: #6c757d;
    --vp-border-color: #dee2e6;
}


/* ========== Global Styles ========== */

section.inner-content .section-heading {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

section.inner-content .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

/* ========== About Us Page ========== */
section.inner-content .about-intro {
    align-items: center;
}

section.inner-content .about-image-comparison {
    display: flex;
    gap: 20px;
    position: relative;
}

section.inner-content .about-image-comparison .image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

section.inner-content .about-image-comparison .image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

section.inner-content .achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

section.inner-content .achievement-item {
    background: rgba(0,0,0,0.03);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--primary);
}

section.inner-content .achievement-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

section.inner-content .achievement-text {
    font-size: 0.9rem;
    color: #555;
}

section.inner-content .values-row {
    background: #f9f9f9;
    border-radius: 15px;
    margin: 40px 0;
}

section.inner-content .value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 3px solid var(--primary);
}

section.inner-content .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

section.inner-content .value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

section.inner-content .value-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* ========== Director's Message Page ========== */
section.inner-content .director-row {
    align-items: center;
}

section.inner-content .director-profile {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

section.inner-content .director-profile img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

section.inner-content .director-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80%;
    text-align: center;
}

section.inner-content .director-details h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

section.inner-content .director-details p {
    color: #666;
    font-size: 0.9rem;
}

section.inner-content .social-links {
    margin-top: 15px;
}

section.inner-content .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    color: var(--primary);
    transition: all 0.3s ease;
}

section.inner-content .social-links a:hover {
    background: var(--primary);
    color: white;
}

section.inner-content .message-quote {
    background: rgba(0,0,0,0.03);
    padding: 30px;
    border-left: 4px solid var(--primary);
    margin: 30px 0;
    position: relative;
}

section.inner-content .message-quote::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
}

section.inner-content .message-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    position: relative;
    z-index: 1;
}

section.inner-content .signature {
    margin-top: 40px;
}

section.inner-content .signature img {
    max-width: 180px;
    display: block;
    margin-bottom: 10px;
}

section.inner-content .signature p {
    font-weight: 600;
    color: var(--primary);
}

/* ========== Mission Vision Values Page ========== */
section.inner-content .mv-card {
    height: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

section.inner-content .mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

section.inner-content .mv-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(183deg, var(--primary), #a6ce39);
    color: white;
    position: relative;
}

section.inner-content .mv-icon {
    width: 70px;
    height: 70px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

section.inner-content .mv-header h2 {
    margin-bottom: 0;
}

section.inner-content .mv-body {
    padding: 30px;
}

section.inner-content .mv-body ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

section.inner-content .mv-body ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

section.inner-content .mv-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

section.inner-content .value-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

section.inner-content .value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

section.inner-content .value-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

section.inner-content .culture-row {
    background: #f9f9f9;
    border-radius: 15px;
}

section.inner-content .culture-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

section.inner-content .culture-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

section.inner-content .culture-text h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 992px) {
    section.inner-content .about-image-comparison {
        flex-direction: column;
        margin-top: 40px;
    }
    
    section.inner-content .director-profile {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    
    section.inner-content .section-heading {
        font-size: 2rem;
    }
    
    section.inner-content .mv-row .col-lg-4 {
        margin-bottom: 30px;
    }
    
    section.inner-content .director-details {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

/* ========== R&D Page Styles ========== */
section.inner-content .rd-hero-row {
    align-items: center;
    overflow: auto;
}

section.inner-content .rd-hero-image {
    position: relative;
    padding: 20px;
}

section.inner-content .innovation-badge {
    position: absolute;
    top: 0;
    right: -10px;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

section.inner-content .innovation-badge span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

section.inner-content .innovation-badge small {
    font-size: 0.7rem;
    opacity: 0.9;
}

section.inner-content .rd-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

section.inner-content .stat-item {
    text-align: center;
}

section.inner-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

section.inner-content .stat-label {
    font-size: 0.9rem;
    color: #666;
}

section.inner-content .rd-process-row {
    background: #f9f9f9;
    border-radius: 15px;
    margin: 40px 0;
}

section.inner-content .process-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary);
}

section.inner-content .process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

section.inner-content .process-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    line-height: 1;
}

section.inner-content .process-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

section.inner-content .process-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

section.inner-content .rd-facilities-row {
    align-items: center;
}

section.inner-content .facilities-gallery {
    position: relative;
}

section.inner-content .main-image {
    margin-bottom: 15px;
}

section.inner-content .gallery-thumbs {
    display: flex;
    gap: 15px;
}

section.inner-content .thumb-item {
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.inner-content .thumb-item:hover {
    transform: translateY(-5px);
}

section.inner-content .section-heading-left {
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

section.inner-content .section-heading-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

section.inner-content .facility-features {
    margin: 20px 0;
}

section.inner-content .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(0,0,0,0.02);
    border-radius: 5px;
}

section.inner-content .feature-item i {
    margin-right: 15px;
    font-size: 1.2rem;
}

section.inner-content .certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

section.inner-content .certification-badges img {
    height: 120px;
    width: auto;
}

/* ========== Quality Policy Page Styles ========== */
section.inner-content .quality-hero-row {
    align-items: center;
    overflow: auto;
}

section.inner-content .quality-hero-image {
    position: relative;
    padding: 20px;
}

section.inner-content .quality-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

section.inner-content .quality-badge span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

section.inner-content .quality-badge small {
    font-size: 0.7rem;
    opacity: 0.9;
}

section.inner-content .quality-pillars {
    margin-top: 30px;
}

section.inner-content .pillar-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

section.inner-content .pillar-item:hover {
    background: rgba(0,0,0,0.05);
    transform: translateX(5px);
}

section.inner-content .pillar-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

section.inner-content .pillar-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

section.inner-content .quality-standards-row {
    background: #f9f9f9;
    border-radius: 15px;
    margin: 40px 0;
}

section.inner-content .standard-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

section.inner-content .standard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

section.inner-content .standard-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

section.inner-content .standard-icon img {
    max-width: 100%;
    height: auto;
}

section.inner-content .standard-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

section.inner-content .quality-process-row {
    align-items: center;
}

section.inner-content .process-visual {
    position: relative;
    padding-left: 40px;
}

section.inner-content .process-visual::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

section.inner-content .process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

section.inner-content .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

section.inner-content .step-content {
    padding-top: 5px;
}

section.inner-content .step-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

section.inner-content .quality-metrics {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

section.inner-content .metric-item {
    text-align: center;
    flex: 1;
}

section.inner-content .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

section.inner-content .metric-label {
    font-size: 0.9rem;
    color: #666;
}

/* ========== Contact Us Page Styles ========== */
section.inner-content .contact-hero-row {
    align-items: center;
    overflow: auto;
}
section.inner-content .contact-hero-image {
    position: relative;
    padding: 20px;
}

section.inner-content .support-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

section.inner-content .support-badge span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

section.inner-content .support-badge small {
    font-size: 0.7rem;
    opacity: 0.9;
}

section.inner-content .contact-methods {
    margin-top: 30px;
}

section.inner-content .method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

section.inner-content .method-item:hover {
    background: rgba(0,0,0,0.05);
    transform: translateX(5px);
}

section.inner-content .method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

section.inner-content .method-details h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

section.inner-content .method-details small {
    color: #666;
    font-size: 0.8rem;
}

section.inner-content .contact-form-row {
    margin: 60px 0;
}

section.inner-content .contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

section.inner-content .form-group {
    margin-bottom: 20px;
}

section.inner-content .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

section.inner-content .form-control {
    width: 100%;
    padding: 11px 43px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

section.inner-content .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

section.inner-content .btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.inner-content .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

section.inner-content .contact-info-wrapper {
    padding-left: 40px;
}

section.inner-content .office-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

section.inner-content .office-header {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

section.inner-content .office-header i {
    margin-right: 15px;
    font-size: 1.2rem;
}

section.inner-content .office-body {
    padding: 20px;
}

section.inner-content .office-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

section.inner-content .office-contact i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

section.inner-content .social-links {
    margin-top: 40px;
}

section.inner-content .social-links h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

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

section.inner-content .social-icons a {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

section.inner-content .social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

section.inner-content .map-row {
    padding-top: 0;
}

section.inner-content .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 992px) {
    section.inner-content section.inner-content .rd-hero-row, section.inner-content .quality-hero-row, section.inner-content .contact-hero-row {
        padding: 60px 0;
    }
    
    section.inner-content .rd-hero-content, section.inner-content .quality-hero-content, section.inner-content .contact-hero-content {
        margin-bottom: 40px;
    }
    
    section.inner-content .contact-info-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    section.inner-content section.inner-content .rd-stats, section.inner-content .quality-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-heading, .section-heading-left {
        font-size: 1.8rem;
    }
    
    section.inner-content .innovation-badge, section.inner-content .quality-badge, section.inner-content .support-badge {
        width: 80px;
        height: 80px;
        right: 0;
    }
    
    section.inner-content .process-visual::before {
        left: 15px;
    }
    
    section.inner-content .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}
.social-links {
    display: flex;
    justify-content: center;
    margin: 0;
}
.content-area {
    overflow: hidden;
}

input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    color: #444444;
    background-color: #ffffff;
    border-color: color-mix(in srgb, #444444, transparent 80%);
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    font-size: 14px;
    padding: 8px 15px;
    box-shadow: none;
    height: 100px;
    color: #444444;
    background-color: #ffffff;
    border-color: color-mix(in srgb, #444444, transparent 80%);
}
input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background-color: #348e38;
    border: 1px solid #348e38;
    color: #ffffff;
    transition: all 0.3s ease;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #ffffff;
    border: 1px solid #348e38;
    color: #348e38;
}
.office-card h3 {
    color: #fff;
}

.column-inn {
    display: flex;
    flex-wrap: wrap;
}

.column-inn > div {
    display: flex;
    flex-direction: column;
}

.column-inn .single-feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.column-inn .feature-content {
    flex: 1;
}

/* Inner-page css starts from here */

/* contact page css */

/* --- Contact Section --- */
.vlc-contact-section {
    padding: 2rem 0;
}

.vlc-card {
    background: var(--vlc-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.vlc-form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.vlc-input {
    background-color: var(--vl-bg-input);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.vlc-input:focus {
    outline: none;
    border-color: var(--vl-primary);
    box-shadow: 0 0 0 3px rgba(26, 92, 61, 0.1);
}

.vlc-submit-btn {
    background-color: var(--vl-primary);
    color: var(--vl-white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vlc-submit-btn:hover {
	color: white;
    background-color: #14462e;
    transform: translateY(-2px);
}

/* --- Info Cards --- */
.vlc-info-card {
    background: var(--vl-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.vlc-info-card:hover {
    transform: translateX(10px);
}

.vlc-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f1f8f5;
    color: var(--vl-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.vlc-info-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.vlc-info-text {
    color: var(--vl-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* service page css  */


/* --- Hero Section --- */
.vl-services-hero {
    padding: 6rem 0 5rem;
    background-image: url(../img/services-hero.jpg);
    /* PLACEHOLDER: assets/img/services-hero.jpg */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.vl-hero-title {
    color: var(--vl-primary);
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.5px;
}

.vl-hero-subtitle {
    color: var(--vl-text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.vl-btn-brown {
    background-color: var(--vl-secondary);
    color: var(--vl-white);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.vl-btn-brown:hover {
    background-color: #8b4513;
    color: #fffafa;
    transform: translateY(-2px);
}

/* --- PCD Pharma Section --- */
.vl-pcd-section {
    padding: 4rem 0;
    background-color: var(--vl-section-bg);
}

.vl-pcd-section .vl-service-heading {
    font-size: 2.8rem;
    color: var(--vl-primary);
}

/* --- Third Party Manufacturing Section --- */
.vl-tp-section {
    padding: 4rem 0;
    background-color: var(--vl-white);
}

.vl-tp-section .vl-service-heading {
    font-size: 2.8rem;
    color: var(--vl-secondary);
}

/* --- Product Portfolio Section --- */
.vl-portfolio-section {
    padding: 4rem 0;
    background-color: #f1f8f5; /* Light mint tint */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.vl-portfolio-section .vl-service-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.vl-service-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vl-service-text {
    color: var(--vl-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vl-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.vl-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.vl-check-list li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.vl-placeholder-box {
    background-color: #f1f3ee;
    border-radius: 15px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vl-placeholder-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vl-placeholder-box:hover img {
    transform: scale(1.05);
}

.vl-placeholder-icon {
    font-size: 5rem;
    color: var(--vl-primary);
}

.vl-btn-green {
    background-color: #0d4d2e;
    color: var(--vl-white);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

/* --- Third Party Section --- */
.vl-sub-box {
    background-color: var(--vl-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}

.vl-sub-icon {
    font-size: 2rem;
    color: var(--accent-color);
    background: #e8f5e9;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Quality Section --- */
.vl-quality-section {
    background-color: var(--vl-section-bg);
    padding: 5rem 0;
}

.vl-card {
    background: var(--vl-white);
    border: none;
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.vl-card:hover {
    transform: translateY(-10px);
}

.vl-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vl-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vl-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
@media (max-width: 767px) {
    .vl-pcd-section, .vl-tp-section, .vl-portfolio-section, .vl-services-hero { padding: 3rem 0; }
    .vl-service-heading { font-size: 1.8rem !important; }
    .vl-placeholder-box { height: 250px; margin-top: 1.5rem; }
    .vl-sub-box { flex-direction: column; gap: 1rem; }
}

@media (max-width: 360px) {
    .vl-hero-title { font-size: 1.7rem !important; }
    .vl-logo { font-size: 1.3rem !important; }
}

/* --- Hero Section --- */
.vla-hero {
    height: 20vh;
    min-height: 300px;
/*     background-color: #333; */
    background-image: url('../img/about-hero.jpg'); /* PLACEHOLDER: assets/img/about-hero.jpg */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--vl-white);
    position: relative;
}

.vla-hero-title {
	color: var(--vl-primary);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.vla-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
	color: var(--vl-text-dark);
}

/* --- Content Sections --- */
.vla-section {
    padding: 4rem 0;
}

.vla-section-bg {
    background-color: var(--vl-section-bg);
}

.vla-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--vl-text-dark);
}

.vla-text {
    color: var(--vl-text-muted);
    margin-bottom: 1.5rem;
}

.vla-img-box {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vla-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Why Choose Us --- */
.vla-reason-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vla-reason-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f5e9;
    color: var(--vl-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* --- CTA Section --- */
.vla-cta-section {
    background-color: var(--vl-section-bg);
    padding: 4rem 0;
    text-align: center;
}

.vla-cta-icon {
    width: 80px;
    height: 80px;
    background-color: #efebe9;
    color: var(--vl-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.vla-btn-brown {
    background-color: var(--vl-secondary);
    color: var(--vl-white);
    padding: 0.8rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.vla-btn-brown:hover {
    transform: translateY(-3px);
    color: var(--vl-white);
}

@media (max-width: 991px) {
    .vla-hero-title {
        font-size: 2.5rem;
    }

    .vla-heading {
        font-size: 2.2rem;
    }

    .vla-img-box {
        height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .vla-hero { height: 40vh; min-height: 280px; }
    .vla-hero-title { font-size: 1.8rem !important; }
    .vla-section { padding: 3rem 0; }
    .vla-heading { font-size: 1.8rem !important; }
}

@media (max-width: 360px) {
    .vla-hero-title { font-size: 1.5rem !important; }
    .vla-logo { font-size: 1.3rem !important; }
}

/* --- Video Banner Styles --- */
.vlc-video-banner-wrapper {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
    background: #000;
}

.vlc-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.vlc-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.vlc-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

/* Laptop */
@media (max-width: 1200px) {
    .vlc-video-banner-wrapper {
        height: 70vh;
        min-height: 500px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .vlc-video-banner-wrapper {
        height: 60vh;
        min-height: 420px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vlc-video-banner-wrapper {
        height: auto;
        min-height: auto;
        aspect-ratio: 325 / 120;
    }

    .vlc-hero-video {
        width: 100%;
        height: 100%;
        object-fit: fill;
        object-position: center;
    }

    .vlc-video-overlay {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .vlc-video-banner-wrapper {
        height: auto;
        min-height: auto;
        aspect-ratio: 325 / 120;
    }

    .vlc-hero-video {
        object-fit: fill;
        object-position: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .vlc-video-banner-wrapper {
        height: auto;
        min-height: auto;
        aspect-ratio: 325 / 120;
    }
}
/* Hero Section */
.vp-hero-section {
    background-color: var(--vp-primary-green);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.vp-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vp-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Sidebar Styling */
.vp-sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vp-primary-green);
    margin-bottom: 20px;
    border-left: 4px solid var(--vp-accent-brown);
    padding-left: 12px;
}

.vp-category-list {
    list-style: none;
    padding: 0;
}

.vp-category-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 5px;
}

.vp-category-item:hover {
    color: var(--vp-primary-green);
    background-color: #f8fdfb;
    padding-left: 20px;
}

.vp-category-item.active {
    background-color: var(--vp-primary-green);
    color: #fff;
    border-bottom: none;
    box-shadow: 0 4px 10px rgba(45, 106, 79, 0.2);
}

.vp-category-item i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.vp-category-item.active i {
    opacity: 1;
}

.vp-tag {
    display: inline-block;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    margin: 4px;
    border: 1px solid var(--vp-border-color);
}
/* Product Grid */
.vp-product-item {
    display: flex;
    margin-bottom: 30px;
}

.vp-product-card {
    border: 1px solid var(--vp-border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
}

.vp-product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vp-product-img-box {
    background-color: #f8f9fa;
    width: 100%;
    aspect-ratio: 1074 / 1280;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.vp-product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vp-product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vp-product-info {
    font-size: 0.85rem;
    color: var(--vp-text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.vp-product-info span {
    font-weight: 600;
    color: #333;
}

.vp-btn-details {
    background-color: var(--vp-accent-brown);
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    margin-top: auto;
    /* Pushes button to bottom */
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: 0.3s;
}

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

/* Search Bar */
.vp-search-container {
    position: relative;
}

.vp-search-input {
    padding-left: 40px;
    border-radius: 8px;
}

.vp-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vp-text-muted);
}

/* CTA Section */
.vp-cta-section {
    background-color: var(--vp-cta-bg);
    padding: 80px 0;
}

.vp-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vp-dark-green);
    margin-bottom: 25px;
}

.vp-btn-partner {
    background-color: var(--vp-dark-green);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.vp-btn-outline {
    border: 2px solid var(--vp-accent-brown);
    color: var(--vp-accent-brown);
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.vp-image-wrapper {
    position: relative;
}

.vp-cta-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    display: block;
}

@media (max-width: 991px) {
    .vp-cta-image {
        height: 350px;
        margin-top: 40px;
    }
}

.vp-cta-image:hover {
    transform: translateY(-10px);
}

.vp-badge-gmp {
    position: absolute;
    bottom: -39px;
    left: 26px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vp-badge-icon {
    width: 40px;
    height: 40px;
    padding: 5px 7px;
    background-color: #d1e7dd;
    color: #0f5132;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Pagination */
.vp-pagination .page-link {
    color: var(--vp-primary-green);
    border: 1px solid #eee;
    margin: 0 5px;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-pagination .page-item.active .page-link {
    background-color: var(--vp-primary-green);
    border-color: var(--vp-primary-green);
    color: #fff;
}
.certificate-hero{
    position:relative;
    padding:120px 0;
    background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1581093458791-9f3c3900df4b?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.certificate-hero h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}

.certificate-hero p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#f1f1f1;
}

/* SECTION */

.certificate-section{
    padding:90px 0;
}

.section-tag{
    display:inline-block;
    background:#eaf2ff;
    color:#0d6efd;
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:44px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

.section-desc{
    color:#666;
    line-height:1.8;
    max-width:750px;
    margin:auto;
}

/* CARD */

.certificate-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.certificate-card:hover{
    transform:translateY(-10px);
}

.certificate-image{
    position:relative;
    overflow:hidden;
}

.certificate-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:0.4s;
}

.certificate-card:hover img{
    transform:scale(1.05);
}

.certificate-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#0d6efd;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.certificate-content{
    padding:30px;
}

.certificate-content h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.certificate-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.certificate-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#0d6efd;
    color:#fff;
    padding:14px 26px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.certificate-btn:hover{
    background:#0b5ed7;
    color:#fff;
}

/* STATS */

.stats-wrapper{
    margin-top:70px;
}

.stats-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.stats-card:hover{
    transform:translateY(-8px);
}

.stats-icon{
    width:80px;
    height:80px;
    background:#eaf2ff;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:34px;
}

.stats-number{
    font-size:40px;
    font-weight:700;
    color:#111;
}

.stats-text{
    color:#666;
    margin-top:8px;
}

/* MOBILE */

@media(max-width:991px){

    .certificate-hero{
        padding:90px 20px;
    }

    .certificate-hero h1{
        font-size:40px;
    }

    .section-title{
        font-size:34px;
    }

}

@media(max-width:576px){

    .certificate-hero h1{
        font-size:32px;
    }

    .section-title{
        font-size:28px;
    }

    .certificate-content{
        padding:22px;
    }

    .certificate-image img{
        height:280px;
    }

}