/*
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.5
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

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


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */
/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
.main-header {
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 999;
}
h1, h2, h3, h4, h5, h6, p, a, b, strong, div, span ul, li {
    font-family: "Funnel Sans", sans-serif !important;
}
/* MENU STYLE */
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    display: inline-block;
    margin: 0 18px;
}

.main-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: 0.3s;
    position: relative;
}

.main-menu ul li.current-menu-item a,
.main-menu ul li a:hover {
    color: #e63946;
}

/* HEADER RIGHT */
.header-right i {
    font-size: 20px;
    cursor: pointer;
    color: #46679d;
}

/* SCROLL EFFECT */
.main-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* LOGO SHRINK */
.main-header.fixed-header .logo img {
    max-height: 55px;
    transition: all 0.3s ease;
}

.logo img {
    max-height: 90px;
    transition: all 0.3s ease;
}
.container {
    max-width: 90% !important;
}
.about-section {
    padding: 70px 0;
    background: #ffffff;
}
.about-image {
    width: 600px;
    height: 600px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #555 !important;
}
.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #6ab04c;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 15px;
}

.section-tag:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 18px;
    background: #6ab04c;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.3;
}

.about-content h2 span {
    color: #2f4b7c;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.services-section {
    padding: 80px 40px;
    background: #e9eee7;
    border-radius: 25px;
    margin: 0 40px 0 40px;
}
/* Heading */
.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #5b7c5a;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
}

.section-title span {
    color: #3d5a98;
}

.section-text {
    font-size: 15px;
    color: #555;
}

/* Button */
.service-btn {
    background: #3d5a98;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: #2f4b7c;
    color: #fff;
}

/* Service Cards */
.service-card {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
}

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

.icon-circle {
    width: 55px;
    height: 55px;
    background: #dfead8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 22px;
    color: #3d5a98;
}

/* Gradient Box */
.highlight-box {
    background: linear-gradient(135deg, #3d5a98, #a8c66c);
    padding: 30px;
    border-radius: 25px;
}

.highlight-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
}

.highlight-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-content ul {
    padding-left: 18px;
}

.highlight-content ul li {
    margin-bottom: 8px;
}
.category-section {
    padding: 70px 0;
    text-align: center;
}
/* Heading */
.section-subtitle{
    font-size:15px;
    color:#444;
}

.section-title{
    font-size:40px;
    font-weight:600;
    margin-top:10px;
}

.section-title span{
    color:#3d5a98;
}

/* Category Card */
.category-card{
    padding:20px;
    text-align:left;
}

.category-img{
    width:150px;
    height:150px;
    border-radius:50%;
    overflow:hidden;
    margin-bottom:20px;
}

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

.category-card h4{
    font-weight:600;
    margin-bottom:15px;
}

.category-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
}

.category-link{
    color:#3d5a98;
    font-weight:500;
    text-decoration:none;
    display:inline-block;
    margin-top:10px;
    position:relative;
}

.category-link::after{
    content:"";
    width:40px;
    height:2px;
    background:#a8c66c;
    display:inline-block;
    margin-left:10px;
    vertical-align:middle;
}

/* Button */
.main-btn{
    background:#a8c66c;
    padding:15px 40px;
    border-radius:50px;
    font-weight:500;
    text-decoration:none;
    color:#000;
    display:inline-block;
    margin-top:40px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.main-btn:hover{
    background:#8fb454;
}
.how-section {
    background: #f4f6f8;
    padding: 70px 0;
}

/* Title */
.section-subtitle{
    color:#5e9ccf;
    font-weight:600;
    margin-bottom:10px;
}

.section-title{
    font-weight:700;
    font-size:40px;
}

.section-title span{
    color:#3f6da9;
}
section.products-section {
    padding: 70px 0 60px 0;
}
/* Circular Image */
.circle-img {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}
.circle-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.circle-img::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:4px solid #a7c957;
    top:15px;
    left:15px;
    z-index:-1;
}

/* Step Card */
.step-card{
    background:#ffffff;
    padding:25px 30px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
    margin-bottom:25px;
}

.step-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.step-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#c5d86d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#000;
}

.step-card h5{
    font-weight:700;
    margin-bottom:5px;
}

.step-number{
    font-size:50px;
    font-weight:700;
    color:#e9ecef;
}

/* CTA Section */
.cta-section{
    position:relative;
    margin-top:80px;
}

.cta-bg{
    background:url('./images/nutraceuticalmanufactruinggg.jpg') center/cover no-repeat;
    border-radius:20px;
    padding:120px 0;
    position:relative;
}

.cta-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 75%);
    border-radius: 20px;
}
.products-section{
    background:#f7f8fa;
}

.products-title{
    font-weight:700;
    font-size:32px;
}

