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

:root {
	--ancient-color: #d6a73d;
	--main-ancient-color: #474A53;
	--desc-color: #556E80;
	--dark-bg-color: #212530;
	--white-color: #ffffff;
	--light-bg-color: #DEDEDE;
	--dark-color: #152833;
	--transition-3s: all 0.3s ease;
	--transition-5s: all 0.5s ease;

}

.container-fluid {
	width: 90%;
}

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

body {
	margin: 0;
	padding: 0;
	list-style: 1.8;
	font-size: 16px;
	color: var(--main-ancient-color);
	font-family: 'DM Sans', sans-serif;

}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Montserrat", sans-serif;

}

a {
	text-decoration: none;
}


/* header */
header {
	padding: 10px 0;
}

.header-logo {
	height: 70px;
}

.header-btn {
	background-color: var(--dark-color);
	color: #fff;
	padding: 8px 18px;
	display: inline-flex;
	align-items: center;
	border-radius: 25px;
	border: 2px solid var(--dark-color);
	transition: 0.3s;
}

.header-btn i {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff4d;
	margin-left: 8px;
	border-radius: 50%;
}

.header-btn:hover {
	color: var(--dark-color);
	background-color: transparent;
	border: 2px solid var(--dark-color);
}

.header-btn:hover.header-btn i {
	background-color: var(--dark-color) !important;
	color: #fff;
}









.about-img-box img {
	width: 90%;
	margin-left: auto;
}

.experience-box {
	position: absolute;
	top: 40%;
	right: 0;
	background-color: #fff;
	padding: 20px;
	border-radius: 15px;
	text-align: center;
	overflow: hidden;
}

.circle {
	position: absolute;
	background-color: var(--ancient-color);
	width: 130px;
	height: 130px;
	border-radius: 50%;
	right: -55px;
	top: -25px;
}

.experience-box h1 {
	font-size: 55px;
	font-style: italic;
	color: var(--dark-color);
	position: relative;
}
.experience-box span {
	font-size: 55px;
	font-style: italic;
	color: var(--dark-color);
	position: relative;
	font-family: 'Playfair Display', serif;
}
.experience-box p {
	color: var(--dark-color);
	position: relative;
	font-size: 24px;
	font-family: 'Playfair Display', serif;
}
.experience-box h4 {
	color: var(--dark-color);
	position: relative;
}

.icon-img {
	width: 50px;
}

.about-content h1 {
	color: var(--dark-color);
	margin-bottom: 25px;
	font-size: 1.3rem;
	font-weight: 600;
}

.highlight-text {
	font-style: italic;
	text-decoration: underline;
}

.about-content p {
	line-height: 30px;
}

.about-content ul {
	list-style: none;
	padding: 0;
}

.about-content ul li {
	padding: 8px 5px;
	color: var(--dark-color);
	font-weight: bold;
}

.about-btn {
	background-color: var(--dark-color);
	color: #fff;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	border-radius: 25px;
	border: 2px solid var(--dark-color);
	transition: 0.3s;
}

.about-btn i {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff4d;
	margin-left: 8px;
	border-radius: 50%;
}

.about-btn:hover {
	color: var(--dark-color);
	background-color: transparent;
	border: 2px solid var(--dark-color);
}

.about-btn:hover.about-btn i {
	background-color: var(--dark-color) !important;
	color: #fff;
}

.about-no i {
	color: var(--ancient-color);
	margin: 0 5px;
}

.about-no {
	color: var(--dark-color);
	font-size: 20px;
	margin-left: 10px;
}

.about-no:hover {
	color: var(--ancient-color);
}




/* jm expertise section */
.highlight-intro {
	color: var(--ancient-color);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}


.jm-service-card.style-one {
	border-top: 2px solid var(--ancient-color);
	margin-bottom: 40px;
	cursor: pointer;
	transition: var(--transition-3s);
}

.jm-service-card.style-one .jm-image-wrapper {
	position: relative;
	overflow: hidden;
}

.jm-service-card.style-one .jm-image-wrapper .jm-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	left: 0;
	top: 100%;
	opacity: 0;
	background: var(--main-ancient-color);
	z-index: 1;
	transition: var(--transition-5s);
}

.jm-service-card.style-one .jm-image-wrapper img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.jm-service-card.style-one .jm-service-content {
	position: relative;
	z-index: 10;
	border-left: 1px solid var(--border-color-dark);
	border-right: 1px solid var(--border-color-dark);
	border-bottom: 1px solid var(--border-color-dark);
	padding: 25px 20px 20px;
	text-align: center;
	border-radius: 0 0 10px 10px;
	background: var(--white-color);
}

