/*
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
 * ----------------------------------------------------------------------------
 */

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

html {
	scroll-behavior: smooth;
}

:root {
	--ancient-color: #20A24A;
	--primary-color: #09243C;
	--white-color: #FFFFFF;
	--light-bg-color: #B9DAE9;
	--black-color: #000000;
	--light-bg-color-2: #F3F9F5;
	--light-bg-icon-contact: #F7F7F7;
	--tag-bg-color: rgba(255, 255, 255, 0.9);
	--tag-bg-dark-color: #efefefe6;
	--icon-highlight-color: #9EDD05;
	--heading-font: "Syne", sans-serif;
	--body-font: "Outfit", sans-serif;
	--bg-text-font: "Sora", sans-serif;
	--transition-3s: all 0.3s ease;
	--transition-4s: all 0.4s ease;
	--footer-dark-bg: #1A1A1A;
	--footer-medium-bg: #262626;
	--footer-text-color: rgba(255, 255, 255, 0.7);
	--footer-link-color: var(--white-color);
	--font-weight-regular: 400;
	--font-weight-semibold: 600;
	--para-font-size: calc(0.4vw + 10px);
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: var(--body-font);
    font-size: var(--para-font-size);
    background: #f4f9ff;
}

.space48 {
	height: 48px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-heading {
	font-size: calc(1.2vw + 30px);
	font-family: var(--heading-font);
	font-weight: 700;
}

a {
	text-decoration: none;
}

/* Global button css */
.global_btn {
	font-size: 14px;
	font-weight: 600;
	border: none;
	background-color: var(--ancient-color);
	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: var(--white-color);
		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);
	}

	svg path {
		stroke: var(--primary-color);
	}

	&::before {
		content: '';
		background-color: var(--white-color);
		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: var(--ancient-color);

		&::before {
			background-color: var(--primary-color);
		}

	}
}

.global_btn:hover {

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

	svg path {
		stroke: var(--white-color);
	}

	&::before {
		content: '';
		width: 100%;
		height: 100%;
		right: 0;
		background: var(--primary-color);
	}
}

@media(max-width:991px) {
	.global_btn {
		font-size: 12px;
	}
}

/* Highlight Text */
.highlight-text {
	position: relative;
	display: inline-block;
	font-weight: 500 !important;
	line-height: 1;
	z-index: 1;
}

.highlight-text::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: -5px;
	bottom: -15px;
	right: -5px;
	height: 15px;
	background: url('assets/images/highlight-image.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	/* background-color: var(--icon-highlight-color); */
	z-index: -1;
	opacity: 0.6;
}

/* SUbtitle tag */
.subtitle-tag {
	font-family: var(--body-font);
	background-color: var(--tag-bg-dark-color);
	text-transform: uppercase;
	padding: 7px 20px;
	border-radius: 10px;
	display: inline-block;
	font-weight: 500;
	font-size: 15px !important;
	letter-spacing: 1px;
}

/*  */
.highlight-text-light { /* For highlight text on dark backgrounds */
    color: var(--white-color);
}
.highlight-text-light::after {
    background-color: var(--ancient-color);
    opacity: 0.5;
}