.products-text{
    color:#6c757d;
    font-size:15px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.product-card img{
    width:100%;
    object-fit:cover;
}

.product-info{
    padding:20px;
    text-align:center;
}

.product-info h5 {
    color: #466598;
    font-weight: 600;
}
.stats-box p {
    color: #fff !important;
}
.product-info span{
    color:#6c757d;
    font-size:14px;
}
.testimonial-section {
    background: #d9e2e6;
    padding: 60px 0;
    border-radius: 25px;
}

.section-subtitle{
    color:#4fa3d1;
    font-weight:600;
}

.section-title{
    font-size:36px;
    font-weight:700;
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#6c757d;
}

/* Cards */
.rating-card,
.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.rating-img{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
}

.google-rating{
    display:flex;
    align-items:center;
    gap:20px;
}

.google-rating h3{
    font-weight:700;
    margin:0;
}

.stars{
    color:#ffc107;
}

.small-avatars img{
    width:35px;
    height:35px;
    border-radius:50%;
    margin-right:-10px;
    border:2px solid #fff;
}

/* Testimonial Card */
.testimonial-card{
    position:relative;
    text-align:center;
}

.quote-badge{
    position:absolute;
    top:0;
    right:0;
    background:#8db255;
    width:80px;
    height:80px;
    border-bottom-left-radius:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.testimonial-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    margin-bottom:15px;
}

/* Bottom Section */
.video-box img{
    width:100%;
    border-radius:20px;
}

.stats-box {
    background: #aabc78;
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    color: #1e1e1e;
}

.stats-box h2{
    font-size:48px;
    font-weight:700;
}
.contact-section {
    padding: 80px 0;
    background: linear-gradient(rgb(0 0 0 / 50%), rgb(10 30 45 / 45%)), url(images/handsover.webp) center / cover no-repeat;
}

.contact-tag {
  color: #9ad96d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    color: #fff;
}

.contact-title span {
  color: #9ad96d;
}

.contact-text {
    color: #CFD8DB !important;
    max-width: 520px;
}
.contact-form-box h3 {
    color: #fff;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
}
.info-box p {
    color: #fff !important;
}
.contact-info .info-box {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  flex: 1;
}
.info-box h6{
    color: #fff !important;
}
.info-box .icon {
  font-size: 26px;
  margin-bottom: 10px;
  color: #9ad96d;
}

.contact-form-box {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px;
}

/* CF7 form styling */
.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 12px 18px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-form-box textarea {
  border-radius: 18px;
  min-height: 120px;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #cfd8dc;
}

.contact-form-box input[type="submit"] {
  background: #9ad96d;
  color: #0f2a3d;
  border: none;
  font-weight: 600;
  padding: 14px;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-form-box input[type="submit"]:hover {
  background: #82c956;
}
.stats-box p{
    font-size:18px;
    font-weight:600;
}

.stats-btn{
    background:#1e1e1e;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
}
/* Navigation Buttons */
.product-nav button{
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:#e9ecef;
    margin-right:10px;
    transition:0.3s;
}

.product-nav button:hover{
    background:#d4a24c;
    color:#fff;
}
section.cta-section  p {
    color: #fff !important;
}
.cta-content{
    position:relative;
    z-index:2;
    max-width:600px;
    margin:auto;
    background:rgba(62, 110, 167, 0.85);
    padding:40px;
    border-radius:20px;
    text-align:center;
    color:#fff;
}

.cta-content h3{
    font-weight:700;
    font-size:28px;
}

.cta-content span{
    color:#9be7ff;
}

.cta-btn{
    background:#c5d86d;
    padding:12px 30px;
    border-radius:30px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
    text-decoration:none;
    font-weight:600;
    color:#000;
}

.footer {
    background: #f4f4f2;
    padding: 80px 0 0;
    font-family: 'Segoe UI', sans-serif;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer .underline {
    width: 120px;
    height: 2px;
    background: #7fb3c9;
    margin-bottom: 25px;
}

.footer p {
    color: #555;
    line-height: 1.8;
}

.footer a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer a:hover {
    color: #7fb3c9;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links i {
    color: #8dbd3f;
    margin-right: 8px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8dbd3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
}

.post-item {
    display: flex;
    margin-bottom: 15px;
}

.post-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
}

.footer-bottom {
    background: #e9e9e5;
    padding: 25px 40px;
    margin-top: 50px;
    border-radius: 20px 20px 0 0;
}

.footer-bottom a {
    color: #333;
}
.pageheader {
    background: rgb(229,255,247);
    background: linear-gradient(90deg, rgb(95 119 71) 0%, rgb(0 0 0) 100%);
    margin-bottom: 30px;
}
.breadcrumb_new {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    font-weight: bold;
    color: #fff;
}
span.breadcrumb_new a {
    color: #fff;
}
.bshades {
    font-size: 29px;
    width: 100%;
    float: left;
    text-align: center;
    font-weight: 300;
    line-height: 48px;
    margin: 30px 0 60px 0;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #4CAF50, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.resecont {
    width: 100%;
    float: left;
    font-size: 21px;
    margin: 0 0 7px 0;
    background: #fcfcfc;
    padding: 0 15px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    padding: 10px 10px 10px 10px;
    border: none;
}
.resecontp {
    text-align: left;
    font-size: 18px;

    letter-spacing: .5px;
    margin: 0 0 30px 0;
    padding: 0 15px;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    width: 100%;
    padding: 10px;
    border: none;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 10px;
    border: none;
}
span.breadcrumb_new a {
    color: #fff;
    text-decoration: none;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 10px;
}
.contactformdes {
    background: #ccc;
    padding: 5%;
    margin: 0 0 40px 0;
    border-radius: 30px;
}
/* Responsive */
/**
 * 8.0 Media Queries
 * ----------------------------------------------------------------------------
 */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

@media (max-width: 767px) {
.pageheader {
    padding: 15px 0 20px 0 !important;
}
section.pageheader h1 {
    display: unset !important;
    font-size: 30px;
}
span.breadcrumb_new {
    margin: 15px 0 0 0 !important;
}
.breadcrumb_new {
    display: unset !important;
    float: left !important;
    height: 45px !important;
}
.logo img {
    max-height: 60px !important;
}
div#mega-menu-wrap-primary {
    width: 50px !important;
    float: right !important;
}
div#mega-menu-wrap-primary {
    width: 50px !important;
    float: right !important;
}
#sequence {
    width: 100%;
    float: left;
    background: #99b46b;
    position: fixed;
    bottom: 0;
    z-index: 100;
    padding: 0;
    color: #000!important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #000!important;
    font-weight: 600;
    text-decoration: none!important;
    border-right: 1px solid;
}
.about-section {
    padding: 35px 0 !important;
}
	.main-header.fixed-header {
    position: unset !important;
}
section.about-section .col-lg-6.text-center {
    order: 2 !important;
}
.about-section {
    padding: 35px 0 0 0 !important;

}
.highlight-box {
    padding: 10px !important;
}
section.category-section h2 {
    font-size: 30px !important;
}
.step-icon {
    width: 172px !important;
    height: 100px !important;
}
.how-section {
    padding: 29px 0 !important;
}
.services-section {
    padding: 24px 8px !important;
    margin: 0 0 0 0;
}
body.home.blog.wp-embed-responsive.wp-theme-twentythirteen.mega-menu-primary.single-author.sidebar {
    overflow-x: hidden !important;
}
.highlight-content {
    margin: 25px 0 0 0 !important;
}
section {
    overflow: hidden !important;
}
.section-title {
    font-size: 19px !important;
}
.services-section {
    padding: 24px 0px !important;
    margin: 20px !important;
}
.header-right.d-flex.align-items-center.justify-content-end {
    display: none !important;
}
.footer {
    padding: 40px 0 0 !important;
}
.info-box {
    margin: 0 0 20px 0 !important;
}
section.category-section h2 {
    font-size: 30px !important;
    text-align: left !important;
}
.cta-content {
    padding: 17px !important;
}
section.products-section {
    padding: 50px 0 60px 0 !important;
}
section.products-section {
    padding: 33px 0 0px 0 !important;
}
.contact-info.d-flex.gap-3.mt-4 {
    display: unset !important;
}
.col-lg-4 {
    margin: 0 0 30px 0 !important;
}
.cta-section {
    margin-top: 50px !important;
}
.step-card p {
    font-size: 9px !important;
}
.step-number {
    display: none !important;
}
.container {
    max-width: 100% !important;
}
}
@media (max-width: 992px) {
    .about-image {
        width: 350px;
        height: 350px;
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-image {
        width: 280px;
        height: 280px;
    }

    .about-content h2 {
        font-size: 24px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }

    .services-section {
        padding: 60px 20px;
        margin: 20px;
    }
}

@media(max-width:992px){
    .circle-img{
        width:300px;
        height:300px;
        margin-bottom:40px;
    }
}
@media(max-width:992px){
    .testimonial-section{
        padding:50px 20px;
    }
}
@media (min-width: 767px) and (max-width: 1367px) {
.about-image {
    width: 500px !important;
    height: 500px !important;
}
.services-section {
    padding: 55px 0px !important;
    background: #e9eee7;
    border-radius: 25px;
    margin: 0 40px 0 40px;
}
.circle-img {
    width: 500px !important; 
    height: 500px !important;
}
.contact-title {
    font-size: 30px !important; 
}
.cta-bg {
    padding: 80px 0 !important;

}

p {
    font-size: 15px !important;
    line-height: 24px !important;
    color: #555 !important;
}
.about-content h2 {
    font-size: 30px !important;
    font-weight: 600 !important;
}
}
@media (min-width: 1368px) and (max-width: 1500px) {
.about-image {
    width: 500px !important;
    height: 500px !important;

}
section.services-section .container {
    max-width: 100% !important;
}
.circle-img {
    width: 500px !important;
    height: 500px !important;
}
.product-info h5 {
    font-size: 16px !important;
}
.cta-content {
    max-width: 650px !important;
}
}