.jm-service-card.style-one .jm-service-content.has-icon {
	padding: 40px 20px 20px;
}

.jm-service-card.style-one .jm-service-content .jm-icon-box {
	position: absolute;
	top: -33px;
	left: 0;
	width: 60px;
	line-height: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--ancient-color);
	text-align: center;
	right: 0;
	margin: auto;
	z-index: 2;
	color: var(--white-color);
	font-size: 24px;
}

.jm-service-card.style-one .jm-service-content .service-title  {
	display: block;
	color: var(--dark-color);
	line-height: 28px;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	text-decoration: none;
	transition: var(--transition-3s);
}

.jm-service-card.style-one .jm-service-content p {
	margin-bottom: 30px;
	color: var(--main-ancient-color);
	font-size: 15px;
	line-height: 24px;
}

.jm-service-card.style-one .jm-service-content .jm-read-more {
	position: absolute;
	width: 150px;
	height: 50px;
	background: var(--ancient-color);
	text-align: center;
	line-height: 50px;
	color: var(--white-color);
	border-radius: 50px;
	left: 0;
	right: 0;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	margin: auto;
	font-family: var(--font-secondary);
	bottom: -24px;
	text-decoration: none;
	transition: var(--transition-3s);
}

.jm-service-card.style-one .jm-service-content .jm-read-more i {
	margin-left: 8px;
	font-size: 14px;
	transition: var(--transition-3s);
}

.jm-service-card.style-one:hover .jm-image-wrapper .jm-overlay {
	top: 0;
	opacity: 0.8;
}

.jm-service-card.style-one:hover .service-title a {
	color: var(--ancient-color);
}

.jm-service-card.style-one:hover .jm-read-more {
	background: var(--dark-color);
}

.jm-service-card.style-one:hover .jm-read-more i {
	transform: translateX(5px);
}

.jm-section-intro .main-heading {
	margin-bottom: 15px;
	color: var(--dark-color);
	font-weight: 600;
	font-size: 1.3rem;
}

.jm-section-intro .desc-main {
	color: var(--desc-color);
	font-family: var(--font-third);
	font-size: 17px;
	line-height: 27px;
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.jm-service-card.style-one .jm-service-content .service-title {
		font-size: 18px;
	}

	.jm-service-card.style-one .jm-image-wrapper img {
		height: 180px;
	}
}


/* product section  */
.practice-section {
	background-color: var(--dark-color);
	padding: 80px 0;
}

.section-header {
	color: var(--white-color);
}

.section-header .subtitle {
	font-size: 0.95rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ancient-color);
	margin-bottom: 10px;
	font-weight: 500;
}

.section-header .title {
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 25px;
}

.title span {
	position: relative;
	display: inline-block;
}

/* .title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 70%;
            height: 2px;
            background-color: var(--ancient-color);
        } */

.custom-nav-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--ancient-color);
	color: var(--white-color);
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: var(--transition-3s);
	outline: none !important;
}

.custom-nav-btn:hover {
	background-color: var(--ancient-color);
	color: var(--dark-color);
}

/* .dot-accent {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--ancient-color);
            position: relative;
            top: -15px;
            left: 20px;
            display: inline-block;
        } */

.service-card {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	height: 450px;
	margin: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: var(--transition-5s);
}

.card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('https://placehold.co/600x450/212530/ffffff/png?text=Service+Image+Placeholder');
	transition: var(--transition-5s);
}

.service-card:hover .card-bg {
	transform: scale(1.05);
}

.card-content {
	position: relative;
	height: 100%;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--white-color);
}

/* Unique class name for card icons */
.service-card-icon {
	font-size: 3rem;
	/* Adjusted for Font Awesome size */
	color: var(--dark-color);
}

.card-title {
	font-size: 28px;
	font-weight: 600;
	/* margin-top: 20px; */
	line-height: 30px;
	margin-bottom: 0;
	color: #fff;
}

.card-arrow-btn {
	position: absolute;
	bottom: 25px;
	right: 25px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--white-color);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-3s);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-arrow-btn:hover {
	background-color: var(--ancient-color);
}

.card-arrow-btn svg {
	color: var(--dark-color);
	transition: var(--transition-3s);
}

.card-arrow-btn:hover svg {
	color: var(--white-color);
}

.owl-theme .owl-nav,
.owl-theme .owl-dots {
	display: none !important;
}