/* --- ANIMATION UTILITIES --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
.animate-zoom-in { animation: zoomIn 0.6s ease-out forwards; opacity: 0; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease-out forwards; opacity: 0; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease-out forwards; opacity: 0; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

.parinidhi-inner-page {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}

.section-hero-intro {
    padding-bottom: var(--padding-section);
    border-bottom: 1px solid var(--light-bg-color);
}

.section-block {
    padding: var(--padding-section) 0;
    margin-top: var(--padding-section);
    margin-bottom: var(--padding-section);
    border-radius: 12px;
}
.light-bg-gradient {
    background: linear-gradient(135deg, var(--light-bg-color-2) 0%, var(--white-color) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.dark-bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--footer-dark-bg) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-divider {
    height: 1px;
    background-color: var(--light-bg-color);
    margin: 40px 0;
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: var(--transition-3s);
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--ancient-color);
}
.feature-icon {
    font-size: 48px;
    color: var(--ancient-color);
    margin-bottom: 20px;
    line-height: 1;
}
.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(9, 36, 60, 0.7);
}

.info-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-3s);
    border: 1px solid transparent;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ancient-color);
}
.info-card.dark-bg {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.info-card.dark-bg h3 {
    color: var(--ancient-color);
}
.info-card.dark-bg .card-icon {
    color: var(--ancient-color);
}
.info-card.light-bg {
    background-color: var(--light-bg-color-2);
    color: var(--primary-color);
}
.info-card .card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.clean-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.clean-list li {
    padding: 8px 0;
    font-size: calc(0.1vw + 15px);
    display: flex;
    align-items: flex-start;
    color: var(--primary-color);
}
.clean-list .check-icon {
    color: var(--ancient-color);
    margin-right: 12px;
    font-size: 18px;
    line-height: 1.5;
    min-width: 18px;
    flex-shrink: 0;
}
.clean-list.small-text li {
    padding: 5px 0;
    font-size: 14px;
}
.clean-list.small-text .check-icon {
    font-size: 15px;
}
.compact-list li {
    margin-bottom: 5px;
}

.key-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}
.metric-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--light-bg-color);
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    transition: var(--transition-3s);
}
.metric-item:hover {
    border-color: var(--ancient-color);
    box-shadow: 0 5px 15px rgba(32, 162, 74, 0.1);
}
.metric-icon {
    font-size: 36px;
    color: var(--ancient-color);
    margin-bottom: 10px;
}
.metric-item p {
    font-size: 15px;
    margin: 0;
}
.metric-item p strong {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--light-bg-color);
    z-index: 0;
}
.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-icon {
    width: 45px;
    height: 45px;
    background-color: var(--ancient-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    font-size: 20px;
    box-shadow: 0 0 0 6px var(--white-color);
    transition: var(--transition-3s);
}
.timeline-step:hover .step-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}
.step-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.step-details p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: rgba(9, 36, 60, 0.7);
}

.mission-card {
    background-color: var(--light-bg-color-2);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-4s);
    border: 1px solid transparent;
}
.mission-card:hover {
    background-color: var(--ancient-color);
    color: var(--white-color);
    box-shadow: 0 15px 35px rgba(32, 162, 74, 0.2);
    border-color: var(--primary-color);
}
.mission-card:hover h3,
.mission-card:hover .card-icon.large {
    color: var(--white-color);
}
.mission-card:hover p,
.mission-card:hover .clean-list li {
    color: rgba(255, 255, 255, 0.9);
}
.mission-card:hover .clean-list .check-icon {
    color: var(--white-color);
}

.mission-card .card-icon.large {
    font-size: 52px;
    color: var(--ancient-color);
    margin-bottom: 20px;
    line-height: 1;
}
.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.mission-card p {
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.director-portrait {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.director-portrait img {
    width: 100%;
    height: 550px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.director-portrait:hover img {
    transform: scale(1.05);
}
.director-quote {
    background-color: var(--light-bg-color-2);
    padding: 25px 35px;
    border-left: 6px solid var(--ancient-color);
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}
.director-quote p {
    margin-bottom: 15px;
    font-size: calc(0.1vw + 16px);
    line-height: 1.7;
    color: var(--primary-color);
}
.director-quote footer {
    text-align: right;
    font-weight: var(--font-weight-semibold);
    color: var(--ancient-color);
    font-size: 15px;
}
.director-quote footer cite {
    font-style: normal;
    color: var(--primary-color);
}

.manufacturing-content .service-block {
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: var(--transition-3s);
    border: 1px solid transparent;
}
.manufacturing-content .service-block:hover {
    background-color: var(--ancient-color);
    border-color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.manufacturing-content .service-block .manuact-heading,
.manufacturing-content .service-block p {
    color: var(--black-color);
}
.manufacturing-content .service-block:hover .manuact-heading {
    color: var(--primary-color);
}
.manufacturing-content .service-block:hover .service-icon-lg {
    color: var(--primary-color);
}
.manufacturing-content .service-icon-lg {
    font-size: 50px;
    color: var(--ancient-color);
    margin-bottom: 15px;
    line-height: 1;
}
.manufacturing-content .service-block h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.manufacturing-content .service-block p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}

.cta-banner {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--padding-section);
}
.cta-banner.light {
    background-color: var(--ancient-color);
}
.cta-text {
    color: var(--white-color);
    font-size: calc(0.4vw + 18px);
    margin: 0;
    line-height: 1.4;
    font-weight: var(--font-weight-semibold);
    flex-grow: 1;
    margin-right: 30px;
}

.contact-content .contact-info-block {
    background-color: var(--light-bg-color-2);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.contact-content .contact-detail-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}
.contact-content .contact-icon {
    font-size: 24px;
    color: var(--ancient-color);
    margin-right: 15px;
    min-width: 24px;
    padding-top: 5px;
    line-height: 1.5;
}
.contact-content .contact-detail-item h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.contact-content .contact-detail-item p {
    margin: 0;
    line-height: 1.5;
    color: rgba(9, 36, 60, 0.8);
}
.contact-content .contact-detail-item a {
    color: var(--primary-color);
}
.contact-content .contact-detail-item a:hover {
    color: var(--ancient-color);
}

.contact-content .social-links {
    margin-top: 20px;
    border-top: 1px solid var(--light-bg-color);
    padding-top: 20px;
	display: flex;
}
.contact-content .social-links .social-icon {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    transition: var(--transition-3s);
}
.contact-content .social-links .social-icon:hover {
    color: var(--ancient-color);
    transform: translateY(-2px);
}

.contact-content .contact-form-wrapper {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-content .form-mock-area {
    border: 1px dashed var(--light-bg-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-content .form-mock-area p {
    font-size: 15px;
}
.contact-content .map-embed {
    width: 100%;
    min-height: 450px;
    max-height: 70vh;
    border-radius: 12px !important;
}

@media (max-width: 1200px) {
    .section-subheading {
        font-size: calc(1.5vw + 18px);
    }
    .section-subheading-small {
        font-size: calc(1vw + 14px);
    }
    .lead-paragraph {
        font-size: calc(0.2vw + 15px);
    }
    .cta-text {
        font-size: calc(0.4vw + 16px);
    }
}

@media(max-width:991px) {
    .section-hero-intro {
        flex-direction: column;
        text-align: center;
        padding-bottom: 40px;
    }
    .section-hero-intro .col-lg-7,
    .section-hero-intro .col-lg-5 {
        width: 100%;
    }
    .section-hero-intro img {
        margin-top: 30px;
        max-width: 80%;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        margin-top: 40px;
    }
    .cta-text {
        margin-bottom: 20px;
        margin-right: 0;
        font-size: calc(0.6vw + 15px);
    }
    .cta-banner .global_btn {
        width: auto;
    }

    .process-timeline {
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }
    .process-timeline::before {
        display: none;
    }
    .timeline-step {
        width: 50%;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .step-icon {
        box-shadow: 0 0 0 4px var(--white-color);
    }

    .mission-card, .feature-card, .info-card {
        margin-bottom: 25px;
    }
    .director-portrait {
        max-width: 70%;
        margin: 0 auto 30px;
    }
    .director-quote {
        margin: 20px 0;
        padding: 20px;
    }
    .service-block {
        margin-bottom: 25px;
    }
    .contact-content .contact-info-block, .contact-form-wrapper {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {
    .page-main-heading {
        text-align: center;
    }
    .section-subheading {
        font-size: calc(1.8vw + 15px);
        text-align: center;
    }
    .section-subheading-small {
        font-size: calc(1.5vw + 12px);
        text-align: center;
    }
    .lead-paragraph {
        font-size: calc(0.5vw + 14px);
        text-align: center;
    }
    .subtitle-tag {
        font-size: 13px !important;
        margin: 0 auto 15px;
        display: block;
        width: fit-content;
    }
    .global_btn {
        margin-left: auto;
        margin-right: auto;
    }
    .py-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-block {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 30px 0;
    }
    .section-hero-intro {
        padding-bottom: 30px;
    }

    .timeline-step {
        width: 100%;
    }
    .key-metrics {
        flex-direction: column;
        gap: 20px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .director-portrait {
        max-width: 90%;
    }
    .map-embed {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .section-subheading {
        font-size: 24px;
    }
    .section-subheading-small {
        font-size: 18px;
    }
    .lead-paragraph {
        font-size: 14px;
    }
    .cta-text {
        font-size: 16px;
    }
    .breadcrumb-item a {
        font-size: 13px;
    }
    .breadcrumb-item.home-link a {
        font-size: 14px;
    }
}

/* Header section */
header.site-header {
	position: absolute;
	width: 100%;
	z-index: 99;
	top: 30px;
}