@media (max-width: 991.98px) {
	.section-header {
		text-align: center;
		margin-bottom: 40px;
	}

	.section-header .title {
		font-size: 2rem;
	}

	.title span::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.dot-accent {
		display: none;
	}

	.nav-controls {
		justify-content: center;
		margin-top: 20px !important;
	}
}


/* thirdparty section  */

section.mfg-section {
	padding: 60px 0 100px;
}

.mfg-subtitle {
	color: var(--ancient-color);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.mfg-main-title {
	line-height: 1.1;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 25px;
}

.mfg-description {
	color: var(--main-ancient-color);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 40px;
}

.mfg-progress-item {
	margin-bottom: 25px;
}

.mfg-progress-label {
	display: flex;
	justify-content: space-between;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 5px;
	font-size: 0.95rem;
}

.mfg-progress-track {
	height: 4px;
	background-color: var(--light-bg-color);
	border-radius: 0;
	overflow: visible;
}

.mfg-progress-bar-fill {
	background-color: var(--dark-color);
	transition: width 1s ease-in-out;
	border-radius: 0;
}

.mfg-contact-btn {
	background-color: var(--ancient-color);
	color: var(--white-color);
	font-weight: 600;
	padding: 15px 30px;
	border-radius: 5px;
	border: none;
	transition: var(--transition-3s);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.mfg-contact-btn:hover {
	background-color: var(--dark-color);
	color: var(--white-color);
}

.mfg-arrow-btn {
	background-color: var(--ancient-color);
	color: var(--white-color);
	width: 50px;
	height: 50px;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	transition: var(--transition-3s);
}

.mfg-arrow-btn:hover {
	background-color: var(--dark-color);
	color: var(--white-color);
}

.mfg-image-container {
	position: relative;
	height: 100%;
	min-height: 600px;
}

.mfg-main-image-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.mfg-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.mfg-small-image-wrapper {
	position: absolute;
	left: -50px;
	bottom: -50px;
	width: 50%;
	max-width: 300px;
	height: 250px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	overflow: hidden;
	z-index: 10;
}

.mfg-small-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.mfg-experience-badge {
	position: absolute;
	top: 15%;
	left: -50px;
	background-color: #fff;
	padding: 20px;
	border-radius: 15px;
	text-align: center;
	overflow: hidden;
}

.mfg-experience-badge span {
	font-size: 55px;
	font-style: italic;
	color: var(--dark-color);
	position: relative;
	font-family: 'Playfair Display', serif;
}
.mfg-experience-badge h1 {
	font-size: 55px;
	font-style: italic;
	color: var(--dark-color);
	position: relative;
	
}
.mfg-experience-badge p {

	color: var(--dark-color);
    position: relative;
    font-size: 24px !important;
    font-family: 'Playfair Display', serif;
}


.mfg-experience-badge h2 {
	color: var(--dark-color);
	position: relative;
}

.mfg-experience-badge .circle {
	position: absolute;
	background-color: var(--ancient-color);
	width: 130px;
	height: 130px;
	border-radius: 50%;
	left: -55px;
	top: -25px;
}


@media (max-width: 991.98px) {
	.mfg-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.mfg-main-title {
		font-size: 2.5rem;
	}

	.mfg-image-container {
		min-height: 500px;
		margin-top: 50px;
	}

	.mfg-main-image-wrapper {
		position: relative;
	}

	.mfg-small-image-wrapper {
		bottom: -50px;
		left: 10%;
		transform: translateX(-50%);
		width: 80%;
		max-width: none;
		height: 200px;
	}

	.mfg-experience-badge {
		display: none;
	}
}

@media (max-width: 576px) {
	.mfg-main-title {
		font-size: 2rem;
	}

	.mfg-small-image-wrapper {
		bottom: -50px;
		height: 150px;
	}

	.mfg-nav-buttons {
		justify-content: center;
	}

	.mfg-image-container {
		min-height: 350px;
	}
}


/* why choose us  */


section.expertise-section {
	padding: 0;
	background-color: #282f3b;
}

.why-sub-heading {
	font-size: 0.95rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ancient-color);
	margin-bottom: 10px;
	font-weight: 500;
	text-align: right;
}
.title-content h4 {
    font-size: 32px !important;
}
section.expertise-section .overlay {
	background: linear-gradient(300deg, #282f3b 40%, rgba(0, 0, 0, 0.09) 100%);
	opacity: 0.9;
}

section.expertise-section .simple-parallax {
	min-height: 600px;
}

section.expertise-section .title-video-row {
	padding-bottom: 100px;
}

section.expertise-section .expertise-boxes-row {
	margin-top: 30px;
}

section.expertise-section .expertise-box {
	position: relative;
	padding: 40px 33px;
	cursor: pointer;
	overflow: hidden;
}

section.expertise-section .expertise-box::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 10px;
	left: 0;
	bottom: 0;
	background: #282f3b;
	transition: all 0.5s ease;
	z-index: -1;
}

section.expertise-section .expertise-box:hover::before {
	background: var(--ancient-color);
	height: 100%;
}

section.expertise-section .step-number {
	position: relative;
	z-index: 1;
}

section.expertise-section .step-number h1 {
	font-size: 60px;
	line-height: 60px;
	color: #fff;
	font-weight: 700;
	margin-right: 15px;
}
section.expertise-section .step-number p {
	font-size: 60px;
	line-height: 60px;
	color: #fff;
	font-weight: 700;
	margin-right: 15px;
	font-family:'Playfair Display', serif;
}

section.expertise-section .expertise-title {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

/* section.expertise-section .expertise-title a {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	text-decoration: none;
}
 */
section.expertise-section .expertise-title p {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	text-decoration: none;
	margin-bottom:0;
}

section.expertise-section .expertise-box:not(:last-child)::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, 0.6);
	width: 1px;
	height: 1000px;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.jm_theme_btn.two {
	display: inline-block;
	padding: 0px 25px;
	border-radius: 10px 0px 10px 0px;
	background: transparent;
	color: var(--ancient-color);
	border: 1px solid var(--ancient-color);
	line-height: 50px;
	min-height: 50px;
	min-width: 160px;
	text-align: center;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	font-weight: 600;
	font-size: 15px;
}

.jm_theme_btn.two:hover {
	background: var(--ancient-color);
	color: var(--white-color);
	border-radius: 0px 10px 0px 10px;
}

@media (max-width: 991.98px) {
	section.expertise-section .title-content {
		text-align: center !important;
	}

	section.expertise-section .expertise-box {
		margin-bottom: 30px;
	}

	section.expertise-section .expertise-box:not(:last-child)::after {
		display: none;
	}
}

section.expertise-section .z-index-1 {
	z-index: 1;
}

section.expertise-section .text-white-70 {
	color: rgba(255, 255, 255, 0.7);
}




/* faq section */
/* faq section */
.faq-section-wrapper {
	padding: 4rem 0;
	background-color: #f8f9fa;
}

.faq-content-area {
	background-color: #ffffff;
	border-radius: 1rem;
	/* padding: 2rem; */
	border-bottom: 6px solid #D8DDE2;
}

.faq-image-column-wrapper {
    position: relative;
    padding: 10px;
}

.faq-main-image {
	width: 100%;
	height: auto;
	border-radius: 25px;
	object-fit: cover;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quality-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: var(--ancient-color);
	color: #ffffff;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	border: 2px solid #ffffff;
	z-index: 10;
}

.quality-badge::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 2px dashed var(--dark-color);
	border-radius: 0.75rem;
	z-index: -1;
}

.quality-badge span {
	font-size: 1.1rem;
}

.faq-text-column-wrapper {
	/* New wrapper for the text column content */
	padding: 1rem;
	/* Padding for content inside the column */
}

.faq-breadcrumb {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ancient-color);
	margin-bottom: 10px;
	font-weight: 500;
}

.faq-breadcrumb svg {
	width: 16px;
	height: 16px;
	fill: #0d6efd;
	margin-right: 0.5rem;
}

.faq-main-title {
	font-size: 35px;
	font-weight: 500;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.faq-subtitle {
	font-size: 15px;
	color: var(--main-ancient-color);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.accordion-item {
	border: none;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header .accordion-button {
	background-color: #ffffff;
	color: var(--dark-color);
	font-weight: 600;
	border: 1px solid #ddd;
	font-size: 16px;
	padding: 15px 20px;
	border-radius: 0.5rem;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.accordion-header .accordion-button:not(.collapsed) {
	background-color: #e9ecef;
	color: var(--dark-color);
	box-shadow: none;
}

.accordion-header .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.accordion-header .accordion-button::after {
	background-image: none;
	content: '+';
	font-weight: bold;
	transform: rotate(0deg);
	transition: transform 0.2s ease-in-out;
	font-size: 1.5rem;
	line-height: 1;
}

.accordion-header .accordion-button:not(.collapsed)::after {
	content: '-';
	transform: rotate(0deg);
}

.accordion-body {
	padding: 1rem 1.5rem;
	background-color: #f8f9fa;
	color: #495057;
	font-size: 14px;
	border-top: 1px solid #dee2e6;
}
.accordion-header {
    margin-bottom: 0;
    font-family: 'Playfair Display';
}

@media (max-width: 991px) {
	.faq-main-title {
		font-size: 1.8rem;
	}
}


/* contact section */

.section-quote-cta {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0 !important;
	background-position: center;
}

.contact-overlay {
	padding: 80px 0;
	background-color: #00000057;
}

/* .quote-cta-container {
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 0.5rem;
	overflow: hidden;
} */

/* Left side: Form Card */
.quote-form-card {
	background-color: #00000038;
	padding: 4rem;
	height: 100%;
	border-radius: 25px;
}

.quote-title {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.quote-form-card .form-control,
.quote-form-card .form-select {
	height: 50px;
	border-radius: 0.5rem;
	border: 1px solid #00000021;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	/* Custom shadow to match the image */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.form-checkbox-group {
	margin-top: var(--spacing-md);
	padding-left: 0.5rem;
}

.form-check-label {
	font-size: 0.95rem;
	color: var(--color-text-body);
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
	background-color: var(--ancient-color);
	color: #fff;
	font-weight: 600;
	font-size: 1.05rem;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.btn-quote-request:hover {
	background-color: #e65c2b;
	/* Slightly darker orange */
	color: var(--color-primary-dark);
}

.btn-quote-request svg {
	width: 20px;
	height: 20px;
	stroke-width: 3;
	color: var(--color-primary-dark);
}

/* Right side: Tracking and Contact Block */
.tracking-cta-block {
	/* background-color: var(--color-tracking-dark); */
	height: 100%;

	position: relative;
	overflow: hidden;
	color: var(--color-light);
}



.tracking-content {
	position: relative;
	padding: 50px;
	padding-bottom: 5rem;
	/* Space for the contact box */
	z-index: 2;
	height: calc(100% - 150px);
	/* Fill most of the space above contact box */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.tracking-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ancient-color);
	margin-bottom: 20px;
}

.tracking-headline {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 2rem;
}

.tracking-body {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

/* Contact Box */
/* .contact-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--ancient-color);
	padding: 50px;
	z-index: 3;
	border-radius: 25px;
} */
.contact-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 37px;
    z-index: 3;
    border-radius: 25px;
}

 iframe {
    width: 451px;
    height: 233px;
	 border-radius:10px;
}
.contact-item i {
    color: #f4c416;
}


.contact-box-left {
	color: var(--color-primary-dark);
}

.contact-question {
	font-size: 2rem;
	margin-bottom: 0.25rem;
	color: var(--dark-color);
}

.contact-label {
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 0;
}

.contact-number {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark-color);
	text-decoration: none;
	white-space: nowrap;
}

.contact-number:hover {
	color: var(--color-primary-dark);
	text-decoration: underline;
}



/* footer */
.footer-bg-dark {
	background-color: var(--dark-color) !important;
}

.footer-bg-darker {
	background-color: var(--dark-color) !important;
	border-top: 1px solid #979797a1;
}

.text-ancient {
	color: var(--ancient-color) !important;
}

.text-white-custom {
	color: var(--white-color) !important;
}
ul.footer-list {
    list-style: none;
    padding: 0;
}
ul.footer-list a{
	color: var(--white-color);
	text-decoration: none;
	transition: var(--transition-3s);
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 0.95rem;
}
ul.footer-list a:hover{
	color: var(--ancient-color);
}
.footer-nav-link,
.footer-contact-link {
	color: var(--white-color);
	text-decoration: none;
	transition: var(--transition-3s);
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 0.95rem;
}

.footer-nav-link:hover,
.footer-contact-link:hover {
	color: var(--ancient-color);
}

.footer-heading {
	color: var(--white-color);
	font-weight: bold;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-family: 'Playfair Display', serif;
}

.btn-ancient {
	background-color: var(--ancient-color);
	color: var(--white-color);
	font-weight: 700;
	padding: 10px 30px;
	border: none;
	transition: var(--transition-3s);
	border-radius: 0.375rem;
}

.btn-ancient:hover {
	background-color: #b08730;
	color: var(--white-color);
}

.since-text {
	color: var(--white-color);
	font-size: 2.25rem;
	font-weight: 300;
	line-height: 1;
}

.year-text {
	color: var(--ancient-color);
	font-weight: 700;
	margin-left: 0.5rem;
}

.cta-banner {
	font-size: clamp(1.5rem, 4vw, 3rem);
	font-weight: 700;
	padding: 3rem 0;
	background-color: var(--dark-color);
}

.copyright-text {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
}

.dev-link {
	color: var(--ancient-color);
	text-decoration: none;
	transition: var(--transition-3s);
}

.dev-link:hover {
	color: var(--white-color);
}

.social-icon {
	font-size: 1.25rem;
	color: var(--white-color);
	transition: var(--transition-3s);
}

.social-icon:hover {
	color: var(--ancient-color);
}

.contact-item {
	margin-bottom: 0.75rem;
}

.contact-icon {
	color: var(--white-color);
	font-size: 1.1rem;
	margin-right: 0.5rem;
	min-width: 20px;
}




@media (max-width: 991.98px) {
.container-fluid{
	width: 97%;
}
section{
	padding: 40px 0;
}
.about-img-box img {
    width: 100%;
}
.experience-box {
    top: unset;
    bottom: -42px;
    right: 10px;
}
img.cover-parallax {
    display: none;
}
.why-sub-heading {
    text-align: center;
}

section.expertise-section .expertise-box {
    border-top: 1px solid #ddd;
	    padding: 20px 20px;
}
.faq-text-column-wrapper {
    padding: 1rem 10px;
}
.contact-box {
    display: none;
}
.tracking-content {
    padding: 0;

}
.tracking-headline {
    font-size: 2rem;
}
.section-quote-cta {
    background-position: left;
}
.quote-form-card {
    padding: 2rem 1rem;
}
.tracking-cta-block {
    margin-bottom: 25px;
}
.footer-bg-dark {
    padding: 40px 0 20px !important;
}
.page-breadcrumb{
	padding: 80px 0 !important;
}
}




/*----------------------------------- innerpages ------------------------------------------*/
/* Breadcrumb css */
.page-breadcrumb {
		background: linear-gradient(135deg, #152833c9 0%, #25658b42 100%), url(images/breadcrum.jpeg);
		padding: 120px 0;
		color: #fff;
		position: relative;
		overflow: hidden;
		background-position: center;
	}
	.page-breadcrumb .container-fluid{
		position: relative;
		z-index: 99;
	}
	

	.page-breadcrumb::before {
		content: "";
		position: absolute;
		top: -50px;
		right: -50px;
		width: 200px;
		height: 200px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
	}

	.page-breadcrumb::after {
		content: "";
		position: absolute;
		bottom: -80px;
		left: -80px;
		width: 250px;
		height: 250px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
	}


	.page-breadcrumb span.breadcrumb_new a {
		color: var(--white-color);
	}

	.page-breadcrumb span.breadcrumb_new {
		color: var(--white-color);
	}

	.page-breadcrumb .extraa {
		margin: 54px 0;
	}



	 /* about us */
	 .inner-heading{
		color: var(--dark-color);
		margin-bottom: 25px;
	 }
        .about-page-main-section {
            background-color: #ffffff;
            border-radius: 15px;
            margin-top: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .about-page-main-section h2 {
            font-weight: 600;
            color: #06121F;
            margin-bottom: 2.5rem;
        }
        .about-content-block {
            margin-bottom: 3rem;
        }
        .about-content-block h3 {
            font-weight: 500;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }
        .about-content-block p {
            line-height: 1.7;
        }
        .about-image-container {
            border-radius: 15px;
            overflow: hidden;
        }
        .about-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        .vision-section {
            padding: 4rem 0;
            background-color: #d6a73d42;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        .vision-section h3 {
            font-weight: 600;
            color: var(--dark-color); 
            margin-bottom: 1.5rem;
        }
        .vision-section p {
            font-size: 15px;
            line-height: 1.8;
            color: #495057;
            max-width: 900px;
            margin: 0 auto;
        }

.inner-page-bg {
    background: #d3d3d3;
	border-radius: 15px;
}
.inner-highlight-card {
    border-radius: 12px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.inner-subtitle {
    color: var(--ancient-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}


/* ------------ WHY CHOOSE US ------------ */
.tpm-whychoose {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 40px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}




.tpm-card {
    background: #ffffff21;
    border-radius: 16px;
    padding: 25px 25px;
    text-align: center;
    transition: var(--transition-3s);
    height: 100%;
}

.tpm-card:hover {
  background: var(--ancient-color);
  color: var(--dark-color);
  transform: translateY(-6px);
}

.tpm-card i {
  font-size: 40px;
  color: var(--ancient-color);
  margin-bottom: 20px;
  transition: var(--transition-3s);
}

.tpm-card:hover i {
  color: var(--dark-color);
}

.tpm-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.tpm-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 768px) {
  .tpm-hero img {
    height: 320px;
  }
  .tpm-hero-text h1 {
    font-size: 2rem;
  }
}



/* product list page */
section#productlist {
    overflow: unset;
}
.side-bar-category {
    background-color: #152833;
    color: #fff;
    padding: 20px;
	border-radius: 15px 15px 0 0;
	position: sticky;
	top: 0;
}
.side-bar-category h3{
	margin-bottom: 25px;
}
ul#product-category {
    list-style: none;
    padding: 0;
}
ul#product-category li {
    padding: 5px;
    background: #f6f6f6;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
ul#product-category li:hover{
background: linear-gradient(135deg, var(--ancient-color), #d47b01);
    border-radius: 5px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
    transform: translateY(-2px);
}
ul#product-category li a{
	color: var(--dark-color);
}
ul#product-category li:hover a{
	color: #fff;
}
.side-button {
    background-color: transparent;
	color: var(--ancient-color);
    border: 1px solid var(--ancient-color);
    
    width: 100%;
    padding: 8px;
    border-radius: 8px;
	transition: 0.3s;
}
.side-button:hover{
	background-color: var(--ancient-color);
	color: #fff;
}


.product-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.product-list-table thead th {
    background-color: var(--dark-color);
    color: #ffffff;
    text-align: center;
    padding: 14px 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #fff !important;
	border-radius: 8px 8px 0 0;
}
.product-list-table tbody tr:nth-child(odd) {
    background-color: #d6a83d4b;
    color: #000;
}
.product-list-table tbody tr:nth-child(even) {
    background-color: #a47f2c73;
    color: #000;
}
.product-list-table tbody tr:hover {
    background-color: #152833;
    transition: background-color 0.3s ease;
	color: #fff;
}

/* mobile qiuck menu */
  #sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
 
}
#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}
#sequence {
    width: 100%;
    float: left;
    background: var(--dark-color);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}




/* textimonials section */

.testimonial_sec {
	position: relative;
	/* padding: 60px 0; */
}

.title_all_box .main-heading {
	margin-bottom: 30px;
	color: var(--dark-color);
	font-weight: 600;
}

.testimonial_sec.style_two .testimonial_box {
	position: relative;
	margin-bottom: 35px;
	text-align: center;
	padding: 40px;
	background: var(--white-color);
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	transition: var(--transition-3s);
}

.testimonial_sec.style_two .swiper {
	overflow: visible;
	padding: 20px;
}

.testimonial_sec.style_two .single_swiper .swiper-slide {
	opacity: 0.2;
	transition: var(--transition-3s);
}

.testimonial_sec.style_two .single_swiper .swiper-slide.swiper-slide-active {
	opacity: 1;
}

.testimonial_sec.style_two .testimonial_box::before {
	position: absolute;
	content: "";
	border: 1px dashed var(--light-bg-color);
	width: 98%;
	height: 97%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	border-radius: 10px;
}

.testimonial_sec.style_two .testimonial_box .authour_image {
	position: relative;
	padding-bottom: 20px;
	border-radius: 50%;
	margin: auto;
	display: inline-block;
}

.testimonial_sec.style_two .testimonial_box .authour_image i {
	position: absolute;
	width: 50px;
	height: 50px;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	color: var(--white-color);
	background: var(--ancient-color);
	top: 0;
	left: -19px;
	border-radius: 50%;
	z-index: 1;
}

.testimonial_sec.style_two .testimonial_box .authour_image img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid var(--light-bg-color);
}