header.site-header img.header-logo {
	width: 80%;
}

header.site-header .header-inner {
	background: #fff;
	border-radius: 50px;
	padding: 20px 30px;
}

header.site-header .contact-header {
	text-align: end;
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 30px;
}

/* Banner section csss */
.banner-section {
	position: relative;
}

.banner-section .hero-slider {
	width: 100%;
	height: 100vh;
}

.banner-section .swiper-slide {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-section .slide-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
}

.banner-section .slide-content {
	position: absolute;
	top: 58%;
	left: 5%;
	transform: translateY(-50%);
	z-index: 10;
	color: white;
	text-align: left;
	max-width: 600px;
}

.banner-section .highlight-tag {
	background-color: var(--tag-bg-color);
	color: var(--primary-color);
	padding: 5px 15px;
	font-weight: 600;
	border-radius: 5px;
	display: inline-block;
	margin-bottom: 20px;
}

.banner-section .slide-title {
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	color: var(--white-color);
}

.banner-section .btn-custom-dark {
	background-color: var(--primary-color);
	color: white;
	border: 1px solid var(--primary-color);
	padding: 10px 30px;
	border-radius: 50px;
	transition: var(--transition-4s);
}

.banner-section .btn-custom-dark:hover {
	background-color: var(--ancient-color);
	border-color: var(--ancient-color);
	color: white;
}

.banner-section .btn-custom-dark i.fa-arrow-right {
	transition: transform 0.3s;
}

.banner-section .btn-custom-dark:hover i.fa-arrow-right {
	transform: translateX(3px);
}

.banner-section .slide-content>* {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.banner-section .swiper-slide-active .slide-content>* {
	opacity: 1;
	transform: translateY(0);
}

.banner-section .swiper-slide-active .slide-content .highlight-tag {
	transition-delay: 0.1s;
}

.banner-section .swiper-slide-active .slide-content .slide-title {
	transition-delay: 0.3s;
}

.banner-section .swiper-slide-active .slide-content .btn-custom-dark {
	transition-delay: 0.5s;
}

.banner-section .swiper-horizontal>.swiper-pagination-bullets {
	width: auto;
	right: 30px;
	left: auto;
	top: 52%;
	display: table;
	transform: translateY(-50%);
}

.banner-section .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 10px 0 !important;
}

.banner-section .swiper-pagination-bullet {
	position: relative;
	outline: none;
	height: 15px;
	width: 15px;
	top: 0px;
	left: 0px;
	opacity: 1;
	vertical-align: middle;
	border-radius: 50%;
	margin: 0px 7px !important;
	display: block;
	background: rgba(255, 255, 255, 0.3);
}

.banner-section .swiper-pagination-bullet-active,
.banner-section .swiper-pagination-bullet:hover {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
	border: none;
	border-radius: 50%;
	background: transparent;
	width: 15px;
	height: 15px;
	position: relative;
}

.banner-section .swiper-pagination-bullet:after {
	transition: background-color 0.3s ease, transform 0.3s ease;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .3);
	text-indent: -999em;
	cursor: pointer;
	position: absolute;
}

.banner-section .swiper-pagination-bullet-active:after,
.banner-section .swiper-pagination-bullet:hover:after {
	transform: scale(0.4);
	-webkit-transform: scale(0.4);
	background-color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
	.banner-section .slide-content {
		top: auto;
		bottom: 15%;
		right: 50%;
		transform: translateX(50%);
		text-align: center;
		max-width: 90%;
		padding: 0 15px;
	}

	.banner-section .swiper-horizontal>.swiper-pagination-bullets {
		width: 100% !important;
		right: auto;
		left: 0;
		top: auto;
		bottom: 15px;
		transform: none;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.banner-section .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 7px !important;
	}

	.banner-section .swiper-pagination-bullet {
		display: inline-block;
	}
}

/* Marquee section */
@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}

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

.marquee-section .marquee-container {
	width: 100%;
	overflow: hidden;
	background-color: var(--light-bg-color);
	padding: 15px 0;
	white-space: nowrap;
}

.marquee-section .marquee-content {
	display: inline-block;
	animation: marquee-scroll 30s linear infinite;
}

.marquee-section .marquee-text {
	font-family: var(--heading-font);
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline;
}

.marquee-section .marquee-separator {
	font-size: 36px;
	color: var(--primary-color);
	margin: 0 20px;
}

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

@media (max-width:767px) {
	.marquee-section .marquee-separator {
		font-size: 24px;
	}

	.marquee-section .marquee-text {
		font-size: 24px;
	}
}

/* partnership section */

.partnership-section .section-heading {
	color: var(--black-color);
}

.partnership-section .subtitle-tag {
	background-color: var(--ancient-color);
	color: var(--white-color);
	font-weight: 600;
}