.testimonial_sec.style_two .testimonial_box .comment {
    position: relative;
    font-size: 17px;
    line-height: 27px;
    color: var(--desc-color);
    font-family: var(--font-third);
    margin-bottom: 20px;
    top: 37px;
}

.swiper-button-prev,
.swiper-button-next {
	background: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--white-color);
	box-shadow: var(--box-shadow);
	color: var(--ancient-color);
	transition: var(--transition-3s);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 18px;
	font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: var(--ancient-color);
	color: var(--white-color);
}

.testimonial_sec.style_two .testimonial_box .rating {
	position: relative;
	margin-top: 25px;
	text-align: center;
}

.testimonial_sec.style_two .testimonial_box .rating ul {
	margin: 0;
	padding: 6px 15px;
	background: var(--light-bg-color);
	border: 1px solid var(--border-color-dark);
	display: inline-block;
	border-radius: 30px;
	text-align: center;
}

.testimonial_sec.style_two .testimonial_box .rating ul li {
	list-style: none;
	display: inline-block;
}

.testimonial_sec.style_two .testimonial_box .rating ul li span {
	margin: 0 3px;
	color: var(--ancient-color);
	font-size: 16px;
}

.testimonial_sec.style_two .testimonial_box .rating ul li span.empty {
	opacity: 0.4;
}

/* Responsive styles */
@media (max-width: 1199px) {
	.testimonial_sec.style_two .swiper {
		padding: 10px;
	}
}

@media (max-width: 767px) {
	.testimonial_sec.style_two .testimonial_box {
		padding: 30px 20px;
	}

	.testimonial_sec.style_two .testimonial_box .comment {
		font-size: 16px;
		line-height: 26px;
	}
	section.our-division {
    margin: 20px 0 0 0;
}
}

img.img-fluid.inner-img {
    width: 90%;
    height: auto;
    border-radius: 5px;
}

img.img-fluid.certificates-img {
    border: 1px solid #d6a73d;
    border-radius: 10px;
    box-shadow: 2px 4px 4px rgb(214 167 61 / 9%);
}
section.our-division {
    background: #eaeef1;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
}
section.our-division:hover{
	 transform: translateY(-5px);
}
img.img-fluid.certificates-img:hover {
    transform: translateY(-5px);
}

.divisions {
    height: 100px;
	box-shadow: 2px 4px 4px rgb(214 167 61 / 9%);
    background: #fffffc;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d6a73d;
    border-radius: 7px;
}
.divisions:hover{
	transform: translateY(-5px);
}

/* Archive Card Link */
.blog-card {
    transition: var(--transition-3s);
    background-color: var(--white-color) !important;
    color: var(--dark-color) !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.blog-image-container {
    border-radius: 8px 8px 0 0;
    aspect-ratio: 16 / 9; /* Ensure a consistent image ratio */
}

.blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition-5s);
}

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