.partnership-section .feature-card-icon-wrapper {
	background-color: rgba(9, 36, 60, 0.05);
	border: 1px solid rgba(9, 36, 60, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 1rem;
	border-radius: 0.75rem;
	margin-right: 1rem;
}

.partnership-section .feature-card-icon {
	color: var(--primary-color);
}

.partnership-section .feature-card-title {
	color: var(--primary-color);
	font-weight: 700;
}

.partnership-section .feature-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.partnership-section .image-wrapper {
	position: relative;
	padding: 10px;
	background-color: var(--white-color);
	border-radius: 12px;
}

.partnership-section .read-more-btn {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 150px;
	height: 50px;
	border: none;
	border-radius: 9999px;
	background-color: var(--white-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	color: var(--black-color);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition-3s);
	opacity: 1;
	visibility: visible;
}

.partnership-section .read-more-btn:hover {
	background-color: var(--ancient-color);
	color: var(--white-color);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.partnership-section .read-more-btn i {
	margin-left: 8px;
	transition: var(--transition-3s);
}

.partnership-section .read-more-btn:hover i {
	transform: translateX(3px);
}

.partnership-section .arrow-circle,
.partnership-section .image-wrapper::after,
.partnership-section .read-more-btn:hover .arrow-circle {
	display: none !important;
}

.partnership-section .feature-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
	transition: var(--transition-4s);
}

.partnership-section .feature-card {
	padding: 24px;
	padding-bottom: 44px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: var(--transition-3s);
	height: 100%;
}

@media(max-width:767px) {
	.partnership-section .feature-card {
		padding: 15px;
		padding-bottom: 40px;
	}
}

/* About Parinidhi section */
.about-parinidhi .main-title {
	padding-top: 10px;
	color: var(--primary-color);
}

.about-parinidhi .main-text {
	color: var(--black-color);
	margin-bottom: 2rem;
}

.about-parinidhi .highlight-box {
	display: flex;
	align-items: flex-start;
	background-color: var(--light-bg-color-2);
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.about-parinidhi .highlight-box.green-accent {
	background-color: var(--light-bg-color-2);
}

.about-parinidhi .highlight-box-icon {
	margin-right: 1rem;
}

.about-parinidhi .highlight-box-icon i {
	color: var(--white-color);
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--icon-highlight-color);
	height: 50px;
	width: 50px;
	border-radius: 50%;
}

.about-parinidhi .highlight-box h5 {
	font-family: var(--body-font);
	font-weight: 500;
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 0.25rem;
}

.about-parinidhi .highlight-box p {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.about-parinidhi .image-container {
	position: relative;
	height: 100%;
}

.about-parinidhi .main-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
	margin-bottom: 15px;
}

.about-parinidhi .small-image {
	width: 100%;
	height: 330px;
	object-fit: contain;
	border-radius: 8px;
}

.about-parinidhi .right-content-box {
	padding: 1rem;
}

.about-parinidhi .right-content-box p {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.about-parinidhi .learn-more-btn {
	background-color: var(--icon-highlight-color);
	color: var(--primary-color);
	font-weight: 700;
	padding: 10px 15px;
	border-radius: 5px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: var(--transition-3s);
	border: 2px solid transparent;
}

.about-parinidhi .learn-more-btn:hover {
	background-color: var(--ancient-color);
	color: var(--white-color);
	border-color: var(--ancient-color);
}

.about-parinidhi .learn-more-btn i {
	margin-left: 0.5rem;
}

@media(max-width:767px) {
	.about-parinidhi .small-image {
		height: 380px;
		object-fit: unset;
	}
}

/* Segment section */
.segments-section {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.segments-section .subtitle-tag {
	color: var(--black-color);
	background-color: var(--white-color);
}

.segments-section .main-title {
	font-family: var(--heading-font);
	color: var(--white-color);
	margin-top: 15px;
	margin-bottom: 0;
}

.segments-section .segment-card {
	background-color: var(--white-color);
	color: var(--primary-color);
	padding: 40px;
	border-radius: 12px;
	min-height: 250px;
	position: relative;
	overflow: hidden;
	transition: var(--transition-3s);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.segments-section .segment-card:hover {
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

.segments-section .segment-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	padding-bottom: 35px;
	border-bottom: 1px solid var(--tag-bg-dark-color)
}

.segments-section .segment-card-icon-wrapper {
	background-color: var(--white-color);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	border: 3px solid var(--ancient-color);
	flex-shrink: 0;
}

.segments-section .segment-card-icon-wrapper i {
	color: var(--ancient-color);
	font-size: 28px;
}

.segments-section .segment-card-body .segment-card-heading {
	font-family: var(--heading-font);
	color: var(--primary-color);
	font-size: 24px;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	position: relative;
}

.segments-section .segment-card-body .segment-card-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--ancient-color);
	opacity: 0.5;
}

.segments-section .segment-card-body p {
	margin-bottom: 1rem;
	padding-top: 15px;
	position: relative;
	z-index: 3;
}

.segments-section .segment-card-action {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-3s);
	text-decoration: none;
	flex-shrink: 0;
}

.segments-section .segment-card-action:hover {
	background-color: var(--ancient-color);
}

.segments-section .segment-card-action i {
	font-size: 1rem;
}

.segments-section .segment-number {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 72px;
	font-weight: 800;
	color: rgba(9, 36, 60, 0.05);
	z-index: 1;
}

.segments-section .cta-card {
	background-color: var(--ancient-color);
	color: var(--white-color);
	padding: 40px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 250px;
	transition: var(--transition-3s);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.segments-section .cta-card .cta-heading {
	font-family: var(--heading-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.segments-section .cta-btn {
	background-color: var(--white-color);
	color: var(--primary-color);
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: var(--transition-3s);
}

.segments-section .cta-btn:hover {
	background-color: var(--icon-highlight-color);
	color: var(--primary-color);
}

.segments-section .cta-btn i {
	margin-right: 0.5rem;
}

.segments-section .cta-icon {
	margin-bottom: 1rem;
}

.segments-section .cta-icon i {
	font-size: 2.5rem;
	color: var(--white-color);
}

@media(max-width:767px) {
	.segments-section .segment-card {
		padding: 20px;
		min-height: 250px;
	}

	.segments-section .segment-card-body .segment-card-heading {
		font-size: 20px;
		line-height: normal;
	}
}

/* Metrics Section  */
.metrics-section {
	background-color: var(--light-bg-color-2);
}

.metrics-section .subtitle-tag {
	background: var(--white-color);
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.metrics-section .main-title {
	color: var(--primary-color);
	padding-top: 20px;
}

.metrics-section .metric-card {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	min-height: 300px;
}

.metrics-section .metrics-div {
	position: relative;
	z-index: 1;
}

.metrics-section .metric-card-left {
	background-color: var(--white-color);
	padding: 40px;
}

.metrics-section .metric-number {
	font-family: var(--heading-font);
	font-size: 4rem;
	margin-top: 20px;
	line-height: 1;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.metrics-section .metric-text {
	font-family: var(--body-font);
	margin-bottom: 0;
}

.metrics-section .profile-img-wrapper {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-bottom-right-radius: 12px;
}

.metrics-section .profile-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.metrics-section .metric-card-center {
	background-color: var(--primary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 350px;
}

.metrics-section .metric-card-center img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.metrics-section .metric-overlay {
	position: absolute;
	top: 19%;
	left: 65%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: var(--white-color);
	box-shadow: 0px 0px 128px 35px var(--primary-color);
	background: #09243ca8;
	padding: 1rem 2rem;
	border-radius: 8px;
}

.metrics-section .metric-overlay-number {
	font-size: 72px;
	font-weight: 600;
	line-height: 1;
	color: var(--white-color);
}

.metrics-section .metric-overlay-text {
	color: var(--white-color);
}

.metrics-section .info-card-green {
	background-color: var(--ancient-color);
	color: var(--white-color);
	padding: 40px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.metrics-section .info-card-green .heading-metric-card {
	font-family: var(--heading-font);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.metrics-section .info-card-green .cta-btn {
	background-color: var(--white-color);
	color: var(--primary-color);
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: var(--transition-3s);
}

.metrics-section .info-card-green .cta-btn:hover {
	background-color: var(--icon-highlight-color);
}

.metrics-section .info-card-green .medical-icon {
	position: absolute;
	bottom: -5px;
	right: 20px;
	font-size: 5rem;
	color: rgba(255, 255, 255, 0.2);
	z-index: 1;
}

.metrics-section .info-card-blue {
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 40px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.metrics-section .info-card-blue .icon-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--tag-bg-dark-color);
	padding-bottom: 40px;
}

.metrics-section .info-card-blue .icon-header i {
	font-size: 2rem;
	color: var(--ancient-color);
	margin-right: 1rem;
}

.metrics-section .info-card-blue .heading-metric-card {
	font-family: var(--heading-font);
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	color: var(--white-color);
}

.metrics-section .info-card-blue p {
	color: rgba(255, 255, 255, 0.7);
}

@media(max-width:991px) {
	.metrics-section .metric-card {
		min-height: auto;
	}
}

/*============= WORK SECTION AREA ===============*/
.work-section-area {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.work-section-area .work-single-boxarea {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 30px;
}

.work-section-area .work-single-boxarea:hover .icons .elements14 {
	animation-name: animation-7;
	animation-duration: 90s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.work-section-area .work-single-boxarea:hover .icons .icon {
	transform: rotateY(-180deg);
	transition: var(--transition-4s);
}

.work-section-area .work-single-boxarea .elements12 {
	position: absolute;
	right: -115px;
	top: 25px;
}

@media (max-width: 767px) {
	.work-section-area .work-single-boxarea .elements12 {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.work-section-area .work-single-boxarea .elements12 {
		display: block;
	}
}

.work-section-area .work-single-boxarea .elements13 {
	position: absolute;
	right: -115px;
	top: 25px;
}

@media (max-width: 767px) {
	.work-section-area .work-single-boxarea .elements13 {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.work-section-area .work-single-boxarea .elements13 {
		display: none;
	}
}

.work-section-area .work-single-boxarea .icons {
	position: relative;
	z-index: 1;
	display: inline-block;
}

.work-section-area .work-single-boxarea .icons .elements14 {
	position: absolute;
	width: 110px;
	height: 110px;
	max-width: 110px;
	max-height: 110px;
	left: -15px;
	top: -15px;
}

.work-section-area .work-single-boxarea .icons .icon {
	height: 80px;
	width: 80px;
	font-size: 32px;
	text-align: center;
	line-height: 80px;
	display: inline-block;
	transition: var(--transition-4s);
	background: var(--icon-highlight-color);
	border-radius: 50%;
	margin: 0 auto;
}

.work-section-area .work-single-boxarea .conten-area {
	text-align: center;
}

.work-section-area .work-single-boxarea .conten-area a {
	color: var(--primary-color);
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	display: inline-block;
	transition: var(--transition-4s);
}

.work-section-area .work-single-boxarea .conten-area a:hover {
	color: var(--icon-highlight-color);
	transition: var(--transition-4s);
}

.work-section-area .work-single-boxarea .conten-area p {
	color: var(--black-color);
	text-align: center;
	transition: var(--transition-3s);
}

.work5-section-area {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.work5-section-area .work-single-boxarea {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 30px;
}

.work5-section-area .work-single-boxarea:hover .icons .elements14 {
	animation-name: animation-7;
	animation-duration: 90s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.work5-section-area .work-single-boxarea:hover .icons .icon {
	transform: rotateY(-180deg);
	transition: var(--transition-4s);
}

.work5-section-area .work-single-boxarea .elements12 {
	position: absolute;
	right: -115px;
	top: 25px;
}

@media (max-width: 767px) {
	.work5-section-area .work-single-boxarea .elements12 {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.work5-section-area .work-single-boxarea .elements12 {
		display: block;
	}
}

.work5-section-area .work-single-boxarea .elements13 {
	position: absolute;
	right: -115px;
	top: 25px;
}

@media (max-width: 767px) {
	.work5-section-area .work-single-boxarea .elements13 {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.work5-section-area .work-single-boxarea .elements13 {
		display: none;
	}
}

.work5-section-area .work-single-boxarea .icons {
	position: relative;
	z-index: 1;
	display: inline-block;
}

.work5-section-area .work-single-boxarea .icons .elements14 {
	position: absolute;
	width: 110px;
	height: 110px;
	max-width: 110px;
	max-height: 110px;
	left: -15px;
	top: -15px;
}

.work5-section-area .work-single-boxarea .icons .icon {
	height: 80px;
	width: 80px;
	text-align: center;
	line-height: 80px;
	display: inline-block;
	transition: var(--transition-4s);
	background: var(--ancient-color);
	border-radius: 50%;
	margin: 0 auto;
}

.work5-section-area .work-single-boxarea .conten-area {
	text-align: center;
}

.work5-section-area .work-single-boxarea .conten-area a {
	color: var(--primary-color);
	text-align: center;
	font-family: var(--heading-font);
	font-style: normal;
	display: inline-block;
	transition: var(--transition-4s);
}

.work5-section-area .work-single-boxarea .conten-area a:hover {
	color: var(--icon-highlight-color);
	transition: var(--transition-4s);
}

.work5-section-area .work-single-boxarea .conten-area p {
	color: var(--black-color);
	text-align: center;
	font-family: var(--body-font);
	line-height: 26px;
	transition: var(--transition-3s);
}

@keyframes animation-7 {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Stategic Advantage section */
.strategic-advantages-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.strategic-advantages-section .strategic-header {
	text-align: center;
	margin-bottom: 60px;
}

.strategic-advantages-section .strategic-header .subtitle-tag {
	margin-bottom: 10px;
}

.strategic-advantages-section .strategic-header .main-heading {
	color: var(--primary-color);
	font-family: var(--heading-font);
	max-width: 900px;
	margin: 20px auto 0;
}

.strategic-advantages-section .bg-text-overlay {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.strategic-advantages-section .bg-text-overlay::before {
	-webkit-text-fill-color: #ffffff00;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #0000000a;
	content: "Services";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(60px, 12vw, 220px);
	font-family: var(--bg-text-font);
	color: rgba(9, 36, 60, 0.03);
	white-space: nowrap;
}

.strategic-advantages-section .feature-point {
	align-items: center;
	text-align: center;
}

.strategic-advantages-section .left-col .feature-point {
    text-align: end;
    margin: 0 0 40px auto;
}

.strategic-advantages-section .right-col .feature-point {
	text-align: left;
	width: 400px;
	margin: 0 auto 40px 0;
}

.strategic-advantages-section .feature-icon-wrapper {
	display: inline;
	align-items: center;
	font-size: 62px;
	color: var(--footer-medium-bg);
}

.strategic-advantages-section .feature-content .strategic-key-heading {
	font-family: var(--heading-font);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
}

@media (max-width: 991px) {
	.strategic-advantages-section {
		padding: 0 0 40px 0;
	}

	.strategic-advantages-section .strategic-header .main-heading {
		max-width: unset !important;
	}

	.strategic-advantages-section .center-image-container {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.strategic-advantages-section .right-col .feature-point,
	.strategic-advantages-section .left-col .feature-point {
		width: unset !important;
		text-align: center;
	}

	.strategic-advantages-section .bg-text-overlay {
		top: 100px;
	}
}

/* Cta Section */
.cta-section {
	background: url('assets/images/cta-parinidhi.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 115vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 0;
	position: relative;
}

.cta-content-wrapper {
	padding: 0 15px;
}

.cta-section .cta-heading {
	font-family: var(--heading-font);
	font-size: 64px;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.cta-section p {
	font-family: var(--body-font);
	margin-bottom: 40px;
}

@media (max-width: 768px) {
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #000000 !important;
    font-weight: 600;
    text-decoration: none!important;
    border-right: 1px solid;
}
#sequence {
    width: 100%;
    float: left;
    background: #abdb45;
    position: fixed;
    bottom: 0;
    z-index: 100;
    padding: 0;
    color: #000 !important;
    margin: 0!important;
}
	.cta-section {
		height: 80vh;
		background-position: right center;
	}

	.cta-section .cta-heading {
		font-size: 2rem;
	}
}

/* Testimonials Section */
.testimonial-section {
	padding: 80px 0;
}

.testimonial-section .testimonial-col-left {
	position: relative;
}

.testimonial-section .client-info-section {
	padding: 40px;
	background-color: var(--white-color);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	z-index: 10;
}

.testimonial-section .client-image-wrapper {
	position: relative;
	margin-bottom: 20px;
}

.testimonial-section .client-image {
	width: 100%;
	max-width: 90%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-section .rating {
	color: orange;
	margin-bottom: 20px;
}

.testimonial-section .testimonial-quote {
	line-height: normal;
	margin-bottom: 30px;
}

.testimonial-section .client-name {
	font-family: var(--heading-font);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 4px;
}

.testimonial-section .client-title {
	font-size: 1rem;
	color: #666;
}

.testimonial-section .owl-nav {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.testimonial-section .owl-prev,
.testimonial-section .owl-next {
	background-color: var(--ancient-color) !important;
	color: var(--white-color) !important;
	width: 40px;
	height: 40px;
	border-radius: 50% !important;
	margin: 0 5px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem !important;
	transition: var(--transition-3s);
	border: none;
	outline: none;
	cursor: pointer;
}

.testimonial-section .owl-prev:hover,
.testimonial-section .owl-next:hover {
	background-color: var(--primary-color) !important;
}

.testimonial-section .main-heading {
	margin-bottom: 25px;
}

.testimonial-section .stats-card {
	background-color: var(--light-bg-icon-contact);
	padding: 30px;
	border-radius: 12px;
	text-align: left;
	height: 100%;
}

.testimonial-section .stats-card i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--black-color);
	margin-bottom: 10px;
	height: 60px;
	width: 60px;
	background: white;
	border-radius: 50%;
}

.testimonial-section .stat-value {
	font-family: var(--heading-font);
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

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

@media (min-width: 992px) {
	.testimonial-section .client-info-section-wrapper {
		position: absolute;
		bottom: -50px;
		right: 25px;
		z-index: 10;
		width: 450px;
	}

	.testimonial-section .testimonial-col-left {
		margin-top: 40px;
	}
}

@media (max-width: 991px) {
	.testimonial-section {
		padding: 40px 0;
	}

	.testimonial-section .client-image {
		max-width: 100%;
	}

	.testimonial-section .client-info-section {
		margin-bottom: 30px;
	}

	.testimonial-section .owl-nav {
		justify-content: center;
		padding-right: 0;
		bottom: -20px;
		right: -70%;
		left: unset;
	}
}

/* Contact section */
.contact-faq-section {
	padding: 80px 0;
}

.contact-faq-section .main-heading {
	font-family: var(--heading-font);
	margin-bottom: 40px;
}

.contact-faq-section .contact-inner {
	background: url('assets/images/contact-parinidhi-bg.png');
	padding: 80px 50px;
	background-position: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50px;
	margin: 0 25px;
}

.contact-faq-section .contact-form-div {
	background: white;
	padding: 40px;
	border-radius: 25px;
}

.parinidhi-contact-form .form-control {
	border-radius: 25px;
	padding: 15px 20px;
	border: 1px solid #e0e0e0;
	background-color: var(--white-color);
	color: var(--primary-color);
	font-size: 1rem;
	transition: var(--transition-3s);
	box-shadow: none !important;
}

.parinidhi-contact-form .form-control:focus {
	border-color: var(--ancient-color);
	background-color: var(--white-color);
}

.parinidhi-contact-form .message-textarea {
	height: 180px;
	resize: none;
}

.parinidhi-contact-form .send-button {
	display: inline-block;
	padding: 15px 40px;
	background-color: var(--ancient-color);
	color: var(--white-color);
	text-decoration: none;
	font-family: var(--body-font);
	font-size: 1rem;
	font-weight: 500;
	border-radius: 50px;
	transition: var(--transition-3s);
	border: none;
}

.parinidhi-contact-form .send-button:hover {
	background-color: var(--primary-color);
}


.contact-faq-section .faq-title.main-heading {
	margin-bottom: 25px;
}

.contact-faq-section .accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 15px;
}

.contact-faq-section .accordion-header {
	margin: 0;
}

.contact-faq-section .accordion-button {
	font-family: var(--heading-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	background-color: var(--white-color);
	border: none;
	padding: 20px;
	text-align: left;
	border-radius: 8px;
	box-shadow: none !important;
}

.contact-faq-section .accordion-button:not(.collapsed) {
	color: var(--ancient-color);
	background-color: var(--white-color);
}

.contact-faq-section .accordion-button::after {
	content: "\f067";
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	background-image: none !important;
	width: 35px;
	height: 35px;
	background-color: #f3f3f3;
	border-radius: 50%;
	transition: var(--transition-3s);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	color: var(--footer-medium-bg);
}

.contact-faq-section .accordion-button:not(.collapsed)::after {
	content: "\f068";
	background-color: var(--ancient-color);
	color: var(--white-color);
}

.contact-faq-section .accordion-body {
	padding: 0 20px 20px 20px;
}

.contact-faq-section .faq-item-number {
	font-family: var(--heading-font);
	font-size: 20px;
	color: var(--primary-color);
	margin-right: 15px;
}

@media (max-width: 991px) {
	.contact-faq-section .faq-title.main-heading {
		margin-top: 50px;
	}

	.contact-faq-section {
		padding: 0 0 40px 0;
	}

	.contact-faq-section .contact-inner {
		padding: 40px 20px;
		background-position: center;
		background-size: cover;
		margin: 0;
	}

	.contact-faq-section .contact-form-div {
		padding: 20px;
	}

	.parinidhi-contact-form .form-control {
		padding: 10px 20px;
	}

	.contact-faq-section .accordion-button {
		font-size: 16px;
	}
}

/* Blog Section */
.blog-section {
	padding: 80px 0;
	background-color: var(--light-bg-color-2);
}

.blog-section .section-header {
	margin-bottom: 50px;
	text-align: center;
}

.blog-section .subtitle-tag {
	background-color: var(--white-color);
}

.blog-section .main-heading {
	margin-bottom: 0;
}

.blog-section .blog-card {
	background-color: var(--white-color);
	border-radius: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	height: 100%;
	transition: var(--transition-3s);
}

.blog-section .blog-card:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
}

.blog-section .blog-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.blog-section .blog-card:hover .blog-image {
	transform: scale(1.05);
}

.blog-section .blog-meta {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #00000087;
	color: var(--white-color);
	padding: 5px 15px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	z-index: 2;
}

.blog-section .blog-meta i {
	margin-right: 5px;
	font-size: 0.8rem;
}

.blog-section .blog-content {
	padding: 25px;
}

.blog-section .blog-title {
	font-family: var(--heading-font);
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.3;
	margin-bottom: 15px;
}

.blog-section .blog-excerpt {
	margin-bottom: 25px;
}

.blog-section .read-more-link {
	display: inline-flex;
	align-items: center;
	color: var(--ancient-color);
	text-decoration: none;
	font-weight: 600;
	font-size: var(--para-font-size);
	transition: var(--transition-3s);
}

.blog-section .read-more-link i {
	margin-right: 10px;
	color: var(--white-color);
	background-color: var(--ancient-color);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-3s);
}
/* ================ 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.testimonials.text-center.aos-init.aos-animate {
    margin: 0 0 70px 0;
}
.plant-machinery h2 {
    font-size: 2.2rem;
    color: #111;
}
.plant-machinery .underline {
    width: 60px;
    height: 4px;
    background-color: #d12727;
    border: none;
}
.plant-machinery p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    color: #444;
}
img.img-fluid.rounded.shadow-sm {
    margin: 26px 0 0 0;
}
section.ancient-products .product-badge .badge {
    background:  var(--secondary-color);
    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: rgb(47 68 29 / 57%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.btn-group>.btn-group:not(:first-child), .btn-group>:not(.btn-check:first-child)+.btn {
    margin-left: calc(var(--bs-border-width) * -1);
    background-color: var(--blue-color);
	color:#fff;
}
.products-table-view h5 a {
    color: var(--secondary-color);

}
.products-table-view a.btn {
	background-color: var(--secondary-color);
	border:1px solid var(--secondary-color);
}
.product-share .cta-button {
    background-color: #4ea054;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    border: 1px solid var(--secondary-color);
    text-decoration: none;
}
.product-share .cta-button:hover {
    background-color: #000000;
    color: #fff;
}
.meta-item i {
    color: var(--blue-color);
}
.ancient-product-info .product-badge .badge {
    background: #4ea054;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
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(--blue-color);
  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: #4ea054;
    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;
    text-decoration: none;
}

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:  #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 194, 74, 0.3);
    text-decoration: none;
}

/* ================ 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: 1.2rem;
    margin-bottom: 10px;
    color:  var(--secondary-color);
}

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(--blue-color);
    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) {
	.main-imager {
    position: unset !important;
}
    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(--dark-bg);
    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: rgb(106 157 211 / 50%);
    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(--secondary-color) ;
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 15px;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
    .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: rgb(194 74 162 / 5%);
    }

    .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;
    }
h3.product-title {
    text-transform: uppercase;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    height: 58vh;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    border: 1px solid #c5c5c5;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    height: 100px;
}
input.wpcf7-form-control.wpcf7-tel.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-tel {
    width: 100%;
}
.modal-content {
    margin: 139px 0 0 0;
}
button.btn.btn-contact.mr-4.mb-3 a:hover {
    color: #8a8a8a;
    text-decoration: none;
}
a button.btn.btn-contact.mr-4.mb-3  {
    color: #fff;
}
a button.carousel-control-prev {
    display: none;
}
a.btn.btn-primary.btn-lg.mr-4:hover {
    color: #c7c7c7 !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
}
a.bio-btn:hover {
    color: #d5d5d5;
    text-decoration: none;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-default {
    width: 100%;
    padding: 10px;
}
input.wpcf7-form-control.wpcf7-tel.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-tel {
    border: 1px solid #a3a3a3;
    padding: 10px;
    border-radius: 4px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #c5c5c5;
}


.blog-card-image-container img {
    object-fit: fill !important;
}

.blog-section .read-more-link:hover {
	color: var(--primary-color);
}

.blog-section .read-more-link:hover i {
	background-color: var(--primary-color);
}

/* --- Global Footer Styling --- */
.footer-cta-section {
	background-color: var(--black-color);
	padding: 80px 0 100px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.footer-cta-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("assets/images/footer-element.png");
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	z-index: -1;
}

.footer-cta-section .footer-main-intro-heading {
	color: var(--white-color);
	margin-bottom: 40px;
}

.subscribe-form {
	display: flex;
	justify-content: center;
	max-width: 600px;
	margin: 0 auto;
}

.subscribe-input {
	background-color: var(--black-color);
	border: 1px solid var(--footer-medium-bg);
	color: var(--footer-text-color);
	padding: 15px 20px;
	border-radius: 5px 0 0 5px;
	width: 100%;
	outline: none;
	transition: var(--transition-3s);
}

.subscribe-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.subscribe-btn {
	background-color: var(--ancient-color);
	color: var(--white-color);
	font-weight: 700;
	border: none;
	padding: 15px 30px;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	transition: var(--transition-3s);
	white-space: nowrap;
}

.subscribe-btn:hover {
	background-color: var(--icon-highlight-color);
}

/* --- Main Footer --- */
.main-footer-parinidhi {
	background: var(--black-color);
}

.main-footer-parinidhi .main-footer {
	background-color: var(--footer-medium-bg);
	padding: 60px 40px 30px;
	color: var(--footer-text-color);
	border-radius: 30px;
}

.main-footer-parinidhi img.footer-logo {
	width: 80%;
}

.main-footer-parinidhi .footer-col-title {
	color: var(--white-color);
	font-family: var(--heading-font);
	font-size: 24px;
	margin-bottom: 25px;
}

.main-footer-parinidhi .footer-description {
	margin-top: 20px;
	line-height: 1.7;
}

/* Footer Links */
.main-footer-parinidhi .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.main-footer-parinidhi .footer-links ul li a {
	color: var(--footer-text-color);
	text-decoration: none;
	transition: var(--transition-3s);
}

.main-footer-parinidhi .footer-links ul li a:hover {
	color: var(--ancient-color);
}

/* Contact Section */
.main-footer-parinidhi .contact-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-footer-parinidhi .contact-info-list li {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
}

.main-footer-parinidhi .contact-info-list li i {
	color: var(--ancient-color);
	font-size: 1.1rem;
	margin-right: 15px;
	margin-top: 4px;
}

.main-footer-parinidhi .contact-detail strong {
	display: block;
	color: var(--white-color);
	font-weight: 500;
	margin-bottom: 5px;
}

.main-footer-parinidhi .contact-detail a {
	color: var(--footer-text-color);
	text-decoration: none;
	transition: var(--transition-3s);
}

.main-footer-parinidhi .contact-detail a:hover {
	color: var(--ancient-color);
}

/* Social Icons */
.main-footer-parinidhi .social-icons {
	margin-top: 30px;
}

.main-footer-parinidhi .social-icons a {
	color: var(--footer-text-color);
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border: 1px solid var(--footer-text-color);
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	transition: var(--transition-3s);
}

.main-footer-parinidhi .social-icons a:hover {
	color: var(--ancient-color);
	border-color: var(--ancient-color);
}

/* Copyright */
.copyright {
	border-top: 1px solid var(--footer-dark-bg);
	padding-top: 20px;
	margin-top: 30px;
	text-align: center;
	color: var(--white-color);
}

@media (max-width: 991px) {
	.footer-cta-section {
		padding: 60px 0 70px;
	}

	.footer-cta-section .subscribe-form {
		flex-direction: column;
		padding: 0 15px;
	}

	.footer-cta-section .subscribe-input {
		border-radius: 5px 5px 0 0;
		margin-bottom: 10px;
	}

	.footer-cta-section .subscribe-btn {
		border-radius: 0 0 5px 5px;
		padding: 12px 30px;
	}

	.main-footer-parinidhi .main-footer .row>div {
		margin-bottom: 40px;
	}

	.main-footer-parinidhi .main-footer {
		padding: 60px 20px 30px;
	}
}