/* Date Overlay */
.date-overlay {
    bottom: 10px;
    right: 10px;
    background-color: var(--ancient-color);
    color: var(--white-color);
    text-align: center;
    line-height: 1;
    min-width: 60px;
    border-radius: 4px;
    padding: 8px !important;
    font-weight: bold;
}

.day-replacement {
    font-size: 1.5rem;
}

.month-replacement {
    font-size: 0.9rem;
}

/* Title Replacement */
.blog-title-replacement {
    font-size: 1.4rem; /* Styled to look like a title */
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s;
}

.blog-card:hover .blog-title-replacement {
    color: var(--ancient-color);
}

/* Excerpt */
.blog-excerpt {
    font-size: 0.95rem;
    color: var(--desc-color);
}

/* Read More Button Replacement */
.read-more-btn-replacement {
    display: inline-block;
    color: var(--ancient-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-3s);
}

.blog-card:hover .read-more-btn-replacement {
    padding-left: 5px;
}


/* ==========================================================================
   Single Page Styles
   ========================================================================== */

/* Sidebar Widget Title Replacement */

.sidebar-widget.recent-blogs {
    background: var(--dark-color);
}

.widget-title-replacement {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-bg-color);
    border-bottom: 2px solid var(--ancient-color);
    padding-bottom: 10px;
    margin-bottom: 20px !important;
}

aside.single-sidebar {
    position: sticky;
    top: 34px;
}

aside.single-sidebar .recent-post-date {
    font-size: 0.8rem;
    color: var(--ancient-color);
    margin-top: 2px;
}

aside.single-sidebar .sidebar-contact-form {
    background: #f6f6f6;
    padding: 25px;
}

/* Adjust title to prevent text wrapping too tight */
aside.single-sidebar .post-title-replacement {
    margin-bottom: 2px;
}

/* Ensure the thumbnail size is consistent */
aside.single-sidebar .recent-blog-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

/* Recent Post Title Replacement */
.post-title-replacement {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-bg-color);
    line-height: 1.4;
    display: block;
    transition: color 0.3s;
}

.post-title-replacement:hover {
    color: var(--ancient-color);
}

/* Contact Now Button */
.contact-now-btn {
    background-color: var(--ancient-color);
    color: var(--white-color);
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    transition: var(--transition-3s);
    animation: pulse-animation 2s infinite;
}

.contact-now-btn:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    animation-play-state: paused;
}

/* Keyframe Animation for Contact Button */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 167, 61, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(214, 167, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 167, 61, 0);
    }
}
.read-more-cls {background: #152833; vertical-align: top; text-align: center; text-decoration: none; border-radius: 8px; padding: 5px;}
.read-more-cls a {color: #d6a73d; font-weight: 600;}
.post_faq {font-family: "Montserrat", sans-serif !important; line-height: 1.2 !important; font-size: 1.10rem !important; font-weight: 600 !important;}
.post_headings {font-family: "Montserrat", sans-serif !important; font-size: 1.50rem !important; font-weight: 600 !important;}