/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Builtup - Construction HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Our Project css
09. Our CTA css
10. Our Testimonial css
11. Our Faqs css
12. Latest News css
13. Our Contact Us css
14. Footer css
15. About us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Team Page css  
23. Contact us Page css
24.	FAQs Page css
25. 404 Page css
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	/* --primary-color			: #12223B; */
	--primary-color: #0c539f;
	--secondary-color: #E9F7FE;
	--text-color: #667282;
	--accent-color: #e85526;
	--white-color: #FFFFFF;
	--divider-color: #12223B30;
	--dark-divider-color: #FFFFFF20;
	--overlay-color: #00000066;
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
	--accent-font: "Manrope", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1.3em;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.faq {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
	border-radius: 40px;
}

.faq img {
	height: 580px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
	border-radius: 40px;
}

.btn-default {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 12px;
	padding: 20px 60px 20px 30px;
	border: none;
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default:hover {
	background: transparent;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	background-image: url("../images/arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 24px;
	height: 24px;
	transform: translate(-30px, -50%);
	transition: 0.4s ease-in-out;
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	border-radius: 12px;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:before {
	transform: translate(-27px, -50%);
}

.btn-default:hover::after {
	width: 106%;
}

.btn-default.btn-highlighted {
	background-color: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	padding: 19px 60px 19px 30px;
}

.btn-default.btn-highlighted:hover {
	border-color: var(--accent-color);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}

.btn-large {
	font-size: 20px;
	padding: 20px 65px 20px 30px;
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.h-85 {
	height: 85%;
}

.light-bg-section {
	margin: 0 25px;
}

.section-row {
	margin-bottom: 30px;
	margin-top: 30px;
}

.section-row .section-title {
	text-align: center;
	margin-bottom: 0;
}

.section-row .section-title p {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	margin-top: 30px;
}

.section-btn {
	line-height: 0.8em;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h1 {
	font-size: 70px;
	font-weight: 800;
	line-height: 1.1em;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1em;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h3 {
	color: var(--accent-color);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.1em;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.section-title p {
	margin-top: 15px;
	margin-bottom: 0;
}

.section-title-content {
	margin-top: 30px;
}

.section-title-content p {
	margin: 0;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	background-color: transparent;
	border-bottom: 1px solid var(--dark-divider-color);
	position: relative;
	z-index: 100;
	/* margin: 40px 40px 0px 40px; */
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}

.navbar {
	padding: 10px 35px;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 500;
	padding: 12px 12px !important;
	color: #000;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 260px;
	border-radius: 15px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover {
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn .btn-default {
	padding: 20px 30px;
}

.header-btn .btn-default:hover {
	color: var(--primary-color);
}

.header-btn .btn-default::before {
	display: none;
}

.header-btn .btn-default::after {
	background: var(--white-color);
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	/* font-family: 'FontAwesome'; */
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}



/* Fix for header breaking into multiple lines between 1363px and 990px */
@media (max-width: 1363px) and (min-width: 1181px) {
	.navbar {
		padding: 10px 15px;
	}

	.main-logo img {
		max-width: 160px;
	}

	.main-menu ul li {
		margin: 0 2px;
	}

	.main-menu ul li a {
		padding: 10px 8px !important;
	}

	.header-phone {
		font-size: 15px !important;
	}

	.header-phone img {
		width: 16px;
	}
}

@media(max-width:1180px) and (min-width:990px) {
	.main-menu ul li a {
		padding: 10px 8px !important;
		font-size: 12px;
	}

	.navbar {
		padding: 10px 15px;
	}

	.main-logo img {
		max-width: 160px;
	}

	.main-menu ul li {
		margin: 0px;
	}

	.header-phone {
		font-size: 15px !important;
	}

	.header-phone img {
		width: 16px;
	}
}



/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero.bg-section {
	overflow: hidden;
	background: url("../images/hero-bg.jpg") no-repeat center center;
	background-size: cover;
	padding: 300px 0 200px;
	position: relative;
	/* margin-top: -103px; */
}

.hero.bg-section:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-color);
	z-index: 1;
}

.hero.bg-section.hero-slider {
	text-align: center;
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide {
	position: relative;
	/* padding: 300px 0 200px; */
}

.hero.hero-slider:before {
	display: none;
}

.hero.hero-slider .hero-slider-layout {
	position: relative;
	z-index: 2;
}

.hero-slider-layout .hero-slide::before {
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	/* height: 540px; */
	z-index: 1;
}


.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 930px;
	margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
	z-index: 2;
	bottom: 20px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background: var(--primary-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}

.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-content .section-title p {
	font-size: 22px;
	color: var(--white-color);
}

.hero-content-body .btn-default.btn-highlighted {
	margin-left: 30px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 40px 0;
}

.about-content {
	margin-left: 95px;
}

.about-content-body {
	margin-bottom: 50px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.about-content-body ul {
	list-style: none;
}

.hero-slider .swiper-slide {
	/* height: 540px; */
}

.about-content-body ul li {
	position: relative;
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 500;
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-content-body ul strong {
	font-size: 20px;
}

.about-content-body ul li:last-child {
	margin-bottom: 0;
}

.about-content-body ul li:before {
	content: '\f058';
	/* font-family: 'Font Awesome 5 Free'; */
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 4px;
	left: 0;
}

.about-content-footer {
	display: flex;
	align-items: center;
}

.about-footer {
	padding: 20px 0;
	margin-top: 20px;
}

.about-footer-btn {
	line-height: 0.8em;
}

.footer-link-data {
	display: flex;
	gap: 60px;
}


.about-contact-support {
	display: flex;
	align-items: center;
	margin-left: 30px;
}

.about-contact-support .icon-box {
	margin-right: 20px;
}

.about-contact-support .icon-box img {
	max-width: 40px;
}

.about-support-content {
	width: calc(100% - 60px);
}

.about-support-content p {
	font-family: var(--accent-font);
	font-size: 16px;
	margin-bottom: 5px;
}

.about-support-content h3 {
	font-size: 24px;
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-service {
	background: var(--secondary-color) url("../images/our-service-bg.png") no-repeat;
	background-position: right top;
	background-size: auto;
	padding: 100px 0 70px;
}

.service-item {
	position: relative;
	overflow: hidden;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.service-image {
	overflow: hidden;
	border-radius: 40px;
}

.service-image a {
	position: relative;
	cursor: none;
	display: block;
}

.service-item .service-image a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);
	border-radius: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.service-image img {
	width: 100%;
	border-radius: 40px;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}

.service-body {
	position: absolute;
	bottom: 10px;
	right: 40px;
	left: 40px;
	text-align: left;
	z-index: 2;
	transform: translateY(70%);
	transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body {
	transform: translateY(0%);
	bottom: 20px;
}

.service-body-title h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.service-content {
	opacity: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-content {
	opacity: 1;
}

.service-content p {
	color: var(--white-color);
	line-height: 1.1rem;
	font-size: 15px;
}

.service-content-footer .readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: 0.4s ease-in-out;
}

.service-content-footer .readmore-btn:hover {
	color: var(--white-color);
}

.service-icon {
	font-size: 40px;
	color: #fff;
	margin-bottom: 20px;
	transition: 0.4s;
}

.service-card:hover .service-icon {
	color: #e85526;
}

.service-content-footer .readmore-btn::after {
	content: '';
	position: absolute;
	top: 1px;
	right: 0;
	bottom: 0;
	background-image: url("../images/readmore-arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 24px;
	height: 24px;
	transition: 0.4s ease-in-out;
}

.service-content-footer .readmore-btn:hover::after {
	filter: brightness(0) invert(1);
	right: -4px;
}

.service-footer-btn {
	text-align: center;
	margin-top: 30px;
}

/************************************/
/***     07. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 50px 0;
}

.why-choose-item {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.why-choose-item .icon-box {
	margin-bottom: 30px;
}

.why-choose-item .icon-box img {
	max-width: 70px;
}

.why-choose-content {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.why-choose-content h3 {
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.why-choose-content p {
	margin: 0;
}

.why-choose-counter h3 {
	font-size: 56px;
	letter-spacing: -0.03em;
	line-height: 1.1em;
	margin-bottom: 5px;
}

.why-choose-counter p {
	text-transform: capitalize;
	margin: 0;
}

.why-choose-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.why-choose-image figure,
.why-choose-image img {
	height: 100%;
	border-radius: 40px;
}

.why-choose-image:hover img {
	filter: grayscale(80%);
}

/************************************/
/***     08. Our Projects css     ***/
/************************************/

.our-projects {
	background: var(--secondary-color) url("../images/our-projects-bg.png") no-repeat;
	background-position: left bottom;
	background-size: auto;
	padding: 100px 0;
}

.project-item {
	position: relative;
	overflow: hidden;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.project-image {
	overflow: hidden;
	border-radius: 40px;
}

.project-image a {
	position: relative;
	cursor: none;
	display: block;
}

.project-item .project-image a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);
	border-radius: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.project-image img {
	width: 100%;
	border-radius: 40px;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .service-image img {
	transform: scale(1.1);
}

.project-body {
	position: absolute;
	bottom: 10px;
	right: 18px;
	left: 18px;
	text-align: left;
	z-index: 2;
	/* transform: translateY(70%); */
	transform: translateY(calc(100% - 60px));
	transition: all 0.5s ease-in-out;
}

.project-item:hover .project-body {
	transform: translateY(0%);
	bottom: 20px;
}

.project-body-title h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.project-content {
	opacity: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-content {
	opacity: 1;
}

.project-content p {
	color: var(--white-color);
	line-height: 1.1rem;
	font-size: 15px;
}

.project-content-footer .readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: 0.4s ease-in-out;
}

.project-content-footer .readmore-btn:hover {
	color: var(--white-color);
}

.project-content-footer .readmore-btn::after {
	content: '';
	position: absolute;
	top: 1px;
	right: 0;
	bottom: 0;
	background-image: url("../images/readmore-arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 24px;
	height: 24px;
	transition: 0.4s ease-in-out;
}

.project-content-footer .readmore-btn:hover::after {
	filter: brightness(0) invert(1);
	right: -4px;
}

.project-footer-btn {
	text-align: center;
	margin-top: 30px;
}

/************************************/
/***     09. Our Cta Box css      ***/
/************************************/

.cta-box {
	position: relative;
	background: var(--primary-color) url("../images/cta-box-bg.png") no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0;
}

.cta-box .section-title h2 {
	color: var(--white-color);
}

.cta-box .section-title p {
	color: var(--white-color);
}

.cta-box-image {
	position: absolute;
	bottom: 0;
	text-align: center;
}

.cta-box-image img {
	max-width: 100%;
	height: 495px;
}

.section-btn .btn-default {
	border: 2px solid transparent;
}

.section-btn .btn-default:hover {
	border: 2px solid var(--white-color);
}


/* Responsive styles */
@media (max-width: 991.98px) {
	.testimonial-slider .testimonial-img-fullwidth {
		height: 160px;
	}

	.testimonial-slider .testimonial-caption {
		padding-left: 18px;
		padding-right: 18px;
		padding-top: 18px;
		padding-bottom: 10px;
	}

	.cta-box-image img {
		height: 380px;
	}

}

@media (max-width: 575px) {
	.testimonial-slider .testimonial-img-fullwidth {
		height: 100px;
	}

	.testimonial-slider .testimonial-caption {
		padding-left: 8px;
		padding-right: 8px;
		padding-top: 10px;
		padding-bottom: 8px;
	}

	.testimonial-slider .testimonial-caption h3 {
		font-size: 1.1rem;
	}

	.testimonial-slider .testimonial-caption .subtitle {
		font-size: 0.95rem;
	}

	.testimonial-slider .swiper-pagination {
		margin-top: 12px;
	}


	.cta-box-image img {
		width: 140px;
		height: 244px;
	}
}

/* ══════════════════════════════════════
   OUR TESTIMONIAL
══════════════════════════════════════ */

.our-testimonial {
	padding: 100px 0;
}

.our-testimonial .testimonial-slider .swiper-wrapper {
	align-items: stretch;
	padding-bottom: 20px;
}

.our-testimonial .swiper-slide {
	height: auto;
}

.our-testimonial .testimonial-item {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.our-testimonial .testimonial-header {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.our-testimonial .testimonial-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.our-testimonial .testimonial-video {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	flex-shrink: 0;
}

.our-testimonial .testimonial-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.our-testimonial .testimonial-rating {
	margin: 20px 20px 10px;
	flex-shrink: 0;
}

.our-testimonial .testimonial-rating i {
	font-size: 20px;
	color: var(--accent-color);
}

.our-testimonial .testimonial-content>p {
	margin: 10px 20px 20px;
	flex: 1;
}

.our-testimonial .testimonial-body {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-top: 1px solid var(--divider-color);
	flex-shrink: 0;
	margin-top: auto;
}

.our-testimonial .author-content h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 3px;
	text-transform: capitalize;
}

.our-testimonial .author-content p {
	font-size: 13px;
	/* color: var(--body-color, #777); */
	margin: 0;
	text-transform: capitalize;
}

.our-testimonial .testimonial-slider .swiper-pagination {
	position: relative;
	text-align: center;
	bottom: 0;
	margin-top: 30px;
}

.our-testimonial .testimonial-slider .swiper-pagination .swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: var(--accent-color);
	opacity: 1;
	margin: 0 6px;
}

.our-testimonial .testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}


/************************************/
/***      11. Our FAQs  css       ***/
/************************************/

.sticky-image {
	position: sticky;
	top: 80px;
	/* distance from top when sticky */
	height: fit-content;
}

.sticky-image img {
	width: 100%;
	border-radius: 40px;
}

/* ══════════════════════════════════════
   FAQ SECTION  (.shreetmt-faqs)
══════════════════════════════════════ */

.shreetmt-faqs {
	background: var(--secondary-color) url("../images/our-faqs-bg.png") no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0;
}

/* ── Section Title ── */
.shreetmt-faqs .shreetmt-faqs__title-wrap {
	margin-bottom: 48px;
}

.shreetmt-faqs .shreetmt-faqs__eyebrow {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--accent-color, #EF7F1A);
	margin-bottom: 10px;
}

.shreetmt-faqs .shreetmt-faqs__heading {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	color: var(--primary-color, #0C54A0);
	margin-bottom: 0;
}

/* ── Image Column ── */
.shreetmt-faqs .shreetmt-faqs__img-col {
	position: sticky;
	top: 100px;
	align-self: flex-start;
}

.shreetmt-faqs .shreetmt-faqs__img-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	line-height: 0;
}

.shreetmt-faqs .shreetmt-faqs__img-wrap img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* ── Accordion ── */
.shreetmt-faqs .shreetmt-faqs__accordion .accordion-item {
	border: none;
	border-radius: 8px;
	margin-bottom: 10px;
	overflow: hidden;
	/* box-shadow: 0 2px 12px rgba(12, 84, 160, 0.07); */
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--primary-color, #0C54A0);
	background: #fff;
	padding: 16px 20px;
	line-height: 1.4;
	box-shadow: none;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button:not(.collapsed) {
	color: var(--accent-color, #EF7F1A);
	background: #fff;
	box-shadow: none;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button::after {
	filter: hue-rotate(190deg);
	flex-shrink: 0;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body {
	padding: 4px 20px 20px;
	background: #fff;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body p,
.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body li {
	font-size: 0.88rem;
	line-height: 1.75;
	color: #555;
	margin-bottom: 8px;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body ul {
	padding-left: 18px;
	margin-bottom: 0;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body li {
	margin-bottom: 6px;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body strong {
	color: #333;
}

/* ── Tablet: show image above accordion ── */
@media (max-width: 991px) and (min-width: 576px) {
	.shreetmt-faqs {
		padding: 70px 0;
	}

	.shreetmt-faqs .shreetmt-faqs__img-col {
		position: relative;
		top: 0;
		margin-bottom: 36px;
	}

	.shreetmt-faqs .shreetmt-faqs__img-wrap img {
		height: 300px;
		object-position: center 20%;
	}
}

/* ── Mobile: hide image ── */
@media (max-width: 575px) {
	.shreetmt-faqs {
		padding: 60px 0;
	}

	.shreetmt-faqs .shreetmt-faqs__img-col {
		display: none;
	}

	.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button {
		font-size: 0.85rem;
		padding: 14px 16px;
	}

	.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body {
		padding: 4px 16px 16px;
	}
}

.faqs-img-2 img,
.faqs-img-1 img {
	border-radius: 40px;
}

.faq-accordion {
	margin-left: 30px;
}

.faq-accordion .accordion-item {
	position: relative;
	background: none;
	border-bottom: 1px solid var(--white-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button {
	font-size: 24px;
	font-weight: 700;
	border: none;
	box-shadow: none;
	padding: 10px 40px 10px 10px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%) rotate(-90deg);
	background-image: url("../images/long-arrow.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: translate(0px, -50%) rotate(0deg);
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body {
	padding: 10px 40px 10px 10px;
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body p {
	margin: 0;
}

/* ── Remove white card background from accordion items ── */
.shreetmt-faqs .shreetmt-faqs__accordion .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
    background: transparent;
    border-bottom: 1px solid rgba(12, 84, 160, 0.15);
    padding-bottom: 0;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-item:last-child {
    border-bottom: none;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-color, #0C54A0);
    background: transparent;
    padding: 18px 48px 18px 0;
    line-height: 1.4;
    box-shadow: none;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color, #EF7F1A);
    background: transparent;
    box-shadow: none;
}

/* Hide Bootstrap's default chevron — we use the custom SVG arrow */
.shreetmt-faqs .shreetmt-faqs__accordion .accordion-button::after {
    display: none;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body {
    padding: 0 48px 18px 0;
    background: transparent;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body p,
.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body li {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 8px;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body li {
    margin-bottom: 6px;
}

.shreetmt-faqs .shreetmt-faqs__accordion .accordion-body strong {
    color: #333;
}

/* ── faq-accordion custom arrow — fix mobile visibility ── */
.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%) rotate(-90deg);
    background-image: url("../images/long-arrow.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;   /* was 'auto' — caused invisible arrow on small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;                /* slightly smaller, safe on all screens */
    height: 28px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    transform: translate(0px, -50%) rotate(0deg);
}

/* ── Mobile optimizations ── */
@media (max-width: 575px) {
    .shreetmt-faqs {
        padding: 60px 0;
    }

    .shreetmt-faqs .shreetmt-faqs__img-col {
        display: none;
    }

    .faq-accordion {
        margin-left: 0;         /* remove left margin on mobile so full width is used */
    }

    .faq-accordion .accordion-item .accordion-button {
        font-size: 16px;        /* was 24px — too large, now readable on mobile */
        font-weight: 600;
        padding: 14px 36px 14px 0;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        width: 22px;
        height: 22px;
    }

    .faq-accordion .accordion-item .accordion-collapse .accordion-body {
        padding: 8px 36px 14px 0;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .faq-accordion .accordion-item .accordion-button {
        font-size: 18px;
    }

    .faq-accordion {
        margin-left: 0;
    }
}

/************************************/
/***     12. Latest News css	  ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.blog-item {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

.post-featured-image a {
	display: block;
	cursor: none;
}

.post-featured-image img {
	/* aspect-ratio: 1/0.65; */
	object-fit: cover;
	border-radius: 40px 40px 0 0;
	transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	padding: 30px;
}

.post-item-body {
	margin-bottom: 10px;
}

.post-item-body h2 {
	font-size: 18px;
	font-weight: 700;
}

.post-item-body h2 a {
	color: inherit;
}

.post-item-footer .readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: 0.3s ease-in-out;
}

.post-item-footer .readmore-btn::after {
	content: '';
	position: absolute;
	top: 1px;
	right: 0;
	bottom: 0;
	background-image: url(../images/readmore-arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 24px;
	height: 24px;
	transition: 0.3s ease-in-out;
}

.post-item-footer .readmore-btn:hover::after {
	right: -3px;
}

/************************************/
/***      13. Contact Us Css	  ***/
/************************************/

.contact-us {
	background: var(--secondary-color) url("../images/contact-us-bg.png") no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.contact-sidebar {
	background: var(--primary-color);
	border-radius: 40px;
	text-align: center;
	transition: all 0.3s ease-in-out;
	height: 600px;
}

.contact-sidebar img {
	border-radius: 40px;
	height: 600px;
	object-fit: cover;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-info .icon-box {
	margin-bottom: 20px;
}

.contact-info .icon-box img {
	max-width: 40px;
}

.contact-info-content p {
	color: var(--white-color);
	opacity: 64%;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #e85526 !important;
	opacity: 0.8 !important;
	;
}

.contact-info-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--white-color);
}

.contact-info-image {
	width: 100%;
	max-width: 190px;
	margin: 0 auto;
}

.contact-sidebar .contact-info-image img {
	filter: grayscale(0%);
	transition: all 0.3s ease-in-out;
}

.contact-sidebar:hover .contact-info-image img {
	filter: grayscale(80%);
}

.contact-form {
	background-color: var(--white-color);
	border-radius: 40px;
	padding: 50px;
}

.contact-form .form-control {
	padding: 15px;
	background-color: transparent;
	color: var(--primary-color);
	box-shadow: none;
	border: none;
	border-bottom: 1px solid var(--divider-color);
	border-radius: 0;
}

.contact-form .form-control::placeholder {
	color: var(--primary-color);
	opacity: 20%;
	text-transform: capitalize;
}

.client-slider-section-2 {
	padding: 40px 0 40px 0;
}

.client-slider-2 .swiper-slide {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 0;
}

.client-slider-2 .swiper-slide img {
	max-width: 80%;
	width: auto;
	margin: 0 auto;
}

.client-slider-2 .swiper-button-next,
.client-slider-2 .swiper-button-prev {
	color: #333;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	top: 50%;
	transform: translateY(-50%);
}

.client-slider-2 .swiper-button-next:after,
.client-slider-2 .swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}

/************************************/
/***    	14. Footer css		  ***/
/************************************/

.main-footer {
	background: var(--primary-color);
	padding: 40px 0 0;
}

.footer-logo {
	margin-bottom: 15px;
}

.footer-logo img {
	max-width: 65%;
}


.footer-content {
	align-content: center;
}

.footer-content p {
	color: var(--white-color);
	margin: 0;
	font-size: 16px;
}

.footer-links h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 40px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 20px;
}

.footer-links ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	background-image: url("../images/readmore-arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 20px;
	height: 20px;
	transition: 0.3s ease-in-out;
}

.footer-links ul li:hover:before {
	filter: brightness(0) invert(1);
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
	color: var(--accent-color);
}

.footer-contact-box .footer-info-box {
	position: relative;
	padding-left: 40px;
	margin-bottom: 30px;
}

.footer-contact-box .footer-info-box:last-child {
	margin-bottom: 0;
}

.footer-info-box .icon-box {
	position: absolute;
	top: 0;
	left: 0;
}

.footer-info-box .icon-box img {
	max-width: 26px;
}

.footer-info-box p {
	color: var(--white-color);
	margin: 0;
}

.footer-copyright {
	margin-top: 20px;
	padding: 20px 0;
	border-top: 1px solid var(--dark-divider-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-copyright .footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-copyright .footer-social-links ul li {
	display: inline-block;
	margin-right: 10px;
}

.footer-copyright .footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-copyright .footer-social-links ul li a {
	background-color: transparent;
	/* color: var(--accent-color);
	border: 2px solid var(--accent-color); */
	border: 2px solid var(--white-color);
	color: var(--white-color);
	height: 36px;
	width: 36px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-copyright .footer-social-links ul li a i {
	font-size: 18px;
}

.footer-copyright .footer-social-links ul li a:hover {
	/* border-color: var(--white-color);
	color: var(--white-color); */
	color: var(--accent-color);
	border-color: var(--accent-color);
}

/* Cert logos responsive fix */
.cert-logos-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.cert-logos-grid figure {
	flex: 0 0 auto;
	/* width: calc(16.66% - 12px); */
	min-width: 80px;
	margin: 0;
}

@media (max-width: 767px) {
	.cert-logos-grid figure {
		width: calc(33.33% - 12px);
	}
}



/************************************/
/***    15. About us Page css	  ***/
/************************************/



/* About us-- our story and legacy css*/
.about-z-img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 40px;
	display: block;
}

/* Remove old margin overrides */
.about-us-content {
	margin-left: 0 !important;
}

@media only screen and (max-width: 991px) {
	.about-z-img {
		height: 380px;
	}
}

@media only screen and (max-width: 767px) {
	.about-z-img {
		height: 280px;
	}
}


/* ================================
   Milestone Section
================================ */
/* ===== SECTION ===== */
.tl-section {
	padding: 70px 0 90px;
	overflow: hidden;
	background: #f5f0ee;
}

/* ===== HEADER ===== */
.tl-header {
	text-align: center;
	padding: 0 24px 56px;
}

.tl-header h3 {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #e85526;
	margin-bottom: 10px;
}

.tl-header h2 {
	font-size: clamp(32px, 4vw, 52px);
	/* color: #1a1a1a; */
	line-height: 1.2;
}

.tl-header h2 span {
	color: #e85526;
}

.tl-scroll-hint {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-size: 13px;
	color: #888;
}

.tl-arrow-anim {
	display: inline-flex;
	gap: 3px;
}

.tl-arrow-anim span {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid #e85526;
	border-bottom: 2px solid #e85526;
	transform: rotate(-45deg);
	animation: arrowPulse 1.2s infinite;
}

.tl-arrow-anim span:nth-child(2) {
	animation-delay: 0.2s;
	opacity: 0.7;
}

.tl-arrow-anim span:nth-child(3) {
	animation-delay: 0.4s;
	opacity: 0.4;
}

@keyframes arrowPulse {

	0%,
	100% {
		opacity: 1;
		transform: rotate(-45deg) translateX(0);
	}

	50% {
		opacity: 0.3;
		transform: rotate(-45deg) translateX(3px);
	}
}

.tl-outer {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	cursor: grab;
	padding-bottom: 28px;
	scrollbar-width: thin;
	scrollbar-color: #e8552655 transparent;
	touch-action: pan-x;
}

.tl-outer::-webkit-scrollbar {
	height: 4px;
}

.tl-outer::-webkit-scrollbar-track {
	background: transparent;
}

.tl-outer::-webkit-scrollbar-thumb {
	background: #e8552255;
	border-radius: 2px;
}

.tl-outer.grabbing {
	cursor: grabbing;
}

.tl-track {
	display: flex;
	align-items: flex-start;
	padding: 0 60px;
	width: max-content;
	position: relative;
	gap: 0;
}

.tl-line-wrap {
	position: absolute;
	top: 195px;
	left: 60px;
	right: 60px;
	height: 2px;
	pointer-events: none;
	z-index: 0;
}

.tl-line {
	height: 100%;
	width: 100%;
	background: linear-gradient(to right,
			transparent,
			#e85526 5%,
			#e85526 95%,
			transparent);
}

.tl-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 220px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.tl-node:nth-child(odd) .tl-card {
	order: -1;
}

.tl-node:nth-child(odd) .tl-dot-col {
	order: 0;
}

.tl-node:nth-child(odd) .tl-spacer {
	order: 1;
}

.tl-node:nth-child(even) .tl-card {
	order: 1;
}

.tl-node:nth-child(even) .tl-dot-col {
	order: 0;
}

.tl-node:nth-child(even) .tl-spacer {
	order: -1;
}

.tl-card {
	width: 196px;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #f0e8e4;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.tl-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 44px rgba(232, 85, 38, 0.15);
}

.tl-card::before {
	content: '';
	display: block;
	height: 4px;
	width: 100%;
	background: #e85526;
}

.tl-card-inner {
	padding: 16px 18px 20px;
}

.tl-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #e85526;
	background: rgba(232, 85, 38, 0.08);
	border: 1px solid rgba(232, 85, 38, 0.2);
	border-radius: 30px;
	padding: 3px 12px;
	margin-bottom: 12px;
}

.tl-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.tl-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #fdf1ec;
	border: 1px solid #f5d5c8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 15px;
	color: #e85526;
}

.tl-year {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

.tl-text {
	font-size: 13px;
	color: #666666;
	line-height: 1.65;
}

.tl-dot-col {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 16px;
	margin: 0;
}

.tl-dot {
	width: 18px;
	height: 18px;
	background: #e85526;
	border-radius: 50%;
	border: 3px solid #f5f0ee;
	box-shadow: 0 0 0 3px rgba(232, 85, 38, 0.25), 0 0 0 6px rgba(232, 85, 38, 0.08);
}

.tl-spacer {
	height: 148px;
}

@media (max-width: 767px) {
	.tl-node {
		width: 190px;
	}

	.tl-card {
		width: 170px;
	}

	.tl-year {
		font-size: 22px;
	}
}




/* ----------------------Our Dedication to Excellence------------------------------------- */

/* what we do  */
.section-header {
	text-align: center;
	margin-bottom: 56px;
}

.section-header h3 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #1a6fbf;
	margin-bottom: 12px;
}

.section-header h2 {
	font-size: clamp(36px, 5vw, 58px);
	color: #0d2a4a;
	line-height: 1.15;
	margin-bottom: 20px;
}

.section-header h2 span {
	color: #1a6fbf;
}

.section-header p {
	max-width: 620px;
	margin: 0 auto;
	color: #4a6580;
	font-size: 16px;
	line-height: 1.8;
}

/* ===== CARDS GRID ===== */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
}

/* ===== CARD ===== */
.card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 380px;
	cursor: pointer;
	box-shadow: 0 8px 40px rgba(13, 42, 74, 0.13);
}

/* Background Image */
.card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-bg {
	transform: scale(1.07);
}

/* Always-visible gradient overlay */
.card-base-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(10, 35, 75, 0.30) 0%,
			rgba(10, 35, 75, 0.72) 60%,
			rgba(10, 35, 75, 0.92) 100%);
	transition: opacity 0.45s ease;
}

/* Hover overlay — rich blue */
.card-hover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg,
			rgba(26, 111, 191, 0.85) 0%,
			rgba(10, 35, 75, 0.97) 100%);
	opacity: 0;
	transition: opacity 0.45s ease;
}

.card:hover .card-hover-overlay {
	opacity: 1;
}

/* Card Content */
.card-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px 32px;
	z-index: 2;
}

.card-icon {
	font-size: 28px;
	color: #fff;
	opacity: 0.9;
	margin-bottom: 14px;
	transform: translateY(0);
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.card:hover .card-icon {
	transform: translateY(-4px);
	opacity: 1;
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 10px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Description — hidden by default, revealed on hover */
.card-desc {
	font-size: 14.5px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.80);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		opacity 0.4s ease;
	opacity: 0;
}

.card:hover .card-desc {
	max-height: 200px;
	opacity: 1;
}

/* CTA Arrow — hidden by default */
.card-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease;
}

.card:hover .card-cta {
	opacity: 1;
	transform: translateY(0);
}

.card-cta::after {
	content: '';
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
}

.card:hover .card-cta::after {
	width: 36px;
}

/* ===== CARD BACKGROUND IMAGES ===== */
.card-1 .card-bg {
	background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=800&q=80');
}

.card-2 .card-bg {
	background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&q=80');
}

.card-3 .card-bg {
	background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=800&q=80');
}

.card-4 .card-bg {
	background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=800&q=80');
}

/* ===== TAG BADGE ===== */
.card-tag {
	position: absolute;
	top: 22px;
	left: 24px;
	z-index: 3;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	padding: 5px 14px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	transition: background 0.3s;
}

.card:hover .card-tag {
	background: rgba(255, 255, 255, 0.22);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
	.cards-grid {
		grid-template-columns: 1fr;
	}

	.card {
		height: 320px;
	}

	.card-title {
		font-size: 20px;
	}
}




/* -------------------------------------------- */

/* banner  */
.page-header {
	overflow: hidden;
	background: url('../images/about-img/main-banner.webp') no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}


/* banner for contact us page */
.contact-page-header {
	overflow: hidden;
	background: url('../images/tmt-img/contact-us-banner.webp') no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}


.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	font-size: 56px;
	color: var(--white-color);
	margin-bottom: 30px;
	line-height: 1.1em;
	letter-spacing: -0.03em;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-about-us {
	padding: 0px;
	padding-top: 100px;
}

.about-us-content {
	margin-left: 95px;
}

.about-us-content-body {
	margin-bottom: 50px;
}

.about-us-content-body ul {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin: 0;
	list-style: none;
}

.about-us-content-body ul li {
	position: relative;
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 500;
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-body ul li:last-child {
	margin-bottom: 0;
}

.about-us-content-body ul li:before {
	content: '\f058';
	/* font-family: 'Font Awesome 5 Free'; */
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 4px;
	left: 0;
}

.about-us-content-footer {
	display: flex;
	align-items: center;
}

.about-us-footer-btn {
	line-height: 0.8em;
}

.about-us-contact-support {
	display: flex;
	align-items: center;
	margin-left: 30px;
}

.about-us-contact-support .icon-box {
	margin-right: 20px;
}

.about-us-contact-support .icon-box img {
	max-width: 40px;
}

.about-us-support-content {
	width: calc(100% - 60px);
}

.about-us-support-content p {
	font-family: var(--accent-font);
	font-size: 16px;
	margin-bottom: 5px;
}

.about-us-support-content h3 {
	font-size: 24px;
}

.our-company-history {
	padding: 100px 0;
	background: var(--secondary-color);
}

.company-history-image {
	position: relative;
}

.company-history-img {
	text-align: left;
}

.company-history-img img {
	border-radius: 40px;
}

.company-experience {
	position: absolute;
	width: 100%;
	max-width: 225px;
	text-align: center;
	bottom: 20%;
	right: 0;
	background-color: var(--white-color);
	border-radius: 40px;
	padding: 40px;
	animation: expmoveobject 3s infinite linear alternate;
}

@keyframes expmoveobject {
	50% {
		right: 50px;
	}
}

.company-experience-content h3 {
	font-size: 56px;
}

.company-experience-content p {
	margin: 0;
	text-transform: capitalize;
}

.company-history-body p:last-child {
	margin-bottom: 0;
}

.our-mission-vision {
	padding: 100px 0;
}

.mission-vision-item {
	padding: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
}

.mission-vision-item .icon-box {
	margin-bottom: 30px;
}

.mission-vision-item .mission-vision-content h3 {
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.mission-vision-item .mission-vision-content p {
	margin: 0;
}

.intro-video-box {
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor: none;
}

.intro-video-box .video-image img {
	width: 100%;
	filter: brightness(80%);
	aspect-ratio: 1/0.33;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.intro-video-box:hover .video-image img {
	transform: scale(1.1);
}

.intro-video-box .video-image a {
	cursor: none;
	position: relative;
	z-index: 1;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	position: relative;
	background-color: var(--white-color);
	border-radius: 100%;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 30px;
	color: var(--accent-color);
}

.what-we-do {
	padding: 100px 0;
	background: var(--secondary-color);
}

.what-we-do .section-title {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.company-counter-item {
	background: var(--primary-color);
	padding: 50px 30px;
	text-align: center;
	border-radius: 40px;
	height: 100%;
}

.company-counter-item .company-counter-content h3 {
	color: var(--white-color);
	font-size: 30px;
	letter-spacing: -0.03em;
	line-height: 1.1em;
	margin-bottom: 15px;
}

.company-counter-item .company-counter-content p {
	color: var(--white-color);
	opacity: 64%;
	text-transform: capitalize;
	margin: 0;
	font-size: 15px;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-member-item .team-image img {
	border-radius: 40px 40px 0 0;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-body {
	padding: 30px;
}

.team-content {
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	padding: 0;
	margin: 0;
}

.team-social-icon ul li {
	display: inline-block;
	margin-right: 5px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	color: var(--primary-color);
	height: 36px;
	width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--primary-color);
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.team-social-icon ul li a i {
	font-size: 18px;
}

/* FAQ CSS */
.faq-section {
	background-color: #f8f9fa;
}

.header-line {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #D3DE2B, #ADD361);
	border-radius: 2px;
}

/* Accordion Customization */
.custom-faq .accordion-item {
	border-radius: 12px !important;
	overflow: hidden;
}

.custom-faq .accordion-button {
	background-color: #ffffff;
	color: #0c539f;
	padding: 1.25rem;
	font-size: 1.1rem;
	box-shadow: none;
	transition: all 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed) {
	background-color: #0c539f;
	color: #ffffff;
	box-shadow: none;
}

/* Changes the chevron icon color when expanded */
.custom-faq .accordion-button:not(.collapsed)::after {
	filter: brightness(0) invert(1);
}

.custom-faq .accordion-button:focus {
	border-color: rgba(12, 83, 159, 0.1);
	box-shadow: 0 0 0 0.25rem rgba(12, 83, 159, 0.1);
}

.custom-faq .accordion-body {
	background-color: #ffffff;
	line-height: 1.7;
	padding: 1.5rem;
}

/* Hover Effect */
.custom-faq .accordion-item:hover {
	transform: translateY(-2px);
	transition: transform 0.3s ease;
}



/************************************/
/***    16. Services Page css	  ***/
/************************************/

.page-service {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	padding-right: 50px;
	position: sticky;
	top: 20px;
}

.service-categories-list {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 30px;
	margin-bottom: 30px;
}

.service-categories-list h3 {
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-categories-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-categories-list ul li {
	margin-bottom: 20px;
	padding: 0 0 20px 30px;
	border-bottom: 1px solid var(--divider-color);
	position: relative;
}

.service-categories-list ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0;
	border-bottom: none;
}

.service-categories-list ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	background: url('../images/readmore-arrow.svg') no-repeat center center;
	width: 20px;
	height: 20px;
}

.service-categories-list ul li a {
	display: block;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: 0.3s ease-in-out;
}

.service-categories-list ul li a:hover {
	color: var(--accent-color);
}

.sidebar-cta-box {
	background: url('../images/service-sidebar-cta-bg.png') no-repeat top right, var(--primary-color);
	background-size: auto;
	border-radius: 40px;
	padding: 30px;
	text-align: center;
}

.sidebar-cta-box .cta-content {
	margin-bottom: 40px;
}

.sidebar-cta-box .cta-content h3 {
	font-size: 24px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.sidebar-cta-box .cta-content p {
	color: var(--white-color);
	margin: 0;
}

.cta-contact-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.cta-contact-info .cta-contact-item {
	display: flex;
	align-items: center;
	background: var(--white-color);
	padding: 8px 12px;
	border-radius: 99px;
	margin-bottom: 20px;
}

.cta-contact-info .cta-contact-item:last-child {
	margin-bottom: 0;
}

.cta-contact-info .cta-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 37px;
	min-width: 37px;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 10px;
}

.cta-contact-info .cta-contact-item .cta-contact-content {
	width: calc(100% - 47px);
}

.cta-contact-info .cta-contact-item .cta-contact-content p {
	margin: 0;
}

.cta-contact-info .cta-contact-item .cta-contact-content p a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.cta-contact-info .cta-contact-item:hover .cta-contact-content p a {
	color: var(--accent-color);
}

.service-images-slider {
	margin-bottom: 30px;
}

.service-image-item figure,
.service-image-item img {
	border-radius: 40px;
	overflow: hidden;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
}

.service-images-slider .swiper-arrow-prev,
.service-images-slider .swiper-arrow-next {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
}

.service-images-slider .swiper-arrow-prev {
	left: 20px;
}

.service-images-slider .swiper-arrow-next {
	right: 20px;
}

.service-images-slider .swiper-arrow-prev:before,
.service-images-slider .swiper-arrow-next:before {
	content: '';
	background: url('../images/icon-arrow-left.svg') no-repeat center left;
	background-size: 100% auto;
	height: 33px;
	width: 33px;
}

.service-images-slider .swiper-arrow-next:before {
	background: url('../images/icon-arrow-right.svg') no-repeat center left;
	background-size: 100% auto;
	height: 33px;
	width: 33px;
}

.service-single-content p {
	margin-bottom: 30px;
}

.service-single-content p:last-child {
	margin-bottom: 0;
}

.service-entry {
	margin-bottom: 30px;
}

.service-entry ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.service-entry ul li {
	position: relative;
	width: calc(50% - 10px);
	color: var(--primary-color);
	font-weight: 500;
	padding-left: 30px;
	text-transform: capitalize;
}

.service-entry ul li:before {
	content: '\f058';
	/* font-family: 'Font Awesome 5 Free'; */
	font-weight: 900;
	font-size: 18px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 4px;
	left: 0;
}

.service-sustainable .service-sustainable-img-1 figure,
.service-sustainable .service-sustainable-img-2 figure {
	display: block;
}


.service-sustainable .service-sustainable-img-1 img,
.service-sustainable .service-sustainable-img-2 img {
	border-radius: 40px;
}

.service-sustainable-content {
	margin-top: 30px;
}

.service-sustainable-content h3 {
	font-size: 24px;
	margin-bottom: 30px;
}

.service-benefit {
	padding: 100px 0 70px;
	background: url('../images/service-benefit-bg.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}

.service-benefit::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 70%;
	z-index: 0;
}

.service-benefit .service-benefit-item {
	background: var(--white-color);
	padding: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.service-benefit-item .icon-box {
	margin-bottom: 30px;
}

.service-benefit-item .service-benefit-content h3 {
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-benefit-item .service-benefit-content p {
	color: var(--text-color);
	margin: 0;
}

.working-process {
	padding: 100px 0 70px;
}

.working-process-item {
	padding: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.working-process-item .step-number {
	margin-bottom: 30px;
}

.working-process-item .step-number h2 {
	font-size: 40px;
	color: var(--accent-color);
}

.working-process-item .working-process-content h3 {
	font-size: 24px;
	margin-bottom: 30px;
	text-transform: capitalize;
}


.working-process-item .working-process-content p {
	color: var(--text-color);
	margin: 0;
}

/************************************/
/***    18. Blog Archive css	  ***/
/************************************/

/*------------------- Blog Page-------------------------*/
.blog-page {
	overflow: hidden;
	background: url(../images/blog-img/blog-banner.webp) no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}


.page-blog {
	padding: 100px 0;
}

.page-blog .blog-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.post-pagination {
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--accent-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border-radius: 50%;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}


/* ===== PAGINATION — scoped under .page-blog ===== */

.page-blog .post-pagination {
	display: flex;
	justify-content: center;
	margin: 40px 0 20px;
}

.page-blog .post-pagination .pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
}

.page-blog .post-pagination .pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	background: #ffffff;
	color: #333333;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-blog .post-pagination .pagination .page-numbers:hover {
	background: #f26522;
	color: #ffffff;
	border-color: #f26522;
}

.page-blog .post-pagination .pagination .page-numbers.current {
	background: #f26522;
	color: #ffffff;
	border-color: #f26522;
}

.page-blog .post-pagination .pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	color: #999999;
	cursor: default;
	pointer-events: none;
}

.page-blog .post-pagination .pagination a.prev,
.page-blog .post-pagination .pagination a.next {
	color: #f26522;
	border-color: #f26522;
	font-size: 13px;
}

.page-blog .post-pagination .pagination a.prev:hover,
.page-blog .post-pagination .pagination a.next:hover {
	background: #f26522;
	color: #ffffff;
}

/************************************/
/***     19. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li i {
	font-size: 22px;
	color: var(--accent-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 40px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 56px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 700;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 18px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 40px 46px;
	background-size: 45px;
	border-radius: 16px;
	padding: 40px 40px 40px 110px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 600;
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 8px 20px;
	margin-left: 10px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-align: center;
	background-color: var(--accent-color);
	color: var(--white-color);
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
	color: var(--secondry-color);
}


/* Sidebar Widgets */
.sidebar-widget {
	margin-bottom: 30px;
}

.sidebar-widget .widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent-color);
	/* color: var(--dark-color); */
}

/* Search */
.sidebar-search-wrap {
	display: flex;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

.sidebar-search-input {
	flex: 1;
	padding: 10px 14px;
	border: none;
	outline: none;
	font-size: 14px;
	background: #f9f9f9;
}

.sidebar-search-btn {
	padding: 10px 16px;
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s;
}

.sidebar-search-btn:hover {
	background: var(--primary-color);
}

/* Categories */
.sidebar-cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-cat-list li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.sidebar-cat-list li:last-child {
	border-bottom: none;
}

.sidebar-cat-list li a {
	/* color: var(--dark-color); */
	text-decoration: none;
	transition: color 0.3s;
}

.sidebar-cat-list li a:hover {
	color: var(--accent-color);
}

/* Popular Posts */
.sidebar-popular-post {
	display: flex;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}

.sidebar-popular-post:last-child {
	border-bottom: none;
}

.sidebar-pp-thumb img {
	width: 75px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
	display: block;
}

.sidebar-pp-body {
	flex: 1;
}

.sidebar-pp-body a {
	font-size: 13px;
	font-weight: 500;
	/* color: var(--dark-color); */
	text-decoration: none;
	line-height: 1.5;
	display: block;
	margin-bottom: 5px;
	transition: color 0.3s;
}

.sidebar-pp-body a:hover {
	color: var(--accent-color);
}

.sidebar-pp-date {
	font-size: 12px;
	color: #999;
}

/* Responsive */
@media (max-width: 991px) {

	.col-blog-main,
	.col-blog-sidebar {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


/* General Layout & Resets */
.page-blog {
	padding: 60px 0;
	color: #444;
	background-color: #f9f9f9;
}


.blog-layout-row {
	justify-content: space-between;
}

.col-blog-main {
	flex: 0 0 65%;
	max-width: 65%;
	padding: 0 15px;
}

.col-blog-sidebar {
	flex: 0 0 32%;
	max-width: 32%;
	padding: 0 15px;
}

a {
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
}

a:hover {
	color: #e65c00;
	/* Theme orange color */
}

/* Single Post Content Area */
.single-post-wrapper {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.post-featured-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 25px;
}

.post-meta {
	font-size: 14px;
	color: #888;
	margin-bottom: 10px;
}

.post-title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 20px;
	line-height: 1.3;
}

.post-body p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.post-body h2 {
	font-size: 24px;
	color: #222;
	margin: 30px 0 15px;
}

.post-body ul {
	margin-bottom: 25px;
	padding-left: 20px;
}

.post-body ul li {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 10px;
}

.post-body strong {
	color: #e65c00;
}

/* Related Posts Section */
.related-posts-section {
	margin-top: 50px;
	border-top: 1px solid #eaeaea;
	padding-top: 30px;
}

.related-posts-section h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #222;
}

.related-posts-row {
	margin-left: -10px;
	margin-right: -10px;
}

.related-post-card img {
	width: 100%;
	border-radius: 6px;
	margin-bottom: 15px;
	/* aspect-ratio: 4/3; */
	object-fit: cover;
}

.related-post-card h4 {
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
}

.related-post-card h4 a {
	color: #333;
}

.related-post-card h4 a:hover {
	color: #e65c00;
}

/* Sidebar Styling */
.sidebar-widget {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.widget-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f1f1;
}

.widget-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 50px;
	height: 2px;
	background: #e65c00;
}

/* Sidebar Search */
.sidebar-search-wrap {
	display: flex;
	position: relative;
}

.sidebar-search-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
}

.sidebar-search-btn {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 15px;
	background: #fdf2e9;
	border: 1px solid #ddd;
	border-left: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	color: #e65c00;
}

/* Sidebar Categories */
.sidebar-cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-cat-list li {
	margin-bottom: 12px;
}

.sidebar-cat-list li a {
	color: #555;
	display: block;
	position: relative;
	padding-left: 15px;
}

.sidebar-cat-list li a::before {
	content: '\203A';
	/* Arrow bullet */
	position: absolute;
	left: 0;
	top: -2px;
	color: #e65c00;
	font-size: 18px;
}

/* Sidebar Popular Posts */
.sidebar-popular-post {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f1f1f1;
	flex-direction: column;
}

.sidebar-popular-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.sidebar-pp-thumb {
	flex: 0 0 70px;
	margin-right: 15px;
}

.sidebar-pp-thumb img {
	width: 100%;
	height: 70px;
	object-fit: cover;
	border-radius: 4px;
}

.sidebar-pp-body a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 5px;
}

.sidebar-pp-date {
	font-size: 12px;
	color: #888;
}

/* Responsive CSS */
@media (max-width: 991px) {

	.col-blog-main,
	.col-blog-sidebar {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.col-blog-sidebar {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	/* .col-md-4 {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 20px;
	} */

	.post-title {
		font-size: 24px;
	}
}



/************************************/
/***     20. Project Page css  	  ***/
/************************************/

.page-project {
	padding: 100px 0;
}

/************************************/
/***    21. Project Single css    ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-content {
	margin-right: 20px;
}

.project-featured-image {
	margin-bottom: 30px;
}

.project-featured-image figure {
	display: block;
}

.project-featured-image img {
	border-radius: 40px;
	aspect-ratio: 1/ 0.6;
	object-fit: cover;
}

.project-details-content {
	margin-bottom: 40px;
}

.project-details-title {
	margin-bottom: 30px;
}

.project-details-content p {
	margin-bottom: 30px;
}

.project-details-title h3 {
	font-size: 24px;
	font-weight: 700;
}

.project-details-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.project-details-content ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	width: calc(50% - 10px);
	padding-left: 30px;
}

.project-details-content ul li:before {
	content: '\f058';
	/* font-family: 'Font Awesome 5 Free'; */
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 4px;
	left: 0;
}

.project-gallery-title {
	margin-bottom: 30px;
}

.project-gallery-title h2 {
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
}

.project-gallery-items .project-gallery-item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 40px;
}

.project-sidebar {
	position: sticky;
	top: 20px;
}

.project-info-box {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 30px;
}

.project-info-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.project-info-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.project-info-item .icon-box {
	margin-right: 10px;
}

.project-info-item .icon-box img {
	max-width: 40px;
}

.project-info-content {
	width: calc(100% - 50px);
}

.project-info-content p {
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-info-content h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1em;
	text-transform: capitalize;
}

/************************************/
/***     22. Team Page css  	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***    23. Contact us Page css   ***/
/************************************/

.contact-information {
	padding: 100px 0 70px;
}

.contact-sidebar.page-contact-sidebar {
	transition: all 0.3s ease-in-out;
}

.contact-info-item {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.contact-info-item .icon-box {
	margin-bottom: 30px;
}

.contact-info-item .icon-box img {
	max-width: 50px;
}

.contact-info-body h3 {
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-info-body p {
	margin-bottom: 5px;
}

.contact-info-body p:last-child {
	margin-bottom: 0;
}

.contact-us.page-contact-us {
	background: var(--secondary-color);
}

.contact-social-list {
	margin-bottom: 100px;
}

.contact-social-list h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.contact-social-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li {
	display: inline-block;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li:last-child {
	margin-right: 0;
}

.contact-social-list ul li a {
	background-color: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
	height: 36px;
	width: 36px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.contact-sidebar.page-contact-sidebar .contact-social-list ul li:hover a {
	border-color: var(--white-color);
	color: var(--white-color);
}

.contact-social-list ul li a i {
	font-size: 18px;
}

.contact-sidebar.page-contact-sidebar .contact-info-image {
	width: 100%;
	max-width: 100%;
	text-align: center;
}

.contact-sidebar.page-contact-sidebar .contact-info-image img {
	width: 100%;
	filter: grayscale(0%);
	transition: all 0.3s ease-in-out;
}

.contact-sidebar.page-contact-sidebar:hover .contact-info-image img {
	filter: grayscale(80%);
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 600px;
}


/* ================================================
   CONTACT INFORMATION SECTION — contact_info.css
   Scoped to .ci-* prefix
   Dependencies : Bootstrap 5, Font Awesome 6
================================================ */

/* ══════════════════════════
   SECTION
══════════════════════════ */
.ci-section {
	padding: 70px 0 80px;
	background: var(--secondary-color, #f0f8ff);
}

/* ══════════════════════════
   COMPANY IDENTITY BAR
══════════════════════════ */
.ci-company-bar {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(232, 85, 38, 0.15);
}

.ci-company-name {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--primary-color, #1a1a1a);
	margin-bottom: 6px;
}

.ci-company-sub {
	color: #888;
	margin-bottom: 0;
	font-style: italic;
}

/* ══════════════════════════
   SECTION HEADING
══════════════════════════ */
.ci-header {
	text-align: center;
	margin-bottom: 48px;
}

.ci-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #e85526;
	margin-bottom: 10px;
}

.ci-heading {
	position: relative;
	display: inline-block;
	color: var(--primary-color, #1a1a1a);
	padding-bottom: 16px;
	margin-bottom: 0;
}

.ci-heading span {
	color: #e85526;
}

.ci-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 3px;
	border-radius: 2px;
	background: #e85526;
}

/* ══════════════════════════
   CARD
══════════════════════════ */
.ci-card {
	background: #fff;
	border-radius: 20px;
	padding: 36px 28px 32px;
	text-align: center;
	height: 100%;
	border: 1px solid rgba(232, 85, 38, 0.08);
	position: relative;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Top accent bar */
.ci-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #e85526;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.ci-card:hover::before {
	transform: scaleX(1);
}

.ci-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(232, 85, 38, 0.13);
}

/* ══════════════════════════
   ICON WITH RING ANIMATION
══════════════════════════ */
.ci-icon-wrap {
	position: relative;
	width: 76px;
	height: 76px;
	margin: 0 auto 24px;
}

.ci-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #fdf1ec;
	border: 2px solid #f5d5c8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #e85526;
	position: relative;
	z-index: 1;
	transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.ci-card:hover .ci-icon {
	background: #e85526;
	color: #fff;
	transform: scale(1.1);
}

/* Animated ring */
.ci-icon-ring {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px dashed rgba(232, 85, 38, 0.3);
	animation: ciRingSpin 8s linear infinite;
}

.ci-card:hover .ci-icon-ring {
	border-color: rgba(232, 85, 38, 0.6);
	animation-duration: 3s;
}

@keyframes ciRingSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* ══════════════════════════
   CARD BODY
══════════════════════════ */
.ci-card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

/* ── Tag pill ── */
.ci-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e85526;
	background: rgba(232, 85, 38, 0.08);
	border: 1px solid rgba(232, 85, 38, 0.2);
	border-radius: 30px;
	padding: 3px 12px;
	margin-bottom: 4px;
}

/* ── Card title ── */
.ci-card-title {
	color: var(--primary-color, #1a1a1a);
	font-weight: 700;
	margin-bottom: 6px;
	transition: color 0.25s ease;
}

.ci-card:hover .ci-card-title {
	color: #e85526;
}

/* ── Card text / links ── */
.ci-card-text {
	color: #777;
	text-decoration: none;
	line-height: 1.75;
	transition: color 0.25s ease;
}

.ci-card-text:hover {
	color: #e85526;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
	.ci-section {
		padding: 56px 0 64px;
	}

	.ci-card {
		padding: 30px 22px 28px;
	}

	.ci-icon,
	.ci-icon-wrap {
		width: 66px;
		height: 66px;
		font-size: 22px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.ci-section {
		padding: 48px 0 56px;
	}

	.ci-header {
		margin-bottom: 36px;
	}

	.ci-card {
		padding: 28px 20px 26px;
		border-radius: 16px;
	}

	.ci-icon,
	.ci-icon-wrap {
		width: 60px;
		height: 60px;
		font-size: 20px;
	}

	.ci-icon-wrap {
		margin-bottom: 18px;
	}
}




/************************************/
/***      24. FAQs Page css       ***/
/************************************/

.page-faq {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 20px;
}

.faq-category-box {
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 30px;
}

.faq-category-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-category-box ul li {
	margin-bottom: 20px;
	padding: 0 0 20px 35px;
	border-bottom: 1px solid var(--divider-color);
	position: relative;
}

.faq-category-box ul li:last-child {
	margin-bottom: 0px;
	padding: 0 0 0px 35px;
	border-bottom: none;
}

.faq-category-box ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	background: url('../images/readmore-arrow.svg') no-repeat center center;
	width: 20px;
	height: 20px;
}

.faq-category-box ul li a {
	display: block;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: 0.3s ease-in-out;
}

.faq-category-box ul li:hover a {
	color: var(--accent-color);
}

.page-faq .faq-section {
	margin-bottom: 60px;
}

.page-faq .faq-section:last-child {
	margin-bottom: 0;
}

.faq-section .faq-accordion {
	margin: 0;
}

.faq-section .faq-accordion .accordion-item {
	position: relative;
	background: none;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.faq-section .faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.faq-section .faq-accordion .accordion-item .accordion-button {
	font-size: 24px;
	font-weight: 700;
	border: none;
	box-shadow: none;
	padding: 10px 40px 10px 10px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-section .faq-accordion .accordion-button:not(.collapsed) {
	color: var(--accent-color);
}

.faq-section .faq-accordion .accordion-item .accordion-button::after,
.faq-section .faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%) rotate(-90deg);
	background-image: url("../images/long-arrow.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.faq-section .faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: translate(0px, -50%) rotate(0deg);
}

.faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body {
	padding: 10px 40px 10px 10px;
}

.faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
	margin: 0;
}

/************************************/
/***       25. 404 Page css       ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 60px;
}

.error-page .error-page-content {
	text-align: center;
}

.error-page-content-heading {
	margin-bottom: 30px;
}

.error-page-content-heading h2 {
	font-size: 56px;
}

.error-page-content-heading h2 span {
	color: var(--accent-color);
}

a.main-logo img {
	display: inline-block;
	max-width: 140px;
	margin-left: 5px;
}

.about-features-cards {
	margin-top: 20px;
	justify-content: space-around;
	display: flex;
	flex-wrap: wrap;
}

.feature-card {
	transition: box-shadow 0.3s, transform 0.3s;
	background: rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(2px);
	box-shadow: 0 6px 18px 0 rgba(30, 41, 99, 0.30), 0 2px 12px 0 rgba(42, 46, 77, 0.16) !important;
}

.feature-card:hover,
.feature-card:focus-within {
	box-shadow: 0 16px 64px 0 rgba(25, 55, 128, 0.45), 0 6px 18px 0 rgba(32, 33, 71, 0.16);
	transform: translateY(-8px) scale(1.035);
	z-index: 2;
	background: rgba(255, 255, 255, 0.98) !important;
}

/* Make sure logo image does NOT animate/move */
.feature-card .feature-logo img {
	transition: none !important;
}

#imageSlider .carousel-control-prev {
	background-color: #12223B !important;
}

#imageSlider .carousel-control-next {
	background-color: #12223B !important;
}

#imageSlider {
	position: relative;
}

#imageSlider .carousel-control-prev,
#imageSlider .carousel-control-next {
	width: 3rem;
	height: 3rem;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

#imageSlider .carousel-control-prev {
	left: -60px;
	/* push to outside */
}

#imageSlider .carousel-control-next {
	right: -60px;
	/* push to outside */
}

@media (max-width: 991.98px) {

	#imageSlider .carousel-control-prev,
	#imageSlider .carousel-control-next {
		left: 0 !important;
		right: 0 !important;
	}
}

/* Sticky Button */
.tmt-calculator-btn {
	/* position: fixed;
	right: 0;
	bottom: 35%;
	z-index: 9999; */
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	bottom: 0;
	margin: auto;
	height: 200px;
}

.tmt-calculator-btn a {
	background: var(--accent-color);
	color: #fff;
	padding: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px 0px 0px 8px;
	;
	display: inline-block;
	writing-mode: vertical-rl;
	letter-spacing: 1px;
}

.tmt-calculator-btn a:hover {
	background: #c93d0f;
}

/* ////////////////////// about us card //////////////////////// */

/* SECTION */

/* CARD PREMIUM STYLE */
.service-card {
	position: relative;
	background: linear-gradient(145deg, #12223B, #0f181d);
	padding: 25px 15px;
	border-radius: 14px;
	border: 1px solid rgba(179, 152, 90, 0.25);
	backdrop-filter: blur(10px);
	transition: all .4s ease;
	overflow: hidden;
	height: 100%;
	text-align: center;
}

/* GOLD LEFT ACCENT */
.service-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 30px;
	height: 50%;
	width: 3px;
	background: linear-gradient(to bottom, transparent, #e85526, transparent);
}

/* SHINE EFFECT */
.service-card::after {
	content: "";
	position: absolute;
	top: -100%;
	left: -45%;
	width: 50%;
	height: 300%;
	background: linear-gradient(120deg,
			transparent,
			rgba(255, 255, 255, 0.15),
			transparent);
	transform: rotate(25deg);
	transition: .6s;
}

/* HOVER */
.service-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: #e85526;
	box-shadow:
		0 0 25px rgba(179, 152, 90, .15),
		0 10px 40px rgba(0, 0, 0, .6);
}

.service-card:hover::after {
	left: 130%;
}

/* TITLE */
.service-card h4 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 12px;
	font-weight: 600;
}

/* TEXT */
.service-card p {
	font-size: 15px;
	color: #aab8c2;
	line-height: 1.6;
}

/* HOVER TEXT */
.service-card:hover h4 {
	color: #e85526;
}

.service-card:hover p {
	color: #ffffff;
}


/* footer logo */
.cert-logos-grid {
	/* display: flex;
	gap: 20px;
	margin-top: 30px;
	justify-content: center; */
}

.cert-logos-grid figure {
	background: #fff;
	border-radius: 8px;
	padding: 8px;
}

.cert-logos-grid figure img {
	width: 100%;
	height: 70px;
	object-fit: contain;
}


/* privacy and copyright */
.footer-policy-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-policy-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s;
	white-space: nowrap;
}

.footer-policy-links a:hover {
	color: #F5A623;
}

.footer-policy-links .divider {
	color: rgba(255, 255, 255, 0.3);
	font-size: 13px;
}


/* whatapp icons */

.whatsapp-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 9999;
	width: 55px;
	height: 55px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
	transform: translateY(-4px) scale(1.08);
	box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
	color: #fff;
}

/* Pulse ring animation */
.whatsapp-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #25D366;
	opacity: 0.4;
	animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
	0% {
		transform: scale(1);
		opacity: 0.4;
	}

	70% {
		transform: scale(1.6);
		opacity: 0;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		left: 20px;
		width: 48px;
		height: 48px;
		font-size: 24px;
	}
}


/************************************/
/***     26. responsive css       ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.navbar {
		padding: 20px 0px;
	}

	.main-menu ul li {
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px) {

	#magic-cursor {
		display: none !important;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.light-bg-section {
		margin: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 60px;
	}

	.section-title h2 {
		font-size: 46px;
	}

	.section-title h3 {
		margin-bottom: 15px;
	}

	.section-row .section-title p {
		max-width: 100%;
	}

	.section-title p {
		margin-top: 15px;
	}

	.section-btn {
		margin-top: 15px;
	}

	.btn-default {
		font-size: 16px;
		padding: 18px 55px 18px 25px;
	}

	.btn-default::before {
		transform: translate(-25px, -50%);
	}

	.btn-default:hover:before {
		transform: translate(-22px, -50%);
	}

	.btn-default.btn-highlighted {
		padding: 17px 55px 17px 25px;
	}

	.btn-large {
		font-size: 18px;
		padding: 18px 55px 18px 20px;
	}

	header.main-header {
		margin: 0px;
	}

	.navbar {
		padding: 20px 0px;
	}

	.hero.bg-section {
		margin: 0 0px;
		/* margin-top: -103px; */
		padding: 200px 0 100px;
		border-radius: 0;
	}

	.hero-slider-layout .hero-slide {
		/* padding: 200px 0 100px; */
	}

	.hero-slider-layout .swiper-pagination {
		bottom: 50px;
	}

	.hero-content .section-title p {
		font-size: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-image {
		text-align: center;
		margin-bottom: 30px;
	}

	.about-content {
		margin-left: 0px;
	}

	.about-content-body ul {
		padding: 20px;
	}

	.about-content-body ul li {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.about-content-body ul li:before {
		font-size: 18px;
	}

	.about-content-body {
		margin-bottom: 30px;
	}

	.about-support-content p {
		margin-bottom: 0px;
	}

	.about-support-content h3 {
		font-size: 22px;
	}

	.our-service {
		background-size: 50% auto;
		padding: 50px 0;
	}

	.service-body {
		right: 20px;
		left: 20px;
	}

	.service-body-title h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.service-content p {
		margin-bottom: 15px;
	}

	.why-choose-us {
		padding: 50px 0 20px;
	}

	.why-choose-item {
		padding: 30px 20px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.why-choose-item .icon-box img {
		max-width: 60px;
	}

	.why-choose-content {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-content h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.why-choose-counter h3 {
		font-size: 46px;
	}

	.our-projects {
		background-size: 50% auto;
		padding: 50px 0;
	}

	.project-body {
		right: 20px;
		left: 20px;
	}

	.project-body-title h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.project-content p {
		margin-bottom: 15px;
	}

	.cta-box {
		background-size: 80% auto;
		padding: 50px 0;
	}

	.cta-box-image {
		right: 0;
	}

	.cta-box-image img {
		width: 300px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-item {
		/* padding: 20px; */
	}

	.testimonial-rating {
		margin-bottom: 20px;
	}

	.testimonial-rating i {
		font-size: 18px;
	}

	.testimonial-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.author-content h3 {
		font-size: 22px;
	}

	/* .our-faqs {
		background-size: 50% auto;
		padding: 50px 0;
	}

	.our-faqs-images {
		width: 100%;
		max-width: 565px;
		margin: 0 auto;
		margin-bottom: 30px;
	} */

	.faq-accordion {
		margin-left: 0px;
	}

	.faq-accordion .accordion-item .accordion-button {
		font-size: 22px;
		/* padding: 10px 40px 10px 10px; */
	}

	.faq-accordion .accordion-item {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		background-size: contain;
		width: 26px;
		height: 26px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-item-content {
		padding: 30px 20px;
	}

	.post-item-body h2 {
		font-size: 22px;
	}

	.contact-us {
		background-size: auto;
		padding: 50px 0;
	}

	.contact-sidebar {
		padding: 30px 20px 0;
	}

	.contact-info .icon-box {
		margin-bottom: 15px;
	}

	.contact-info-content h3 {
		font-size: 22px;
	}

	.contact-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 12px;
	}

	.main-footer {
		padding: 50px 0;
	}

	.about-footer {
		/* margin-bottom: 40px; */
	}

	.footer-logo {
		margin-bottom: 30px;
	}

	.footer-logo img {
		max-width: 180px;
	}

	.footer-links h3 {
		font-size: 22px;
		margin-bottom: 30px;
	}

	.footer-contact-box .footer-info-box {
		margin-bottom: 20px;
		/* padding-left: 0px; */
	}

	@media (max-width: 426px) {
		.footer-contact-box .footer-info-box {
			/* margin-bottom: 20px; */
			padding-left: 0px;
		}

		.cert-logos-grid {
			margin-top: 0px;
		}

		.about-footer {
			padding: 0px !important;
			margin-top: 0px;
		}

		.footer-contact-box .footer-info-box {
			margin-bottom: 15px;
		}

	}

	.footer-copyright {
		/* margin-top: 60px; */
		padding: 15px 0;
	}

	.page-header {
		margin: 0 0;
		border-radius: 0;
		padding: 170px 0 80px;
		/* margin-top: -90px; */
	}

	.page-header:before {
		border-radius: 0px;
	}

	.page-header-box h1 {
		font-size: 46px;
		margin-bottom: 20px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 20px;
	}

	.page-about-us {
		padding: 50px 0;
	}

	.about-us-image {
		text-align: center;
		margin-bottom: 30px;
	}

	.about-us-content {
		margin-left: 0px;
	}

	.about-us-content-body ul {
		padding: 20px;
	}

	.about-us-content-body ul li {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.about-us-content-body ul li:before {
		font-size: 18px;
	}

	.about-us-content-body {
		margin-bottom: 30px;
	}

	.about-us-support-content h3 {
		font-size: 22px;
	}

	.our-company-history {
		padding: 50px 0;
	}

	.company-history-image {
		margin-bottom: 30px;
	}

	.company-history-img {
		text-align: center;
	}

	.company-experience {
		max-width: 175px;
		padding: 30px;
	}

	.company-experience-content h3 {
		font-size: 46px;
	}

	.our-mission-vision {
		padding: 50px 0 20px;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 20px;
	}

	.mission-vision-item .icon-box img {
		max-width: 60px;
	}

	.mission-vision-item .mission-vision-content h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.mission-vision-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.intro-video-box .video-image img {
		aspect-ratio: 1/0.55;
	}

	.video-play-button a {
		width: 70px;
		height: 70px;
	}

	.video-play-button a i {
		font-size: 26px;
	}

	.what-we-do {
		padding: 50px 0 20px;
	}

	.what-we-do .section-title {
		max-width: 100%;
	}

	.company-counter-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
		padding: 40px 20px;
	}

	.company-counter-item .company-counter-content h3 {
		font-size: 46px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-content {
		margin-bottom: 15px;
	}

	.team-content h3 {
		font-size: 22px;
		margin-bottom: 5px;
	}

	.page-service {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.service-categories-list {
		padding: 20px;
	}

	.service-categories-list h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.service-categories-list ul li {
		margin-bottom: 15px;
		padding: 0 0 15px 25px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-box .cta-content h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.sidebar-cta-box .cta-content {
		margin-bottom: 30px;
	}

	.service-single-content p {
		margin-bottom: 20px;
	}

	.service-sustainable-content h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.service-benefit {
		padding: 50px 0 20px;
	}

	.service-benefit .service-benefit-item {
		padding: 20px;
	}

	.service-benefit-item .icon-box {
		margin-bottom: 20px;
	}

	.service-benefit-item .icon-box img {
		max-width: 60px;
	}

	.service-benefit-item .service-benefit-content h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.working-process {
		padding: 50px 0 20px;
	}

	.working-process-item {
		padding: 20px;
	}

	.working-process-item .step-number {
		margin-bottom: 20px;
	}

	.working-process-item .step-number h2 {
		font-size: 32px;
	}

	.working-process-item .working-process-content h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-blog .blog-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.post-pagination {
		margin-top: 10px;
	}

	.post-single-meta ol li i {
		font-size: 20px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background: var(--secondary-color) url("../images/icon-blockquote.svg") no-repeat 30px 36px;
		background-size: 45px;
		padding: 30px 30px 30px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tag-links {
		padding: 0 0px;
	}

	.post-tags {
		margin-bottom: 10px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-project {
		padding: 50px 0;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-single-content {
		margin-right: 0px;
		margin-bottom: 40px;
	}

	.project-details-content p {
		margin-bottom: 20px;
	}

	.project-details-title {
		margin-bottom: 20px;
	}

	.project-details-title h3 {
		font-size: 22px;
	}

	.project-details-content {
		margin-bottom: 30px;
	}

	.project-gallery-title h2 {
		font-size: 22px;
	}

	.project-info-box {
		padding: 20px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.contact-information {
		padding: 50px 0 20px;
	}

	.contact-info-item {
		padding: 20px;
	}

	.contact-info-item .icon-box {
		margin-bottom: 20px;
	}

	.contact-info-item .icon-box img {
		max-width: 40px;
	}

	.contact-info-body h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.page-faq {
		padding: 50px 0;
	}

	.faq-sidebar {
		margin-bottom: 30px;
	}

	.faq-category-box {
		padding: 20px;
	}

	.faq-category-box ul li {
		margin-bottom: 15px;
		padding: 0 0 15px 35px;
	}

	.page-faq .faq-section {
		margin-bottom: 40px;
	}

	.faq-section .faq-accordion .accordion-item {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.faq-section .faq-accordion .accordion-item .accordion-button {
		font-size: 22px;
		padding: 10px 40px 10px 10px;
	}

	.faq-section .faq-accordion .accordion-item .accordion-button::after,
	.faq-section .faq-accordion .accordion-item .accordion-button.collapsed::after {
		background-size: contain;
		width: 26px;
		height: 26px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 30px;
	}

	.error-page-content-heading {
		margin-bottom: 20px;
	}

	.error-page-content-heading h2 {
		font-size: 46px;
	}
}

@media only screen and (max-width: 767px) {

	body {
		font-size: 16px;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 40px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.section-title h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.btn-default {
		padding: 16px 50px 16px 20px;
	}

	.btn-default::before {
		transform: translate(-20px, -50%);
	}

	.btn-default:hover:before {
		transform: translate(-17px, -50%);
	}

	.btn-default.btn-highlighted {
		padding: 15px 50px 15px 20px;
	}

	.btn-large {
		font-size: 16px;
		padding: 18px 50px 18px 20px;
	}

	.hero.bg-section {
		/* padding: 160px 0 60px; */
	}

	.hero-slider-layout .hero-slide {
		/* padding: 160px 0 100px; */
	}

	.hero-content .section-title p {
		font-size: 18px;
	}

	.hero-content-body .btn-default.btn-highlighted {
		margin-left: 0px;
		margin-top: 10px;
	}

	.about-content-body ul {
		padding: 15px;
	}

	.about-content-body ul li {
		font-size: 16px;
		padding-left: 25px;
	}

	.about-content-body ul li:before {
		font-size: 16px;
	}

	.about-content-footer {
		display: block;
	}

	.about-contact-support {
		margin-left: 0px;
		margin-top: 15px;
	}

	.about-contact-support .icon-box {
		margin-right: 15px;
	}

	.about-contact-support .icon-box img {
		max-width: 35px;
	}

	.about-support-content {
		width: calc(100% - 50px);
	}

	.about-support-content h3 {
		font-size: 20px;
	}

	.service-body-title h3 {
		font-size: 20px;
	}

	.service-footer-btn {
		margin-top: 10px;
	}

	.why-choose-item {
		padding: 20px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 15px;
	}

	.why-choose-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.why-choose-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.why-choose-counter h3 {
		font-size: 36px;
	}

	.project-body-title h3 {
		font-size: 20px;
	}

	.project-footer-btn {
		margin-top: 10px;
	}

	.cta-box-image img {
		width: 150px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.faqs-img-2 img {
		width: 140px;
	}

	.author-content h3 {
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-button {
		font-size: 18px;
		line-height: 1.2em;
		/* padding: 10px 35px 10px 0px; */
	}

	.faq-accordion .accordion-item .accordion-collapse .accordion-body {
		padding: 10px 35px 10px 0px;
	}

	.post-item-body h2 {
		font-size: 20px;
	}

	.contact-sidebar {
		margin-bottom: 30px;
	}

	.contact-info .icon-box {
		margin-bottom: 10px;
	}

	.contact-info .icon-box img {
		max-width: 30px;
	}

	.contact-info-content h3 {
		font-size: 20px;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.footer-logo img {
		max-width: 160px;
	}

	.footer-links {
		margin-bottom: 40px;
	}

	.main-footer .col-12:last-child .footer-links {
		margin-bottom: 0;
	}

	.footer-links h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 15px;
	}

	.footer-copyright {
		margin-top: 40px;
		text-align: center
	}

	.footer-copyright-text {
		margin-bottom: 10px;
	}

	.footer-copyright .footer-social-links ul {
		text-align: center;
	}

	.page-header {
		padding: 60px 0 60px;
	}

	.page-header-box h1 {
		font-size: 36px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.about-us-content-body ul {
		padding: 15px;
	}

	.about-us-content-body ul li {
		font-size: 16px;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.about-us-content-body ul li:before {
		font-size: 16px;
	}

	.about-us-content-footer {
		display: block;
	}

	.about-us-contact-support {
		margin-left: 0px;
		margin-top: 15px;
	}

	.about-us-contact-support .icon-box {
		margin-right: 15px;
	}

	.about-us-contact-support .icon-box img {
		max-width: 35px;
	}

	.about-us-support-content {
		width: calc(100% - 50px);
	}

	.about-us-support-content h3 {
		font-size: 20px;
	}

	.company-history-image {
		padding-bottom: 50px;
	}

	.company-experience {
		padding: 15px;
		bottom: 0;
		right: 110px;
	}

	.company-experience-content h3 {
		font-size: 36px;
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 15px;
	}

	.mission-vision-item .mission-vision-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.company-counter-item {
		padding: 30px 20px;
	}

	.company-counter-item .company-counter-content h3 {
		font-size: 36px;
	}

	.team-body {
		padding: 20px;
	}

	.team-content h3 {
		font-size: 20px;
	}

	.service-categories-list h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box .cta-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-sustainable-img-1 {
		margin-bottom: 30px;
	}

	.service-sustainable-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.service-benefit-item .icon-box {
		margin-bottom: 15px;
	}

	.service-benefit-item .service-benefit-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.working-process-item .step-number {
		margin-bottom: 15px;
	}

	.working-process-item .step-number h2 {
		font-size: 24px;
	}

	.working-process-item .working-process-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.post-single-meta ol li i {
		font-size: 18px;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 20px 20px;
		background-size: 35px;
		padding: 55px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 30px;
	}

	.tag-links {
		font-size: 20px;
	}

	.project-single-content {
		margin-bottom: 30px;
	}

	.project-featured-image {
		margin-bottom: 20px;
	}

	.project-details-title h3 {
		font-size: 20px;
	}

	.project-details-content ul {
		display: block;
	}

	.project-details-content ul li {
		width: 100%;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.project-details-content ul li:last-child {
		margin-bottom: 0;
	}

	.project-details-content ul li:before {
		font-size: 18px;
	}

	.project-gallery-title h2 {
		font-size: 20px;
	}

	.project-gallery-item {
		margin-bottom: 20px;
	}

	.contact-sidebar.page-contact-sidebar {
		margin-bottom: 0;
		margin-top: 30px;
	}

	.contact-info-item .icon-box img {
		max-width: 40px;
	}

	.contact-social-list {
		margin-bottom: 30px;
	}

	.contact-info-body h3 {
		font-size: 20px;
	}

	.contact-social-list h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.faq-section .faq-accordion .accordion-item .accordion-button {
		font-size: 20px;
		padding: 10px 35px 10px 0px;
	}

	.faq-section .faq-accordion .accordion-item .accordion-collapse .accordion-body {
		padding: 10px 35px 10px 0px;
	}

	.error-page-content-heading h2 {
		font-size: 36px;
	}
}




/* ══════════════════════════
   HERO
══════════════════════════ */

/* ══════════════════════════
   SECTION HEADING
══════════════════════════ */
.media-heading {
	text-align: center;
	padding: 70px 0 50px;
	background: #0C54A0;
}

.media-heading__label {
	display: inline-block;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--accent-color);
	background: rgba(232, 85, 38, 0.08);
	border: 1px solid rgba(232, 85, 38, 0.2);
	border-radius: 30px;
	padding: 5px 18px;
	margin-bottom: 16px;
}

.media-heading__title {
	line-height: 1.15;
	margin-bottom: 14px;
	font-weight: 900;
	color: #fff;
}

.media-heading__title em {
	font-style: italic;
	color: var(--accent-color);
}

.media-heading__desc {
	font-size: 16px;
	line-height: 1.7;
	font-weight: 900;
	color: #e85222;
}

/* Reduce top padding on media-section since heading now handles spacing */
.media-section {
	padding: 0 0 80px;
}



.media-filterbar {
	background: #fff;

}

.media-filterbar__inner {
	display: flex;
	gap: 6px;
	padding: 12px 6px;
	overflow-x: auto;
	scrollbar-width: none;
	margin: 40px 0px;
	border-bottom: 2px solid #000000ab;
}

.media-filterbar__inner::-webkit-scrollbar {
	display: none;
}

.mf-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	padding: 8px 22px;
	border-radius: 30px;
	/* border: 1.5px solid var(--border); */
	background: transparent;
	color: #e85222;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.mf-btn:hover {
	color: var(--accent-color);
	border-color: rgba(232, 85, 38, 0.3);
	background: rgba(232, 85, 38, 0.05);
}

.mf-btn.active {
	background: #e85222;
	color: #ffffff;
	border-color: var(--accent-color);
	box-shadow: 0 4px 16px rgba(232, 85, 38, 0.28);
}

/* ══════════════════════════
   MEDIA SECTION
══════════════════════════ */

/* ══════════════════════════
   CARD
══════════════════════════ */
.mg-item {
	display: flex;
}

.mg-card {
	width: 100%;
	background: var(--white-color);
	/* border-radius: var(--radius); */
	/* border: 1px solid var(--border); */
	/* box-shadow: var(--shadow); */
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.mg-card:hover {
	transform: translateY(-6px);
	/* box-shadow: var(--shadow-hov); */
}

/* Hidden when filtered */
.mg-item.hidden {
	display: none !important;
}

/* ── Media area — FIXED equal height ── */
.mg-media {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9 ratio — all cards same height */
	overflow: hidden;
	background: #d8e8f4;
	flex-shrink: 0;
}

/* ── Image inside media ── */
.mg-img-link {
	position: absolute;
	inset: 0;
	display: block;
}

.mg-img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.mg-card:hover .mg-img-link img {
	transform: scale(1.05);
}

/* Image hover overlay */
.mg-img-overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 42, 74, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mg-img-overlay i {
	font-size: 28px;
	color: #fff;
}

.mg-card:hover .mg-img-overlay {
	opacity: 1;
}

/* ── YouTube iframe — fills the padded wrapper ── */
.mg-video-wrap {
	position: absolute;
	inset: 0;
}

.mg-video-wrap iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* ── Badge ── */
.mg-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 20px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.mg-badge--video {
	background: rgba(220, 0, 0, 0.88);
	color: #fff;
}

.mg-badge--image {
	background: rgba(13, 42, 74, 0.88);
	color: #fff;
}

/* ── Body ── */
.mg-body {
	padding: 16px 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 7px;
	border-top: 3px solid transparent;
	transition: border-color 0.3s ease;
}

.mg-card:hover .mg-body {
	border-color: var(--accent-color);
}

.mg-cat {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-color);
}

.mg-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.45;
	margin: 0;
	transition: color 0.25s ease;
}

.mg-card:hover .mg-title {
	color: var(--accent-color);
}

/* ══════════════════════════
   EMPTY STATE
══════════════════════════ */
.mg-empty {
	text-align: center;
	padding: 60px 20px;
	/* color: var(--muted); */
}

/* Leader ship page css--------------------------------- */
/* ================================================
   LEADERSHIP TEAM — leadership_team.css
================================================ */

/* ── Section ── */
.leadership-team {
	padding: 100px 0 70px;
}

/* ── Card (now an <a> tag) ── */
.leadership-team__item {
	display: block;
	text-decoration: none;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
	background: var(--white-color, #fff);
	cursor: pointer;
	margin-bottom: 10px;
	outline: none;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.leadership-team__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(13, 42, 74, 0.12);
}

.leadership-team__item:focus-visible {
	box-shadow: 0 0 0 3px var(--accent-color, #e85526);
}

/* Image */
.leadership-team__image {
	position: relative;
	overflow: hidden;
}

.leadership-team__image figure {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 1 / 1.15;
}

.leadership-team__image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.5s ease;
}

.leadership-team__item:hover .leadership-team__image figure img {
	transform: scale(1.06);
}

/* Overlay */
.leadership-team__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg,
			rgba(232, 85, 38, 0.82) 0%,
			rgba(13, 42, 74, 0.90) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.leadership-team__item:hover .leadership-team__overlay {
	opacity: 1;
}

.leadership-team__cta {
	padding: 11px 26px;
	border: 2px solid rgba(255, 255, 255, 0.70);
	border-radius: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.leadership-team__item:hover .leadership-team__cta {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
}

/* Card body */
.leadership-team__body {
	padding: 18px 22px;
	border-top: 3px solid var(--accent-color, #e85526);
}

.leadership-team__body h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 4px;
	color: var(--primary-color, #0d2a4a);
	transition: color 0.25s ease;
}

.leadership-team__item:hover .leadership-team__body h3 {
	color: var(--accent-color, #e85526);
}

.leadership-team__body p {
	font-size: 13px;
	/* color: var(--body-color, #777); */
	margin: 0;
}

/* ════════════════════════════════════
   MODAL  (JS-driven)
════════════════════════════════════ */

.lt-modal-wrap {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 42, 74, 0.60);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.lt-modal-wrap.is-open {
	opacity: 1;
	pointer-events: all;
}

.lt-modal-box {
	position: relative;
	display: flex;
	width: 92%;
	max-width: 800px;
	max-height: 88vh;
	background: var(--white-color, #fff);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(13, 42, 74, 0.22);
	transform: translateY(18px);
	transition: transform 0.35s ease;
}

.lt-modal-wrap.is-open .lt-modal-box {
	transform: translateY(0);
}

.lt-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--divider-color, #ddd);
	background: var(--white-color, #fff);
	color: var(--primary-color, #0d2a4a);
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lt-modal-close:hover {
	background: var(--accent-color, #e85526);
	border-color: var(--accent-color, #e85526);
	color: #fff;
}

.lt-modal-photo {
	width: 360px;
	flex-shrink: 0;
	overflow: hidden;
}

.lt-modal-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.lt-modal-text {
	flex: 1;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--accent-color, #e85526) transparent;
}

.lt-modal-text::-webkit-scrollbar {
	width: 4px;
}

.lt-modal-text::-webkit-scrollbar-thumb {
	background: var(--accent-color, #e85526);
	border-radius: 2px;
}

.lt-modal-role {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-color, #e85526);
	background: rgba(232, 85, 38, 0.08);
	border: 1px solid rgba(232, 85, 38, 0.22);
	border-radius: 30px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

.lt-modal-name {
	font-size: 26px;
	font-weight: 800;
	color: var(--primary-color, #0d2a4a);
	margin: 0 0 16px;
}

.lt-modal-divider {
	width: 48px;
	height: 3px;
	background: var(--accent-color, #e85526);
	border-radius: 2px;
	margin-bottom: 16px;
}

.lt-modal-bio {
	font-size: 15px;
	line-height: 1.80;
	/* color: var(--body-color, #555); */
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.lt-modal-box {
		flex-direction: column;
		max-height: 92vh;
		overflow-y: auto;
		border-radius: 20px;
	}

	.lt-modal-photo {
		width: 100%;
		height: 240px;
		flex-shrink: 0;
	}

	.lt-modal-text {
		padding: 28px 24px 32px;
		overflow-y: visible;
	}

	.lt-modal-name {
		font-size: 22px;
	}
}

/* -----------------------------------------Events page CSS -------------------------------------------*/

/* ═══════════════════════════════════════════
       SCOPED WRAPPER  –  #stmt-events-page
    ═══════════════════════════════════════════ */
#stmt-events-page {
	background: #f8f5f1;
	min-height: 100vh;
}

/* ── Hero Banner ── */
#stmt-events-page .stmt-events-hero {
	background: linear-gradient(135deg, #0C54A0 0%, #0a3f7a 60%, #071e40 100%);
	padding: 80px 0px;
	position: relative;
	overflow: hidden;
}

#stmt-events-page .stmt-events-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(239, 127, 26, .18) 0%, transparent 55%),
		radial-gradient(circle at 10% 80%, rgba(232, 82, 34, .14) 0%, transparent 50%);
	pointer-events: none;
}

#stmt-events-page .stmt-events-hero .hero-label {
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #EF7F1A;
	margin-bottom: 12px;
}

#stmt-events-page .stmt-events-hero h1 {
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 8px;
}

#stmt-events-page .stmt-events-hero h1 span {
	color: #EF7F1A;
}

#stmt-events-page .stmt-events-hero p.lead {
	color: rgba(255, 255, 255, .7);
	max-width: 480px;
}

/* ── Accent bar ── */
#stmt-events-page .stmt-accent-bar {
	height: 5px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
}

/* ── Controls strip ── */
#stmt-events-page .stmt-events-controls {
	background: #fff;
	border-bottom: 1px solid rgba(12, 84, 160, .08);
	padding: 22px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 16px rgba(12, 84, 160, .06);
}

/* Search */
#stmt-events-page .stmt-search-wrap {
	position: relative;
}

#stmt-events-page .stmt-search-wrap input {
	border: 2px solid #e3e8f0;
	border-radius: 8px;
	padding: 10px 48px 10px 20px;
	width: 100%;
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
	background: #f8f5f1;
	color: #1a1a1a;
}

#stmt-events-page .stmt-search-wrap input:focus {
	outline: none;
	border-color: #EF7F1A;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(239, 127, 26, .12);
}

#stmt-events-page .stmt-search-wrap .stmt-search-btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: #EF7F1A;
	border: none;
	border-radius: 6px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

#stmt-events-page .stmt-search-wrap .stmt-search-btn:hover {
	background: #E85222;
}

/* Year pills */
#stmt-events-page .stmt-year-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

#stmt-events-page .stmt-year-pill {
	font-weight: 600;
	letter-spacing: .06em;
	padding: 6px 16px;
	border-radius: 50px;
	border: 2px solid #e0e6ef;
	background: transparent;
	color: #0C54A0;
	cursor: pointer;
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
	white-space: nowrap;
}

#stmt-events-page .stmt-year-pill:hover,
#stmt-events-page .stmt-year-pill.active {
	background: #0C54A0;
	border-color: #0C54A0;
	color: #fff;
}

#stmt-events-page .stmt-year-pill.active {
	box-shadow: 0 4px 12px rgba(12, 84, 160, .25);
}

/* ── Events grid ── */
#stmt-events-page .stmt-events-grid-section {
	padding: 52px 0 72px;
}

#stmt-events-page .stmt-results-meta {
	color: #6b6b6b;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 8px;
}

#stmt-events-page .stmt-results-meta strong {
	color: #0C54A0;
	font-weight: 600;
}

/* Card */
#stmt-events-page .stmt-event-card {
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 24px rgba(12, 84, 160, .10);
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
}

#stmt-events-page .stmt-event-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(232, 82, 34, .22);
	border-color: rgba(239, 127, 26, .25);
}

#stmt-events-page .stmt-card-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/5;
	background: #d0d8e8;
}

#stmt-events-page .stmt-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
	display: block;
}

#stmt-events-page .stmt-event-card:hover .stmt-card-img-wrap img {
	transform: scale(1.06);
}


#stmt-events-page .stmt-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(12, 84, 160, .55) 0%, transparent 55%);
	opacity: 0;
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

#stmt-events-page .stmt-event-card:hover .stmt-card-overlay {
	opacity: 1;
}

#stmt-events-page .stmt-card-body {
	padding: 16px 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#stmt-events-page .stmt-card-title {
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin: 0;
	transition: color .2s;
	font-size: 20px;
}

#stmt-events-page .stmt-event-card:hover .stmt-card-title {
	color: #0C54A0;
}

#stmt-events-page .stmt-card-meta {
	color: #6b6b6b;
	display: flex;
	align-items: center;
	gap: 6px;
}

#stmt-events-page .stmt-card-meta i {
	color: #EF7F1A;
}

#stmt-events-page .stmt-card-arrow {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	color: #0C54A0;
	letter-spacing: .04em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateX(-6px);
	transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

#stmt-events-page .stmt-event-card:hover .stmt-card-arrow {
	opacity: 1;
	transform: translateX(0);
}

/* Empty state */
#stmt-events-page .stmt-empty {
	text-align: center;
	padding: 72px 24px;
	display: none;
}

#stmt-events-page .stmt-empty i {
	color: #c9d3e0;
	margin-bottom: 16px;
}

#stmt-events-page .stmt-empty p {
	color: #6b6b6b;
}

#stmt-events-page .stmt-empty strong {
	color: #1a1a1a;
}

/* Divider accent */
#stmt-events-page .stmt-section-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #EF7F1A;
	margin-bottom: 6px;
}

#stmt-events-page .stmt-section-tag::before {
	content: '';
	display: block;
	width: 24px;
	height: 2px;
	background: #EF7F1A;
}

/* ── Responsive tweaks ── */
@media (max-width: 576px) {
	#stmt-events-page .stmt-events-hero {
		padding: 52px 0 40px;
	}

	#stmt-events-page .stmt-year-pills {
		gap: 6px;
	}
}

/* Animation on load */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#stmt-events-page .stmt-card-col {
	animation: fadeUp .45s ease both;
}

#stmt-events-page .stmt-card-col:nth-child(1) {
	animation-delay: .05s;
}

#stmt-events-page .stmt-card-col:nth-child(2) {
	animation-delay: .10s;
}

#stmt-events-page .stmt-card-col:nth-child(3) {
	animation-delay: .15s;
}

#stmt-events-page .stmt-card-col:nth-child(4) {
	animation-delay: .20s;
}

#stmt-events-page .stmt-card-col:nth-child(5) {
	animation-delay: .25s;
}

#stmt-events-page .stmt-card-col:nth-child(6) {
	animation-delay: .30s;
}

#stmt-events-page .stmt-card-col:nth-child(7) {
	animation-delay: .35s;
}

#stmt-events-page .stmt-card-col:nth-child(8) {
	animation-delay: .40s;
}

#stmt-events-page .stmt-card-col:nth-child(9) {
	animation-delay: .45s;
}




/*----------------------- Accrediation and Certificate-----------------------  */

/* ── HERO ── */
.shreetmt-accredi .sa-hero {
	padding: 80px 0 40px;
	background: #0C54A0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.shreetmt-accredi .sa-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 10%, rgba(239, 127, 26, 0.22) 0%, transparent 55%),
		radial-gradient(ellipse at 10% 90%, rgba(232, 82, 34, 0.18) 0%, transparent 55%);
	pointer-events: none;
}

.shreetmt-accredi .sa-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A 0%, #E85222 100%);
}

.shreetmt-accredi .sa-hero__eyebrow {
	display: inline-block;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 6px;
	font-size: 0.72rem;
	text-transform: uppercase;
	margin-bottom: 12px;
	position: relative;
}

.shreetmt-accredi .sa-hero__title {
	color: #ffffff;
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	letter-spacing: 1.5px;
	margin-bottom: 0;
	position: relative;
}

.shreetmt-accredi .sa-hero__line {
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #EF7F1A 0%, #E85222 100%);
	margin: 16px auto 0;
	position: relative;
}

@media (max-width: 575px) {
	.shreetmt-accredi .sa-hero {
		padding: 48px 0 28px;
	}
}


.shreetmt-accredi {
	background: #f5f6f8;
}

/* ── GRID AREA ── */
.shreetmt-accredi .sa-grid {
	padding: 56px 0 32px;
}

.shreetmt-accredi .sa-row>[class*="col-"] {
	margin-bottom: 28px;
}

/* ── CARD ── */
.shreetmt-accredi .sa-card {
	background: #ffffff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 18px rgba(12, 84, 160, 0.08);
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.shreetmt-accredi .sa-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 42px rgba(232, 82, 34, 0.14);
}

/* top gradient bar */
.shreetmt-accredi .sa-card__bar {
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A 0%, #E85222 100%);
	flex-shrink: 0;
}

.shreetmt-accredi .sa-card__img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef2f8;
	padding: 0;
	overflow: hidden;
	flex-shrink: 0;
	height: 240px;
	position: relative;
}

.shreetmt-accredi .sa-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.35s ease;
}

.shreetmt-accredi .sa-card:hover .sa-card__img-wrap img {
	transform: scale(1.04);
}

/* hover overlay on image */
.shreetmt-accredi .sa-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(12, 84, 160, 0.72);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	opacity: 0;
	transition: opacity 0.28s ease;
}

.shreetmt-accredi .sa-card:hover .sa-card__overlay {
	opacity: 1;
}

.shreetmt-accredi .sa-card__btn {
	display: inline-block;
	padding: 9px 24px;
	border-radius: 24px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.4px;
	background: #ffffff;
	color: #0C54A0;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	border: 2px solid #ffffff;
}

.shreetmt-accredi .sa-card__btn:hover {
	background: #EF7F1A;
	border-color: #EF7F1A;
	color: #ffffff;
}

/* card body */
.shreetmt-accredi .sa-card__body {
	padding: 14px 16px 18px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.shreetmt-accredi .sa-card__title {
	font-size: 0.85rem;
	line-height: 1.55;
	text-align: center;
	margin-bottom: 4px;
}

.shreetmt-accredi .sa-card__title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s;
}

.shreetmt-accredi .sa-card__title a:hover {
	color: #E85222;
}

.shreetmt-accredi .sa-card__sub {
	font-size: 0.76rem;
	color: #777777;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.5;
}

.shreetmt-accredi .sa-card__sub a {
	color: #777777;
	text-decoration: none;
	transition: color 0.2s;
}

.shreetmt-accredi .sa-card__sub a:hover {
	color: #EF7F1A;
}

/* ── DESCRIPTION STRIP ── */
.shreetmt-accredi .sa-desc {
	background: #1a1a2e;
	padding: 56px 0;
	position: relative;
	overflow: hidden;
	border-top: 4px solid #EF7F1A;
}

.shreetmt-accredi .sa-desc::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 85% 50%, rgba(239, 127, 26, 0.10) 0%, transparent 55%),
		radial-gradient(ellipse at 10% 50%, rgba(232, 82, 34, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.shreetmt-accredi .sa-desc__accent {
	display: block;
	width: 42px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #EF7F1A 0%, #E85222 100%);
	margin: 0 auto 28px;
}

.shreetmt-accredi .sa-desc p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.91rem;
	line-height: 1.9;
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
	position: relative;
}

/* ── FADE-IN ANIMATION ── */
@keyframes sa-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.shreetmt-accredi .sa-card {
	animation: sa-rise 0.45s ease both;
}

.shreetmt-accredi .sa-row> :nth-child(1) .sa-card {
	animation-delay: 0.04s;
}

.shreetmt-accredi .sa-row> :nth-child(2) .sa-card {
	animation-delay: 0.09s;
}

.shreetmt-accredi .sa-row> :nth-child(3) .sa-card {
	animation-delay: 0.14s;
}

.shreetmt-accredi .sa-row> :nth-child(4) .sa-card {
	animation-delay: 0.18s;
}

.shreetmt-accredi .sa-row> :nth-child(5) .sa-card {
	animation-delay: 0.22s;
}

.shreetmt-accredi .sa-row> :nth-child(6) .sa-card {
	animation-delay: 0.26s;
}

.shreetmt-accredi .sa-row> :nth-child(7) .sa-card {
	animation-delay: 0.30s;
}

.shreetmt-accredi .sa-row> :nth-child(8) .sa-card {
	animation-delay: 0.34s;
}

.shreetmt-accredi .sa-row> :nth-child(9) .sa-card {
	animation-delay: 0.38s;
}

/* ── RESPONSIVE ── */
@media (max-width: 575px) {
	.shreetmt-accredi .sa-grid {
		padding: 32px 0 16px;
	}

	.shreetmt-accredi .sa-card__img-wrap {
		height: 200px;
	}

	.shreetmt-accredi .sa-desc {
		padding: 38px 0;
	}
}

/*--------------- Why shree tmt website -------------------*/
.why-shree-tmt-page-header {
	overflow: hidden;
	background: url(../images/why-shreet-img/whyshreetmt-banner-1920x500.webp) no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}

@media (max-width:430px) {
	.parallaxie{
		padding: 60px 0 60px !important;
	}	

}

/* ════════════════════════════════════════
   STMT-WHY  —  Industrial Editorial Layout
   All selectors scoped under .stmt-why
════════════════════════════════════════ */

.stmt-why {
	background: #f5f7fa;
	position: relative;
	overflow: hidden;
}

.stmt-why::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -200px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(12, 84, 160, 0.04);
	pointer-events: none;
}

.stmt-why::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -150px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: rgba(239, 127, 26, 0.05);
	pointer-events: none;
}

/* ── Heading ── */
.stmt-why .stmt-why__head {
	padding: 70px 0 20px;
	position: relative;
	z-index: 1;
}

.stmt-why .stmt-why__head h1 {
	color: #111;
	text-transform: capitalize;
	display: inline-block;
}

.stmt-why .stmt-why__head h1::after {
	content: '';
	display: block;
	height: 4px;
	width: 0;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 2px;
	margin: 10px auto 0;
	animation: stmtLineGrow 0.8s 0.4s ease forwards;
}

@keyframes stmtLineGrow {
	to {
		width: 70px;
	}
}

/* ── Grid wrapper ── */
.stmt-why .stmt-why__grid {
	padding: 40px 0 70px;
	position: relative;
	z-index: 1;
}

/* ── Col wrapper ── */
.stmt-why .stmt-why__col {
	opacity: 0;
	transform: translateY(32px);
	animation: stmtFadeUp 0.55s ease forwards;
}

/* Hidden state — display:none so it takes no space */
.stmt-why .stmt-why__col.stmt-why__col--hidden {
	display: none !important;
}

/* Reveal state applied by JS after Load More */
.stmt-why .stmt-why__col.stmt-why__col--reveal {
	display: block;
	/* override hidden */
	opacity: 0;
	transform: translateY(32px);
	animation: stmtFadeUp 0.5s ease forwards;
}

@keyframes stmtFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* stagger delays for initial 6 */
.stmt-why .stmt-why__col:nth-child(1) {
	animation-delay: 0.04s;
}

.stmt-why .stmt-why__col:nth-child(2) {
	animation-delay: 0.08s;
}

.stmt-why .stmt-why__col:nth-child(3) {
	animation-delay: 0.12s;
}

.stmt-why .stmt-why__col:nth-child(4) {
	animation-delay: 0.16s;
}

.stmt-why .stmt-why__col:nth-child(5) {
	animation-delay: 0.20s;
}

.stmt-why .stmt-why__col:nth-child(6) {
	animation-delay: 0.24s;
}

.stmt-why .stmt-why__col:nth-child(7) {
	animation-delay: 0.04s;
}

.stmt-why .stmt-why__col:nth-child(8) {
	animation-delay: 0.08s;
}

.stmt-why .stmt-why__col:nth-child(9) {
	animation-delay: 0.12s;
}

.stmt-why .stmt-why__col:nth-child(10) {
	animation-delay: 0.16s;
}

.stmt-why .stmt-why__col:nth-child(11) {
	animation-delay: 0.20s;
}

.stmt-why .stmt-why__col:nth-child(12) {
	animation-delay: 0.24s;
}

.stmt-why .stmt-why__col:nth-child(13) {
	animation-delay: 0.04s;
}

.stmt-why .stmt-why__col:nth-child(14) {
	animation-delay: 0.08s;
}

.stmt-why .stmt-why__col:nth-child(15) {
	animation-delay: 0.12s;
}

.stmt-why .stmt-why__col:nth-child(16) {
	animation-delay: 0.16s;
}

.stmt-why .stmt-why__col:nth-child(17) {
	animation-delay: 0.20s;
}

.stmt-why .stmt-why__col:nth-child(18) {
	animation-delay: 0.24s;
}

.stmt-why .stmt-why__col:nth-child(19) {
	animation-delay: 0.04s;
}

.stmt-why .stmt-why__col:nth-child(20) {
	animation-delay: 0.08s;
}

.stmt-why .stmt-why__col:nth-child(21) {
	animation-delay: 0.12s;
}

.stmt-why .stmt-why__col:nth-child(22) {
	animation-delay: 0.16s;
}

.stmt-why .stmt-why__col:nth-child(23) {
	animation-delay: 0.20s;
}

.stmt-why .stmt-why__col:nth-child(24) {
	animation-delay: 0.24s;
}

/* ── CARD ── */
.stmt-why .stmt-why__item {
	background: #fff;
	border-radius: 14px;
	border: 1.5px solid rgba(12, 84, 160, 0.08);
	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow: hidden;
	height: auto;
	position: relative;
	transition: transform 0.32s cubic-bezier(0.22, 0.68, 0, 1.2),
		box-shadow 0.32s ease,
		border-color 0.25s ease;
}

.stmt-why .stmt-why__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 50px rgba(12, 84, 160, 0.13), 0 4px 14px rgba(12, 84, 160, 0.07);
	border-color: rgba(12, 84, 160, 0.22);
}

/* ── Left icon panel ── */
.stmt-why .stmt-why__left {
	flex-shrink: 0;
	width: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 24px 0 20px;
	background: rgba(12, 84, 160, 0.04);
	position: relative;
	transition: background 0.3s ease;
	gap: 10px;
}

.stmt-why .stmt-why__item:hover .stmt-why__left {
	background: rgba(239, 127, 26, 0.07);
}

.stmt-why .stmt-why__left::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #EF7F1A, #E85222, #0C54A0);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s cubic-bezier(0.22, 0.68, 0, 1.1);
}

.stmt-why .stmt-why__item:hover .stmt-why__left::after {
	transform: scaleY(1);
}

/* ── Number badge ── */
.stmt-why .stmt-why__num {
	font-weight: 800;
	color: rgba(12, 84, 160, 0.18);
	line-height: 1;
	letter-spacing: -1px;
	transition: color 0.3s ease;
	font-size: 0.7rem;
	margin-top: 4px;
}

.stmt-why .stmt-why__item:hover .stmt-why__num {
	color: #EF7F1A;
}

/* ── Icon ── */
.stmt-why .stmt-why__icon {
	width: 52px;
	height: 52px;
	position: relative;
	flex-shrink: 0;
}

.stmt-why .stmt-why__icon img.stmt-why__icon-default,
.stmt-why .stmt-why__icon img.stmt-why__icon-hover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.3);
}

.stmt-why .stmt-why__icon img.stmt-why__icon-default {
	opacity: 1;
	transform: scale(1);
}

.stmt-why .stmt-why__icon img.stmt-why__icon-hover {
	opacity: 0;
	transform: scale(0.75) rotate(-8deg);
}

.stmt-why .stmt-why__item:hover .stmt-why__icon img.stmt-why__icon-default {
	opacity: 0;
	transform: scale(1.2) rotate(6deg);
}

.stmt-why .stmt-why__item:hover .stmt-why__icon img.stmt-why__icon-hover {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

/* ── Right content panel ── */
.stmt-why .stmt-why__right {
	flex: 1;
	padding: 20px 18px 16px 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	min-width: 0;
}

.stmt-why .stmt-why__right::before {
	content: attr(data-num);
	position: absolute;
	bottom: -10px;
	right: 6px;
	font-weight: 900;
	color: rgba(12, 84, 160, 0.04);
	line-height: 1;
	pointer-events: none;
	font-size: 4rem;
	transition: color 0.3s ease;
}

.stmt-why .stmt-why__item:hover .stmt-why__right::before {
	color: rgba(239, 127, 26, 0.07);
}

/* ── Title ── */
.stmt-why .stmt-why__title {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #0C54A0;
	line-height: 1.3;
	margin-bottom: 8px;
	transition: color 0.25s ease;
}

.stmt-why .stmt-why__title::after {
	content: '';
	display: block;
	height: 2px;
	width: 0;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 1px;
	margin-top: 5px;
	transition: width 0.35s ease;
}

.stmt-why .stmt-why__item:hover .stmt-why__title {
	color: #E85222;
}

.stmt-why .stmt-why__item:hover .stmt-why__title::after {
	width: 100%;
}

/* ── Body text — clamped to 3 lines ── */
.stmt-why .stmt-why__text {
	margin-bottom: 0;
	color: #5a6474;
	line-height: 1.68;
	position: relative;
	z-index: 1;
	transition: color 0.25s ease;

	/* clamp to 3 lines */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: calc(1.68em * 3);
}

.stmt-why .stmt-why__text.stmt-why__text--expanded {
	display: block;
	-webkit-line-clamp: unset;
	max-height: none;
	overflow: visible;
}

.stmt-why .stmt-why__item:hover .stmt-why__text {
	color: #333;
}

/* ── Read More button ── */
.stmt-why .stmt-why__readmore {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
	background: none;
	border: none;
	padding: 0;
	color: #EF7F1A;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 0.3px;
	transition: color 0.2s ease, gap 0.2s ease;
	position: relative;
	z-index: 2;
	text-decoration: none;
	flex-shrink: 0;
}

.stmt-why .stmt-why__readmore:hover {
	color: #E85222;
	gap: 8px;
}

.stmt-why .stmt-why__readmore .stmt-why__arrow {
	display: inline-block;
	transition: transform 0.25s ease;
	font-style: normal;
}

.stmt-why .stmt-why__readmore.stmt-why__readmore--less .stmt-why__arrow {
	transform: rotate(180deg);
}

/* ── Load More button area ── */
.stmt-why .stmt-why__loadmore-wrap {
	text-align: center;
	padding: 10px 0 30px;
	position: relative;
	z-index: 1;
}

.stmt-why .stmt-why__loadmore {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #0C54A0, #0a3d7a);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 13px 38px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	box-shadow: 0 6px 24px rgba(12, 84, 160, 0.25);
}

.stmt-why .stmt-why__loadmore:hover {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	transform: translateY(-3px);
	box-shadow: 0 10px 32px rgba(232, 82, 34, 0.3);
}

.stmt-why .stmt-why__loadmore:disabled {
	opacity: 0.4;
	cursor: default;
	transform: none;
}

.stmt-why .stmt-why__loadmore .stmt-why__load-icon {
	font-style: normal;
	transition: transform 0.3s ease;
}

.stmt-why .stmt-why__loadmore:hover .stmt-why__load-icon {
	transform: rotate(90deg);
}

/* counter pill */
.stmt-why .stmt-why__counter {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 2px 10px;
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 0;
}

/* ── Responsive ── */
@media (max-width: 575px) {
	.stmt-why .stmt-why__item {
		flex-direction: column;
	}

	.stmt-why .stmt-why__left {
		width: 100%;
		flex-direction: row;
		padding: 14px 18px 12px;
		gap: 14px;
	}

	.stmt-why .stmt-why__left::after {
		top: auto;
		right: 0;
		left: 0;
		bottom: 0;
		width: auto;
		height: 3px;
		transform: scaleX(0);
		transform-origin: left;
	}

	.stmt-why .stmt-why__item:hover .stmt-why__left::after {
		transform: scaleX(1);
	}

	.stmt-why .stmt-why__right {
		padding: 14px 16px 16px;
	}

	.stmt-why .stmt-why__head {
		padding: 50px 0 20px;
	}

	.stmt-why .stmt-why__grid {
		padding-bottom: 50px;
	}
}




/*--------------------shree_tmt_extra_550-------------------------*/
.shree_tmt_extra_550-page {
	overflow: hidden;
	background: url(../images/tmt-img/shree_tmt_extra_550-page-banner.jpeg) no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}

/* ── HEADING SECTION ── */
.page-shree-tmt-extra-550 .sxtra-heading-sec {
	padding: 60px 0 30px;
	background: #fff;
}

.page-shree-tmt-extra-550 .sxtra-heading-sec .special-heading {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: #0C54A0;
	line-height: 1.35;
	margin-bottom: 0;
}

/* ── INTRO SECTION ── */
.page-shree-tmt-extra-550 .sxtra-intro {
	background: #fff;
	padding: 10px 0 40px;
}

.page-shree-tmt-extra-550 .sxtra-intro-inner {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	padding: 28px 32px;
	background: #f5f7fa;
	border-radius: 12px;
	border-left: 4px solid #EF7F1A;
}

.page-shree-tmt-extra-550 .sxtra-intro-inner p {
	color: #4a5568;
	font-size: 0.97rem;
	line-height: 1.75;
	margin-bottom: 14px;
}

.page-shree-tmt-extra-550 .sxtra-intro-inner p:last-child {
	margin-bottom: 0;
}

.page-shree-tmt-extra-550 .sxtra-intro-inner p b {
	color: #0C54A0;
}

.page-shree-tmt-extra-550 .sxtra-intro-inner a {
	color: #EF7F1A;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ── HIGHLIGHTS SECTION ── */
.page-shree-tmt-extra-550 .sxtra-highlights {
	background: #fff;
	padding: 48px 0 56px;
	border-top: 1px solid rgba(12, 84, 160, 0.08);
	border-bottom: 1px solid rgba(12, 84, 160, 0.08);
}

.page-shree-tmt-extra-550 .sxtra-hl-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 28px 20px;
	height: 100%;
	border-radius: 12px;
	transition: background 0.25s ease, box-shadow 0.25s ease;
	position: relative;
}

.page-shree-tmt-extra-550 .sxtra-hl-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.page-shree-tmt-extra-550 .sxtra-hl-item:hover {
	background: #f5f7fa;
	box-shadow: 0 4px 20px rgba(12, 84, 160, 0.07);
}

.page-shree-tmt-extra-550 .sxtra-hl-item:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.page-shree-tmt-extra-550 .sxtra-hl-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(12, 84, 160, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: #0C54A0;
	flex-shrink: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.page-shree-tmt-extra-550 .sxtra-hl-item:hover .sxtra-hl-icon {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	color: #fff;
}

.page-shree-tmt-extra-550 .sxtra-hl-title {
	font-size: 1rem;
	font-weight: 700;
	color: #0C54A0;
	margin-bottom: 10px;
	letter-spacing: 0.3px;
}

.page-shree-tmt-extra-550 .sxtra-hl-text {
	font-size: 0.875rem;
	color: #5a6474;
	line-height: 1.65;
	margin: 0;
}

/* dividers between highlight columns on md+ */
@media (min-width: 992px) {
	.page-shree-tmt-extra-550 .sxtra-hl-item+.sxtra-hl-item {
		border-left: 1px solid rgba(12, 84, 160, 0.1);
	}
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
	.page-shree-tmt-extra-550 .sxtra-highlights {
		padding: 36px 0 44px;
	}

	.page-shree-tmt-extra-550 .sxtra-hl-item {
		padding: 24px 16px;
	}

	.page-shree-tmt-extra-550 .sxtra-intro-inner {
		padding: 22px 20px;
	}
}

@media (max-width: 767px) {
	.page-shree-tmt-extra-550 .sxtra-hl-item {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		gap: 16px;
		border-bottom: 1px solid rgba(12, 84, 160, 0.07);
		border-radius: 0;
		padding: 20px 12px;
	}

	.page-shree-tmt-extra-550 .sxtra-hl-item:last-child {
		border-bottom: none;
	}

	.page-shree-tmt-extra-550 .sxtra-hl-item::after {
		display: none;
	}

	.page-shree-tmt-extra-550 .sxtra-hl-icon {
		width: 52px;
		height: 52px;
		flex-shrink: 0;
		margin-bottom: 0;
	}

	.page-shree-tmt-extra-550 .sxtra-hl-icon svg {
		width: 26px;
		height: 26px;
	}

	.page-shree-tmt-extra-550 .sxtra-heading-sec {
		padding: 40px 0 20px;
	}

	.page-shree-tmt-extra-550 .sxtra-intro {
		padding: 10px 0 30px;
	}
}

@media (max-width: 575px) {
	.page-shree-tmt-extra-550 .sxtra-intro-inner {
		padding: 18px 16px;
		border-radius: 8px;
	}

	.page-shree-tmt-extra-550 .sxtra-hl-item {
		padding: 16px 8px;
	}
}


/* ── TAB BAR ── */
.page-shree-tmt-extra-550 .sxtra-tab-bar {
	background: #f5f7fa;
	padding: 40px 0 0;
	display: flex;
	justify-content: center;
}


/* .page-shree-tmt-extra-550 .sxtra-tab-bar .container-fluid {
	display: flex;
	justify-content: center;
} */

.page-shree-tmt-extra-550 .sxtra-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #0C54A0, #0a3d7a);
	color: #fff;
	border: none;
	border-radius: 6px 6px 0 0;
	padding: 14px 36px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.5px;
	cursor: pointer;
	position: relative;
	transition: background 0.25s ease;
	text-decoration: none;
}

.page-shree-tmt-extra-550 .sxtra-tab-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
}

.page-shree-tmt-extra-550 .sxtra-tab-btn:hover {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	color: #fff;
}

.page-shree-tmt-extra-550 .sxtra-tab-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #EF7F1A;
	display: inline-block;
	animation: sxtraPulse 1.5s infinite;
}

@keyframes sxtraPulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.4);
	}
}

/* ── PRODUCT SECTION ── */
.page-shree-tmt-extra-550 .sxtra-product {
	background: #f5f7fa;
	padding: 0 0 60px;
}

.page-shree-tmt-extra-550 .sxtra-product-card {
	background: #fff;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 8px 40px rgba(12, 84, 160, 0.08);
	overflow: hidden;
}

/* ── PRODUCT LEFT ── */
.page-shree-tmt-extra-550 .sxtra-prod-left {
	padding: 44px 40px 40px;
	position: relative;
}

.page-shree-tmt-extra-550 .sxtra-prod-left::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #EF7F1A, #E85222, #0C54A0);
}

.page-shree-tmt-extra-550 .sxtra-prod-left h2 {
	color: #0C54A0;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.page-shree-tmt-extra-550 .sxtra-prod-left .sxtra-tagline {
	color: #5a6474;
	margin-bottom: 8px;
}

.page-shree-tmt-extra-550 .sxtra-hashtag {
	display: inline-block;
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	color: #fff;
	border-radius: 50px;
	padding: 4px 16px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 22px;
}

/* ── FEATURE LIST ── */
.page-shree-tmt-extra-550 .sxtra-feat-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.page-shree-tmt-extra-550 .sxtra-feat-list li {
	padding: 14px 16px 14px 20px;
	border-radius: 8px;
	background: rgba(12, 84, 160, 0.04);
	border-left: 3px solid #EF7F1A;
	color: #333;
	line-height: 1.65;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.page-shree-tmt-extra-550 .sxtra-feat-list li:hover {
	background: rgba(239, 127, 26, 0.07);
	border-color: #E85222;
}

.page-shree-tmt-extra-550 .sxtra-feat-list li b {
	color: #0C54A0;
}

/* ── PRODUCT RIGHT (image panel) ── */
.page-shree-tmt-extra-550 .sxtra-prod-right {
	background: linear-gradient(135deg, #0C54A0 0%, #0a3d7a 60%, #06285a 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	/* padding: 40px 30px 0; */
	position: relative;
	overflow: hidden;
	min-height: 420px;
}

.page-shree-tmt-extra-550 .sxtra-prod-right::before {
	content: attr(data-watermark);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 900;
	color: rgba(255, 255, 255, 0.04);
	font-size: 11rem;
	line-height: 1;
	pointer-events: none;
	white-space: nowrap;
}

.page-shree-tmt-extra-550 .sxtra-prod-right img {
	width: 100%;
	/* max-width: 380px; */
	height: auto;
	display: block;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
	/* animation: sxtraFloat 4s ease-in-out infinite; */
}

@keyframes sxtraFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
	.page-shree-tmt-extra-550 .sxtra-prod-right {
		min-height: 320px;
		padding: 30px 20px 0;
	}

	.page-shree-tmt-extra-550 .sxtra-prod-left {
		padding: 28px 22px;
	}
}

/* ── 6. ACCORDION TABLES ── */
.page-shree-tmt-extra-550 .sxtra-accord-wrap {
	padding: 0 0 50px;
	background: #f5f7fa;
}

.page-shree-tmt-extra-550 .sxtra-accord {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(12, 84, 160, 0.08);
}

.page-shree-tmt-extra-550 .sxtra-accord .accordion-item {
	border: none;
	border-bottom: 1px solid rgba(12, 84, 160, 0.10);
}

.page-shree-tmt-extra-550 .sxtra-accord .accordion-item:last-child {
	border-bottom: none;
}

.page-shree-tmt-extra-550 .sxtra-accord .accordion-button {
	background: #0C54A0;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.4px;
	padding: 18px 24px;
	border: none;
	box-shadow: none;
	transition: background 0.25s ease;
}

.page-shree-tmt-extra-550 .sxtra-accord .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	color: #fff;
	box-shadow: none;
}

.page-shree-tmt-extra-550 .sxtra-accord .accordion-button::after {
	filter: brightness(0) invert(1);
}

.page-shree-tmt-extra-550 .sxtra-accord .accordion-body {
	padding: 0;
	background: #fff;
}

/* Tables */
.page-shree-tmt-extra-550 .sxtra-accord .table {
	margin-bottom: 0;
}

.page-shree-tmt-extra-550 .sxtra-accord .table thead th {
	background: #0a3d7a;
	color: #fff;
	padding: 12px 16px;
	border: none;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.page-shree-tmt-extra-550 .sxtra-accord .table tbody tr {
	transition: background 0.2s ease;
}

.page-shree-tmt-extra-550 .sxtra-accord .table tbody tr:hover {
	background: rgba(239, 127, 26, 0.06);
}

.page-shree-tmt-extra-550 .sxtra-accord .table tbody td {
	padding: 12px 16px;
	border-color: rgba(12, 84, 160, 0.08);
	color: #333;
	vertical-align: middle;
}

/* highlight SHREE TMT XTRA column */
.page-shree-tmt-extra-550 .sxtra-accord .table thead th:last-child {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
}

.page-shree-tmt-extra-550 .sxtra-accord .table tbody td:last-child {
	color: #E85222;
	font-weight: 700;
}

/* weight table (no last-col highlight) */
.page-shree-tmt-extra-550 .sxtra-weight-table thead th:last-child {
	background: #0a3d7a !important;
}

.page-shree-tmt-extra-550 .sxtra-weight-table tbody td:last-child {
	color: #333 !important;
	font-weight: 400 !important;
}

/* saving table — highlight last col differently */
.page-shree-tmt-extra-550 .sxtra-saving-table tbody td:last-child {
	color: #0C54A0 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
	.page-shree-tmt-extra-550 .sxtra-prod-right {
		min-height: 300px;
	}

	.page-shree-tmt-extra-550 .sxtra-prod-left {
		padding: 30px 24px;
	}

	.page-shree-tmt-extra-550 .sxtra-heading-sec {
		padding: 50px 0 36px;
	}
}

@media (max-width: 575px) {
	.page-shree-tmt-extra-550 .sxtra-intro-inner::after {
		display: none;
	}

	.page-shree-tmt-extra-550 .sxtra-prod-right::before {
		font-size: 6rem;
	}
}


/* ----------------Faq section----------------------- */
/* ── Weight Table ── */
.page-shree-tmt-extra-550 .faq-weight-table {
	border-collapse: collapse;
	font-size: 0.95rem;
}

/* Title row — full-width dark blue bar */
.page-shree-tmt-extra-550 .faq-weight-table .faq-table-title {
	background-color: #0c539f;
	color: #fff;
	padding: 12px 16px;
	font-weight: 600;
	font-size: 0.95rem;
	text-align: left;
	border: none;
}

/* Sub-header row — slightly lighter blue */
.page-shree-tmt-extra-550 .faq-weight-table .faq-table-subhead {
	background-color: #1a6bbf;
	color: #fff;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 0.9rem;
	border: none;
	white-space: nowrap;
}

/* Body rows */
.page-shree-tmt-extra-550 .faq-weight-table tbody tr td {
	padding: 10px 16px;
	border-bottom: 1px solid #e8edf3;
	color: #4a5568;
	font-size: 0.92rem;
}

/* Zebra striping — every odd row */
.page-shree-tmt-extra-550 .faq-weight-table tbody tr:nth-child(odd) td {
	background-color: #f8fafc;
}

.page-shree-tmt-extra-550 .faq-weight-table tbody tr:nth-child(even) td {
	background-color: #ffffff;
}

/* Hover row highlight */
.page-shree-tmt-extra-550 .faq-weight-table tbody tr:hover td {
	background-color: #eef4fb;
}

/* ── Ordered list (FAQ 1) ── */
.page-shree-tmt-extra-550 .faq-ordered-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: faq-counter;
}

.page-shree-tmt-extra-550 .faq-ordered-list li {
	counter-increment: faq-counter;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 6px 0;
	color: #4a5568;
	font-size: 0.95rem;
	border-bottom: 1px solid #f0f4f8;
}

.page-shree-tmt-extra-550 .faq-ordered-list li:last-child {
	border-bottom: none;
}

.page-shree-tmt-extra-550 .faq-ordered-list li::before {
	content: counter(faq-counter, lower-alpha) ")";
	flex-shrink: 0;
	font-weight: 700;
	color: #0c539f;
	min-width: 24px;
}


/* manufacturing Page */
.manufacturing-page {
	overflow: hidden;
	background: url(../images/manufacturing-img/manufacturing-banner.webp) no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}

/* ─── Section wrapper ────────────────────────────────────── */
.tmt-manufacturing {
	color: #1a1a1a;
	background: #ffffff;
	padding: 5rem 1.5rem;
}

/* ─── Header ─────────────────────────────────────────────── */
.tmt-manufacturing__header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 4rem;
}

.tmt-manufacturing__title {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #0C54A0;
}

/* ─── Z-step container ───────────────────────────────────── */
.tmt-manufacturing__steps {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

/* ─── Single step row ────────────────────────────────────── */
.tmt-step {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: center;
}

.tmt-step--odd .tmt-step__img-col {
	order: 1;
	padding: 2.5rem 2.5rem 2.5rem 0;
}

.tmt-step--odd .tmt-step__body {
	order: 2;
	padding: 2.5rem 0 2.5rem 2.5rem;
}

.tmt-step--even .tmt-step__body {
	order: 1;
	padding: 2.5rem 2.5rem 2.5rem 0;
}

.tmt-step--even .tmt-step__img-col {
	order: 2;
	padding: 2.5rem 0 2.5rem 2.5rem;
}

/* ─── Image wrap ─────────────────────────────────────────── */
.tmt-step__img-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(12, 84, 160, 0.14);
}

.tmt-step__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.tmt-step__img-wrap:hover img {
	transform: scale(1.04);
}

.tmt-step__img-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(12, 84, 160, 0.25), transparent);
	pointer-events: none;
}

/* ─── Step body ──────────────────────────────────────────── */
.tmt-step__heading {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.85rem;
	color: #111;
}

.tmt-step__text {
	color: #555;
	line-height: 1.8;
	margin-bottom: 1.1rem;
}

.tmt-step__list {
	list-style: disc;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 1.25rem;
	margin: 0 0 1rem 0;
}

.tmt-step__list li {
	color: #555;
	line-height: 1.65;
}

/* ─── Connector ──────────────────────────────────────────── */
.tmt-step-connector {
	display: flex;
	justify-content: center;
	height: 3rem;
	position: relative;
}

.tmt-step-connector__line {
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, #EF7F1A, #0C54A0);
	border-radius: 1px;
	opacity: 0.35;
}

/* ─── Stage colour themes ────────────────────────────────── */
.tmt-step--s1 .tmt-step__heading {
	color: #0C54A0;
}

.tmt-step--s2 .tmt-step__heading {
	color: #c45f00;
}

.tmt-step--s3 .tmt-step__heading {
	color: #E85222;
}

.tmt-step--s4 .tmt-step__heading {
	color: #0a3d7a;
}

.tmt-step--s5 .tmt-step__heading {
	color: #E85222;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
	.tmt-step {
		grid-template-columns: 1fr;
	}

	.tmt-step--odd .tmt-step__img-col,
	.tmt-step--even .tmt-step__img-col {
		order: 1;
		padding: 0 0 1.5rem 0;
	}

	.tmt-step--odd .tmt-step__body,
	.tmt-step--even .tmt-step__body {
		order: 2;
		padding: 0 0 2rem 0;
	}
}

/* ── FAQ section ── */
.faq-weight-table {
	border-collapse: collapse;
	font-size: 0.95rem;
}

.faq-weight-table .faq-table-subhead {
	background-color: #1a6bbf;
	color: #fff;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 0.9rem;
	border: none;
	white-space: nowrap;
}

.faq-weight-table tbody tr td {
	padding: 10px 16px;
	border-bottom: 1px solid #e8edf3;
	color: #4a5568;
	font-size: 0.92rem;
}

.faq-weight-table tbody tr:nth-child(odd) td {
	background-color: #f8fafc;
}

.faq-weight-table tbody tr:nth-child(even) td {
	background-color: #ffffff;
}

.faq-weight-table tbody tr:hover td {
	background-color: #eef4fb;
}


/* =============================================
   SHREE TMT TESTIMONIALS PAGE
   Parent class: .stmt-testimonials
   ============================================= */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ---- PAGE WRAPPER ---- */
.stmt-testimonials {
	background: #f5f7fb;
	min-height: 100vh;
	overflow-x: hidden;
}

/* ---- HERO HEADER ---- */
.stmt-hero {
	position: relative;
	background: #0C54A0;
	padding: 80px 20px 100px;
	text-align: center;
	overflow: hidden;
}

.stmt-hero::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -80px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: #EF7F1A;
	opacity: 0.12;
}

.stmt-hero::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -60px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: #E85222;
	opacity: 0.10;
}

.stmt-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

.stmt-hero-title {
	color: #fff;
	line-height: 1.15;
	margin-bottom: 18px;
	opacity: 0;
	transform: translateY(24px);
	animation: fadeUp 0.6s ease forwards 0.25s;
}

.stmt-hero-title span {
	color: #EF7F1A;
}

.stmt-hero-subtitle {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.7;
	max-width: 480px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.6s ease forwards 0.4s;
}

/* wave divider */
.stmt-hero-wave {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	line-height: 0;
	z-index: 2;
}

.stmt-hero-wave svg {
	display: block;
	width: 100%;
}

.stmt-stat-item {
	flex: 1 1 180px;
	text-align: center;
	padding: 16px 24px;
	border-right: 1px solid #e8ecf5;
	opacity: 0;
	transform: translateY(16px);
	animation: fadeUp 0.5s ease forwards;
}

.stmt-stat-item:last-child {
	border-right: none;
}

.stmt-stat-item:nth-child(1) {
	animation-delay: 0.1s;
}

.stmt-stat-item:nth-child(2) {
	animation-delay: 0.2s;
}

.stmt-stat-item:nth-child(3) {
	animation-delay: 0.3s;
}

.stmt-stat-item:nth-child(4) {
	animation-delay: 0.4s;
}

.stmt-stat-number {
	color: #E85222;
	display: block;
	margin-bottom: 4px;
}

.stmt-stat-label {
	color: #6b7a99;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ---- GRID SECTION ---- */
.stmt-grid-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 20px 40px;
}


/* ---- VIDEO GRID ---- */
.stmt-video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 60px;
}

/* ---- VIDEO CARD ---- */
.stmt-video-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(12, 84, 160, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.55s ease forwards;
}

.stmt-video-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(12, 84, 160, 0.14);
}

/* staggered card animation */
.stmt-video-card:nth-child(1) {
	animation-delay: 0.05s;
}

.stmt-video-card:nth-child(2) {
	animation-delay: 0.12s;
}

.stmt-video-card:nth-child(3) {
	animation-delay: 0.19s;
}

.stmt-video-card:nth-child(4) {
	animation-delay: 0.26s;
}

.stmt-video-card:nth-child(5) {
	animation-delay: 0.33s;
}

.stmt-video-card:nth-child(6) {
	animation-delay: 0.40s;
}

.stmt-video-card:nth-child(7) {
	animation-delay: 0.47s;
}

.stmt-video-card:nth-child(8) {
	animation-delay: 0.54s;
}

.stmt-video-card:nth-child(9) {
	animation-delay: 0.61s;
}

.stmt-video-card:nth-child(10) {
	animation-delay: 0.68s;
}

.stmt-video-card-thumb {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: #0C54A0;
	overflow: hidden;
}

.stmt-video-card-thumb iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.stmt-video-card-body {
	padding: 20px 22px 24px;
	border-top: 3px solid #EF7F1A;
}

.stmt-video-card-name {
	color: #0C54A0;
	margin-bottom: 10px;
	line-height: 1.35;
}

.stmt-video-card-quote {
	color: #5a6480;
	line-height: 1.65;
	position: relative;
	padding-left: 16px;
}

.stmt-video-card-quote::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 3px;
	background: #E85222;
	border-radius: 2px;
}


/* ---- SOLO CARD (last row with 1 card) ---- */
.stmt-video-grid-solo {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 60px;
}

/* ---- CTA STRIP ---- */
.stmt-cta-strip {
	background: linear-gradient(135deg, #E85222 0%, #EF7F1A 100%);
	border-radius: 20px;
	padding: 52px 40px;
	text-align: center;
	margin: 0 20px 80px;
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
	position: relative;
	overflow: hidden;
}

.stmt-cta-strip::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 20px;
	color: rgba(255, 255, 255, 0.1);
	line-height: 1;
}

.stmt-cta-strip-title {
	color: #fff;
	margin-bottom: 12px;
}

.stmt-cta-strip-sub {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 28px;
}

.stmt-cta-btn {
	display: inline-block;
	background: #fff;
	color: #E85222;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: background 0.25s, color 0.25s, transform 0.2s;
}

.stmt-cta-btn:hover {
	background: #0C54A0;
	color: #fff;
	transform: scale(1.04);
}

/* ---- ANIMATION ---- */
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {

	.stmt-video-grid,
	.stmt-video-grid-solo {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.stmt-hero {
		padding: 60px 16px 80px;
	}

	.stmt-hero-title {
		/* use a smaller heading without overriding font-size globally */
	}

	.stmt-video-grid,
	.stmt-video-grid-solo {
		grid-template-columns: 1fr;
	}

	.stmt-stat-item {
		border-right: none;
		border-bottom: 1px solid #e8ecf5;
		padding: 14px 10px;
	}

	.stmt-stat-item:last-child {
		border-bottom: none;
	}

	.stmt-cta-strip {
		padding: 36px 20px;
		border-radius: 14px;
	}

	.stmt-grid-section {
		padding: 40px 16px 20px;
	}
}


/* ═══════════════════════════════════════════════
   EXPLAINER VIDEOS — explainer-videos.css
═══════════════════════════════════════════════ */

/* ── BANNER ─────────────────────────────────── */
.ev-banner {
	background: linear-gradient(135deg, #0C54A0 0%, #0a3d7a 55%, #06285a 100%);
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}

/* Decorative background shapes */
.ev-banner__bg-shape {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.ev-banner__bg-shape--1 {
	width: 420px;
	height: 420px;
	top: -140px;
	right: -100px;
	background: rgba(239, 127, 26, 0.10);
}

.ev-banner__bg-shape--2 {
	width: 260px;
	height: 260px;
	bottom: -80px;
	left: -60px;
	background: rgba(232, 82, 34, 0.08);
}

.ev-banner__bg-shape--3 {
	width: 180px;
	height: 180px;
	top: 40%;
	left: 10%;
	background: rgba(255, 255, 255, 0.04);
}


.ev-banner__title {
	color: #fff;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.15;
}


.ev-banner__line {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 2px;
	margin: 0 auto;
	animation: evLineGrow 0.8s 0.3s ease forwards;
	transform-origin: center;
	transform: scaleX(0);
}

@keyframes evLineGrow {
	to {
		transform: scaleX(1);
	}
}

/* ── SECTION ─────────────────────────────────── */
.ev-section {
	background: #f4f7fc;
	padding: 70px 0 80px;
}

/* ── VIDEO CARD ──────────────────────────────── */
.ev-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 6px 28px rgba(12, 84, 160, 0.09);
	border: 1.5px solid rgba(12, 84, 160, 0.07);
	position: relative;
	transition: transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
		box-shadow 0.35s ease,
		border-color 0.25s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ev-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 55px rgba(12, 84, 160, 0.16);
	border-color: rgba(12, 84, 160, 0.20);
}

/* Ghost number watermark */
.ev-card__num {
	position: absolute;
	top: 12px;
	right: 14px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1;
	z-index: 3;
	letter-spacing: -1px;
	pointer-events: none;
}

/* ── Video iframe wrap ───────────────────────── */
.ev-card__video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	flex-shrink: 0;
}

.ev-card__video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* Top accent bar per card */
.ev-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 2;
	border-radius: 18px 18px 0 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.38s ease;
}

.ev-card:hover::before {
	transform: scaleX(1);
}

/* Card colour variants */
.ev-card--1::before {
	background: linear-gradient(90deg, #0C54A0, #EF7F1A);
}

.ev-card--2::before {
	background: linear-gradient(90deg, #EF7F1A, #E85222);
}

.ev-card--3::before {
	background: linear-gradient(90deg, #E85222, #0C54A0);
}


.ev-card--1 .ev-card__num {
	text-shadow: 0 1px 3px rgba(12, 84, 160, 0.3);
}

.ev-card--2 .ev-card__num {
	text-shadow: 0 1px 3px rgba(239, 127, 26, 0.3);
}

.ev-card--3 .ev-card__num {
	text-shadow: 0 1px 3px rgba(232, 82, 34, 0.3);
}

/* ── Card body ───────────────────────────────── */
.ev-card__body {
	padding: 20px 22px 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 10px;
}

.ev-card__title {
	color: #111;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	flex: 1;
	transition: color 0.25s ease;
	font-size: 20px;
}

.ev-card:hover .ev-card__title {
	color: #0C54A0;
}


.ev-card__brand {
	color: #888;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.ev-card__yt-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #666;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ev-card__yt-link:hover {
	color: #E85222;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 767px) {
	.ev-banner {
		padding: 70px 0 60px;
	}

	.ev-section {
		padding: 50px 0 60px;
	}
}

/* =============================================
   SHREE TMT — BECOME A DEALER PAGE
   Root parent: .stmd-page
   ============================================= */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ---- PAGE ROOT ---- */
.stmd-page {
	background: #f4f6fb;
	overflow-x: hidden;
}

/* ============================================
   1. MAIN BANNER
   .stmd-banner
   ============================================ */
.stmd-banner {
	width: 100%;
	position: relative;
	background: #0C54A0;
	overflow: hidden;
}

.stmd-banner-img-wrap {
	width: 100%;
	min-height: 420px;
	max-height: 560px;
	display: block;
	position: relative;
	background: #0C54A0;
}

/* Placeholder visual when no image is uploaded */
.stmd-banner-img-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 1px;
	text-align: center;
	padding: 20px;
	pointer-events: none;
}

.stmd-banner-img-wrap img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	max-height: 560px;
	object-fit: cover;
	object-position: center top;
	display: block;
}


/* ============================================
   2. PARTNER INTRO SECTION
   .stmd-intro
   ============================================ */
.stmd-intro {
	background: #fff;
	padding: 70px 20px 60px;
	text-align: center;
	position: relative;
	z-index: 3;
}

.stmd-intro-inner {
	max-width: 780px;
	margin: 0 auto;
}

.stmd-intro-title {
	color: #0C54A0;
	line-height: 1.25;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(18px);
	animation: stmdFadeUp 0.55s ease forwards 0.22s;
}

.stmd-intro-title em {
	font-style: italic;
	color: #EF7F1A;
}

.stmd-intro-desc {
	color: #5a6480;
	line-height: 1.8;
	max-width: 680px;
	margin: 0 auto 36px;
	opacity: 0;
	transform: translateY(14px);
	animation: stmdFadeUp 0.55s ease forwards 0.34s;
}

/* Divider line */
.stmd-intro-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: center;
	opacity: 0;
	animation: stmdFadeUp 0.5s ease forwards 0.46s;
}

.stmd-intro-divider-line {
	width: 60px;
	height: 2px;
	background: #E85222;
}

.stmd-intro-divider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #EF7F1A;
}

/* ============================================
   3. BECOME A DEALER FORM SECTION
   .stmd-form-section
   ============================================ */
.stmd-form-section {
	position: relative;
	background: #0C54A0;
	padding: 80px 20px 90px;
	overflow: hidden;
}

/* Decorative background circles */
.stmd-form-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(239, 127, 26, 0.1);
	pointer-events: none;
}

.stmd-form-section::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(232, 82, 34, 0.1);
	pointer-events: none;
}

.stmd-form-wrap {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.stmd-form-card {
	background: #fff;
	border-radius: 20px;
	padding: 50px 50px 44px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.stmd-form-header {
	text-align: center;
	margin-bottom: 36px;
}

.stmd-form-header-label {
	display: inline-block;
	background: #EF7F1A;
	color: #fff;
	padding: 5px 20px;
	border-radius: 30px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.stmd-form-title {
	color: #0C54A0;
	line-height: 1.2;
	margin-bottom: 8px;
}

.stmd-form-subtitle {
	color: #8a94b0;
	line-height: 1.6;
}

/* Form fields */
.stmd-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.stmd-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.stmd-form-group--full {
	grid-column: 1 / -1;
}

.stmd-form-label {
	color: #0C54A0;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.stmd-form-input,
.stmd-form-textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #dde3f0;
	border-radius: 10px;
	background: #f8faff;
	color: #1a2340;
	outline: none;
	transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
	appearance: none;
	-webkit-appearance: none;
}

.stmd-form-input:focus,
.stmd-form-textarea:focus {
	border-color: #0C54A0;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(12, 84, 160, 0.1);
}

.stmd-form-input::placeholder,
.stmd-form-textarea::placeholder {
	color: #aab0c8;
}

.stmd-form-textarea {
	resize: vertical;
	min-height: 110px;
}

.stmd-form-submit-wrap {
	grid-column: 1 / -1;
	margin-top: 6px;
}

.stmd-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #E85222;
	color: #fff;
	border: none;
	padding: 16px 42px;
	border-radius: 50px;
	cursor: pointer;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
	box-shadow: 0 6px 20px rgba(232, 82, 34, 0.35);
}

.stmd-form-submit:hover {
	background: #EF7F1A;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(239, 127, 26, 0.4);
}

.stmd-form-submit:active {
	transform: translateY(0);
}

.stmd-form-submit-arrow {
	display: inline-block;
	transition: transform 0.2s;
}

.stmd-form-submit:hover .stmd-form-submit-arrow {
	transform: translateX(4px);
}

/* Privacy note */
.stmd-form-note {
	text-align: center;
	color: #aab0c8;
	margin-top: 18px;
	line-height: 1.5;
}

.stmd-form-note a {
	color: #0C54A0;
	text-decoration: none;
}

/* ============================================
   4. PERKS AND BENEFITS SECTION
   .stmd-perks
   ============================================ */
.stmd-perks {
	background: #fff;
	padding: 80px 20px 90px;
}

.stmd-perks-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.stmd-section-head {
	text-align: center;
	margin-bottom: 54px;
}

.stmd-section-head-tag {
	display: inline-block;
	color: #E85222;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 12px;
}

.stmd-section-head-tag::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 3px;
	background: #EF7F1A;
	border-radius: 2px;
}

.stmd-section-head-title {
	color: #0C54A0;
	line-height: 1.25;
	margin-top: 2px;
}

/* Benefits grid */
.stmd-perks-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stmd-perk-card {
	background: #f4f6fb;
	border-radius: 16px;
	padding: 36px 24px 32px;
	text-align: center;
	border: 1.5px solid #e4eaf6;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
	opacity: 0;
	transform: translateY(28px);
	animation: stmdFadeUp 0.55s ease forwards;
}

.stmd-perk-card:nth-child(1) {
	animation-delay: 0.05s;
}

.stmd-perk-card:nth-child(2) {
	animation-delay: 0.15s;
}

.stmd-perk-card:nth-child(3) {
	animation-delay: 0.25s;
}

.stmd-perk-card:nth-child(4) {
	animation-delay: 0.35s;
}

.stmd-perk-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #0C54A0;
	transition: background 0.3s;
}

.stmd-perk-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 44px rgba(12, 84, 160, 0.12);
	border-color: #0C54A0;
}

.stmd-perk-card:hover::before {
	background: #EF7F1A;
}

.stmd-perk-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e4eaf6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	overflow: hidden;
	transition: border-color 0.3s;
}

.stmd-perk-card:hover .stmd-perk-icon {
	border-color: #EF7F1A;
}

.stmd-perk-icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	display: block;
}

/* SVG fallback icons */
.stmd-perk-icon-svg {
	width: 44px;
	height: 44px;
}

.stmd-perk-label {
	color: #0C54A0;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	line-height: 1.4;
}


.stmd-why-stat {
	padding: 14px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stmd-why-stat:last-child {
	border-right: none;
}

.stmd-why-stat-num {
	display: block;
	color: #EF7F1A;
	line-height: 1;
	margin-bottom: 4px;
}

.stmd-why-stat-lbl {
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.stmd-why-cta {
	display: inline-block;
	background: #EF7F1A;
	color: #fff;
	padding: 15px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: background 0.25s, transform 0.2s;
}

.stmd-why-cta:hover {
	background: #E85222;
	transform: scale(1.04);
	color: #fff;
}

/* ---- ANIMATION ---- */
@keyframes stmdFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
	.stmd-perks-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.stmd-form-card {
		padding: 36px 24px 32px;
	}

	.stmd-form-grid {
		grid-template-columns: 1fr;
	}

	.stmd-form-group--full {
		grid-column: 1;
	}

	.stmd-form-submit-wrap {
		grid-column: 1;
	}

	.stmd-intro {
		padding: 50px 20px 40px;
	}

	.stmd-why-stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding: 12px 20px;
		width: 50%;
	}

	.stmd-why-stat:last-child {
		border-bottom: none;
	}
}

@media (max-width: 600px) {
	.stmd-perks-grid {
		grid-template-columns: 1fr;
	}

	.stmd-banner-img-wrap {
		min-height: 240px;
		max-height: 340px;
	}

	.stmd-form-section {
		padding: 50px 16px 60px;
	}

	.stmd-perks {
		padding: 50px 16px 60px;
	}

	.stmd-why-stat {
		width: 100%;
	}
}




/* ═══════════════════════════════════════════════
   PRICING PAGE — pricing.css
═══════════════════════════════════════════════ */

/* ── 1. BANNER ──────────────────────────────── */
.pricing-page__banner {
	width: 100%;
	min-height: 300px;
	background: #e8edf5;
	overflow: hidden;
	position: relative;
}

.pricing-page__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── 2. PRICE TABLE SECTION ─────────────────── */
.pricing-page__table-sec {
	padding: 70px 0 60px;
	background: #fff;
	position: relative;
}

.pricing-page__table-sec::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0C54A0, #EF7F1A, #E85222);
}

.pricing-page__main-title {
	color: #111;
	margin-bottom: 8px;
	position: relative;
	display: inline-block;
}

.pricing-page__main-title::after {
	content: '';
	display: block;
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 2px;
	margin: 10px auto 0;
	animation: priceLineGrow 0.8s 0.3s ease forwards;
}

@keyframes priceLineGrow {
	to {
		width: 70px;
	}
}


/* Table */
.pricing-page__table-wrap {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 36px rgba(12, 84, 160, 0.10);
	border: 1.5px solid rgba(12, 84, 160, 0.08);
}

.pricing-page__table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.pricing-page__table thead tr {
	background: linear-gradient(135deg, #0C54A0, #0a3d7a);
}

.pricing-page__table thead th {
	color: #fff;
	padding: 16px 24px;
	text-align: left;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: none;
}

.pricing-page__table thead th:last-child {
	text-align: right;
}

.pricing-page__table tbody tr {
	border-bottom: 1px solid rgba(12, 84, 160, 0.07);
	transition: background 0.2s ease;
}

.pricing-page__table tbody tr:last-child {
	border-bottom: none;
}

.pricing-page__table tbody tr:hover {
	background: rgba(239, 127, 26, 0.05);
}

.pricing-page__table tbody td {
	padding: 14px 24px;
	color: #333;
}

.pricing-page__table tbody td:first-child {
	color: #0C54A0;
	font-weight: 600;
}

.pricing-page__table tbody td:last-child {
	text-align: right;
}

/* Alternate row tint */
.pricing-page__table tbody tr:nth-child(even) {
	background: rgba(12, 84, 160, 0.02);
}

.pricing-page__table tbody tr:nth-child(even):hover {
	background: rgba(239, 127, 26, 0.05);
}

.pricing-page__price {
	color: #E85222;
	font-weight: 700;
}

.pricing-page__unit {
	color: #999;
	margin-left: 4px;
}

/* CTA buttons */
.pricing-page__cta-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.pricing-page__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 50px;
	padding: 13px 32px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.pricing-page__btn--primary {
	background: linear-gradient(135deg, #0C54A0, #0a3d7a);
	color: #fff;
	box-shadow: 0 6px 22px rgba(12, 84, 160, 0.25);
}

.pricing-page__btn--primary:hover {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	box-shadow: 0 10px 30px rgba(232, 82, 34, 0.30);
	transform: translateY(-3px);
	color: #fff;
}

.pricing-page__btn--outline {
	background: transparent;
	color: #0C54A0;
	border-color: #0C54A0;
}

.pricing-page__btn--outline:hover {
	background: #0C54A0;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(12, 84, 160, 0.22);
}

.pricing-page__disclaimer {
	color: #888;
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

.pricing-page__disclaimer a {
	color: #EF7F1A;
	text-decoration: none;
}

.pricing-page__disclaimer a:hover {
	color: #E85222;
	text-decoration: underline;
}

/* ── 3. KEY NOTICES SECTION ─────────────────── */
.pricing-page__notices-sec {
	padding: 70px 0 60px;
	background: #f4f7fc;
}

.pricing-page__sec-title {
	color: #111;
	margin-bottom: 12px;
}

.pricing-page__title-line {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 2px;
	margin: 0 auto;
}

/* Notice card */
.pricing-page__notice-card {
	background: #fff;
	border-radius: 14px;
	padding: 32px 22px 28px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(12, 84, 160, 0.07);
	border: 1.5px solid rgba(12, 84, 160, 0.07);
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2),
		box-shadow 0.3s ease,
		border-color 0.25s ease;
}

.pricing-page__notice-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.pricing-page__notice-card:hover::before {
	transform: scaleX(1);
}

.pricing-page__notice-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 40px rgba(12, 84, 160, 0.12);
	border-color: rgba(12, 84, 160, 0.18);
}

.pricing-page__notice-icon {
	width: 150px;
	height: 75px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-page__notice-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.pricing-page__notice-card p {
	color: #444;
	line-height: 1.7;
	margin: 0;
}

.pricing-page__notice-card p strong {
	color: #0C54A0;
}

/* ── HIGHLIGHTS SECTION ──────────────────────────────── */
.pricing-page__highlights-sec {
	padding: 70px 0 80px;
	background: #fff;
}

/* Custom flex row — bypasses Bootstrap column issues */
.pricing-page__hl-row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 40px;
}

/* LEFT column */
.pricing-page__hl-left {
	flex: 0 0 58%;
	display: flex;
	flex-direction: column;
}

.pricing-page__hl-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
	height: 100%;
}

.pricing-page__hl-item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 22px;
	border-radius: 12px;
	background: rgba(12, 84, 160, 0.03);
	border-left: 4px solid transparent;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	cursor: pointer;
}

/* accent colors */
.pricing-page__hl-item--1 {
	border-left-color: #0C54A0;
}

.pricing-page__hl-item--2 {
	border-left-color: #EF7F1A;
}

.pricing-page__hl-item--3 {
	border-left-color: #E85222;
}

.pricing-page__hl-item--4 {
	border-left-color: #0a3d7a;
}

/* active + hover states */
.pricing-page__hl-item--1.active,
.pricing-page__hl-item--1:hover {
	background: rgba(12, 84, 160, 0.09);
	transform: translateX(5px);
}

.pricing-page__hl-item--2.active,
.pricing-page__hl-item--2:hover {
	background: rgba(239, 127, 26, 0.09);
	transform: translateX(5px);
}

.pricing-page__hl-item--3.active,
.pricing-page__hl-item--3:hover {
	background: rgba(232, 82, 34, 0.09);
	transform: translateX(5px);
}

.pricing-page__hl-item--4.active,
.pricing-page__hl-item--4:hover {
	background: rgba(10, 61, 122, 0.09);
	transform: translateX(5px);
}

.pricing-page__hl-item--1.active .pricing-page__hl-title,
.pricing-page__hl-item--1:hover .pricing-page__hl-title {
	color: #0C54A0;
}

.pricing-page__hl-item--2.active .pricing-page__hl-title,
.pricing-page__hl-item--2:hover .pricing-page__hl-title {
	color: #EF7F1A;
}

.pricing-page__hl-item--3.active .pricing-page__hl-title,
.pricing-page__hl-item--3:hover .pricing-page__hl-title {
	color: #E85222;
}

.pricing-page__hl-item--4.active .pricing-page__hl-title,
.pricing-page__hl-item--4:hover .pricing-page__hl-title {
	color: #0a3d7a;
}

/* number circles */
.pricing-page__hl-num {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
	color: #fff;
	line-height: 1;
}

.pricing-page__hl-item--1 .pricing-page__hl-num {
	background: #0C54A0;
}

.pricing-page__hl-item--2 .pricing-page__hl-num {
	background: #EF7F1A;
}

.pricing-page__hl-item--3 .pricing-page__hl-num {
	background: #E85222;
}

.pricing-page__hl-item--4 .pricing-page__hl-num {
	background: #0a3d7a;
}

.pricing-page__hl-title {
	margin: 0 0 5px;
	color: #111;
	font-size: 17px;
	font-weight: 700;
	transition: color 0.25s;
}

.pricing-page__hl-text {
	color: #555;
	line-height: 1.7;
	margin: 0;
	font-size: 14.5px;
}

/* RIGHT column */
.pricing-page__hl-right {
	flex: 0 0 42%;
	display: flex;
	flex-direction: column;
}

.pricing-page__hl-image-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 50px rgba(12, 84, 160, 0.15);
	flex: 1;
	min-height: 460px;
	width: 100%;
}

/* All 4 images stacked absolutely */
.pricing-page__hl-image-wrap img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: none;
	opacity: 0;
	transition: opacity 0.45s ease, transform 0.5s ease;
}

.pricing-page__hl-image-wrap img.active {
	display: block;
	opacity: 1;
}

.pricing-page__hl-image-wrap:hover img.active {
	transform: scale(1.03);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 991px) {
	.pricing-page__hl-row {
		flex-direction: column;
		gap: 30px;
	}

	.pricing-page__hl-left,
	.pricing-page__hl-right {
		flex: unset;
		width: 100%;
	}

	.pricing-page__hl-item {
		flex: unset;
	}

	.pricing-page__hl-image-wrap {
		min-height: 320px;
		flex: unset;
	}
}

@media (max-width: 767px) {
	.pricing-page__highlights-sec {
		padding: 50px 0;
	}

	.pricing-page__hl-item {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.pricing-page__hl-image-wrap {
		min-height: 260px;
	}
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 991px) {
	.pricing-page__hl-image-wrap {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {

	.pricing-page__table-sec,
	.pricing-page__notices-sec,
	.pricing-page__highlights-sec {
		padding: 50px 0;
	}

	.pricing-page__banner {
		min-height: 200px;
	}

	.pricing-page__cta-group {
		flex-direction: column;
		align-items: center;
	}

	.pricing-page__btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}

	.pricing-page__hl-item {
		flex-direction: column;
		gap: 12px;
	}
}

/* TMT CALCULATOR — scoped under .shreetmt-calc-page */

/* ── HERO ── */
.shreetmt-calc-page .shreetmt-calc__hero-img {
	width: 100%;
	min-height: 420px;
	background: linear-gradient(135deg, #0C54A0 0%, #0a3d7a 60%, #061d3a 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.shreetmt-calc-page .shreetmt-calc__hero-img::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}

.shreetmt-calc-page .shreetmt-calc__hero-img>img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shreetmt-calc-page .shreetmt-calc__hero-overlay {
	position: relative;
	z-index: 2;
	padding: 80px 0 70px;
	width: 100%;
}

.shreetmt-calc-page .shreetmt-calc__eyebrow {
	display: inline-block;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 6px;
	font-size: 0.72rem;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.shreetmt-calc-page .shreetmt-calc__hero-title {
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	letter-spacing: 1.5px;
	margin-bottom: 0;
}

.shreetmt-calc-page .shreetmt-calc__hero-line {
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	margin: 16px 0;
}

/* .shreetmt-calc-page .shreetmt-calc__hero-sub {
    color: rgba(255,255,255,0.72);
    margin: 0;
    max-width: 480px;
} */

/* ── SECTION ── */
.shreetmt-calc-page .shreetmt-calc__section {
	background: #f5f7fa;
	padding: 56px 0 64px;
}

/* ── CARD ── */
.shreetmt-calc-page .shreetmt-calc__card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(12, 84, 160, 0.10);
}

.shreetmt-calc-page .shreetmt-calc__card-bar {
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A 0%, #E85222 50%, #0C54A0 100%);
}

/* ── FORM COLUMN ── */
.shreetmt-calc-page .shreetmt-calc__form-col {
	border-right: 1px solid #e0e4ea;
}

.shreetmt-calc-page .shreetmt-calc__form-wrap,
.shreetmt-calc-page .shreetmt-calc__result-wrap {
	padding: 40px;
}

.shreetmt-calc-page .shreetmt-calc__col-title {
	color: #0C54A0;
	margin: 0 0 24px;
}

.shreetmt-calc-page .shreetmt-calc__field {
	margin-bottom: 22px;
}

.shreetmt-calc-page .shreetmt-calc__label {
	display: block;
	color: #333;
	margin-bottom: 8px;
}

.shreetmt-calc-page .shreetmt-calc__unit-label {
	color: #666;
	font-size: 0.82rem;
}

/* Select */
.shreetmt-calc-page .shreetmt-calc__select-wrap {
	position: relative;
}

.shreetmt-calc-page .shreetmt-calc__select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	background: #f5f7fa;
	border: 1.5px solid #e0e4ea;
	border-radius: 10px;
	padding: 12px 44px 12px 14px;
	color: #333;
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.shreetmt-calc-page .shreetmt-calc__select:focus {
	border-color: #0C54A0;
	box-shadow: 0 0 0 3px rgba(12, 84, 160, 0.10);
}

.shreetmt-calc-page .shreetmt-calc__arrow {
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: #0C54A0;
	pointer-events: none;
	display: flex;
}

/* Input */
.shreetmt-calc-page .shreetmt-calc__input-wrap {
	position: relative;
}

.shreetmt-calc-page .shreetmt-calc__input {
	width: 100%;
	background: #f5f7fa;
	border: 1.5px solid #e0e4ea;
	border-radius: 10px;
	padding: 12px 48px 12px 14px;
	color: #333;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.shreetmt-calc-page .shreetmt-calc__input:focus {
	border-color: #0C54A0;
	box-shadow: 0 0 0 3px rgba(12, 84, 160, 0.10);
}

.shreetmt-calc-page .shreetmt-calc__input::placeholder {
	color: #aaa;
}

.shreetmt-calc-page .shreetmt-calc__input-unit {
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: #0C54A0;
	font-size: 0.82rem;
	pointer-events: none;
}

.shreetmt-calc-page .shreetmt-calc__hint {
	color: #888;
	font-size: 0.78rem;
	margin: 6px 0 0;
}

.shreetmt-calc-page .shreetmt-calc__error {
	color: #E85222;
	font-size: 0.8rem;
	margin: 6px 0 0;
}

/* Button */
.shreetmt-calc-page .shreetmt-calc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	background: linear-gradient(135deg, #0C54A0, #0a3d7a);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px 24px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	position: relative;
	overflow: hidden;
	margin-top: 8px;
	transition: background 0.25s, transform 0.15s;
}

.shreetmt-calc-page .shreetmt-calc__btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
}

.shreetmt-calc-page .shreetmt-calc__btn:hover {
	background: linear-gradient(135deg, #EF7F1A, #E85222);
	transform: translateY(-1px);
}

.shreetmt-calc-page .shreetmt-calc__btn:active {
	transform: translateY(0);
}

/* ── RESULT COLUMN ── */
.shreetmt-calc-page .shreetmt-calc__result-col {
	background: #f5f7fa;
}

.shreetmt-calc-page .shreetmt-calc__result-wrap {
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Empty state */
.shreetmt-calc-page .shreetmt-calc__empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	gap: 10px;
}

.shreetmt-calc-page .shreetmt-calc__empty-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(12, 84, 160, 0.05);
	border: 2px dashed rgba(12, 84, 160, 0.20);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}

.shreetmt-calc-page .shreetmt-calc__empty h3 {
	color: #0C54A0;
	margin: 0;
}

.shreetmt-calc-page .shreetmt-calc__empty p {
	color: #666;
	margin: 0;
	max-width: 240px;
}

/* Summary pills */
.shreetmt-calc-page .shreetmt-calc__summary {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.shreetmt-calc-page .shreetmt-calc__pill {
	flex: 1;
	min-width: 80px;
	background: #fff;
	border: 1.5px solid #e0e4ea;
	border-radius: 10px;
	padding: 10px 12px;
	text-align: center;
}

.shreetmt-calc-page .shreetmt-calc__pill--grade {
	border-color: #EF7F1A;
	background: rgba(239, 127, 26, 0.04);
}

.shreetmt-calc-page .shreetmt-calc__pill-label {
	display: block;
	color: #888;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 3px;
}

.shreetmt-calc-page .shreetmt-calc__pill-val {
	display: block;
	color: #0C54A0;
}

.shreetmt-calc-page .shreetmt-calc__pill--grade .shreetmt-calc__pill-val {
	color: #EF7F1A;
}

.shreetmt-calc-page .shreetmt-calc__result-sub {
	color: #666;
	font-size: 0.85rem;
	margin-bottom: 14px;
}

/* Table */
.shreetmt-calc-page .shreetmt-calc__table-wrap {
	border-radius: 10px;
	overflow: hidden;
	border: 1.5px solid #e0e4ea;
	margin-bottom: 18px;
}

.shreetmt-calc-page .shreetmt-calc__table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.shreetmt-calc-page .shreetmt-calc__table thead tr {
	background: linear-gradient(135deg, #0C54A0, #0a3d7a);
}

.shreetmt-calc-page .shreetmt-calc__table thead th {
	color: #fff;
	padding: 11px 16px;
	text-align: left;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
}

.shreetmt-calc-page .shreetmt-calc__table tbody tr {
	border-bottom: 1px solid #e0e4ea;
	transition: background 0.18s;
}

.shreetmt-calc-page .shreetmt-calc__table tbody tr:last-child {
	border-bottom: none;
}

.shreetmt-calc-page .shreetmt-calc__table tbody tr:hover {
	background: rgba(239, 127, 26, 0.05);
}

.shreetmt-calc-page .shreetmt-calc__table tbody td {
	padding: 10px 16px;
	color: #333;
	border: none;
}

.shreetmt-calc-page .shreetmt-calc__table tbody td:last-child {
	color: #0C54A0;
}

/* Notes */
.shreetmt-calc-page .shreetmt-calc__notes {
	background: rgba(12, 84, 160, 0.04);
	border-left: 3px solid #0C54A0;
	border-radius: 0 10px 10px 0;
	padding: 13px 16px;
}

.shreetmt-calc-page .shreetmt-calc__notes-head {
	color: #0C54A0;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.shreetmt-calc-page .shreetmt-calc__notes-list {
	margin: 0;
	padding-left: 16px;
}

.shreetmt-calc-page .shreetmt-calc__notes-list li {
	color: #666;
	font-size: 0.8rem;
	line-height: 1.6;
	margin-bottom: 4px;
}

.shreetmt-calc-page .shreetmt-calc__notes-list li:last-child {
	margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
	.shreetmt-calc-page .shreetmt-calc__form-col {
		border-right: none;
		border-bottom: 1px solid #e0e4ea;
	}
}

@media (max-width: 767px) {
	.shreetmt-calc-page .shreetmt-calc__hero-img {
		min-height: 300px;
	}

	.shreetmt-calc-page .shreetmt-calc__section {
		padding: 36px 0 44px;
	}

	.shreetmt-calc-page .shreetmt-calc__form-wrap,
	.shreetmt-calc-page .shreetmt-calc__result-wrap {
		padding: 26px 20px 30px;
	}

	.shreetmt-calc-page .shreetmt-calc__hero-overlay {
		padding: 50px 0;
	}
}

@media (max-width: 480px) {
	.shreetmt-calc-page .shreetmt-calc__summary {
		flex-direction: column;
	}
}





/*-----------------------Clint page--------------------------------- */

/* ── Banner ── */

.clients-page__banner {
	overflow: hidden;
	background: url('https://shreetmt.step1inc.com/wp-content/uploads/2026/04/client-1-1920x500-1.webp') no-repeat center center;
	background-size: cover;
	padding: 220px 0 120px;
	position: relative;
}

/* ── Heading Section ── */
.clients-page .clients-page__heading-sec {
	padding: 70px 0 40px;
	background: #fff;
	position: relative;
}

.clients-page .clients-page__heading-sec::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0C54A0, #EF7F1A, #E85222);
}

.clients-page .clients-page__title {
	color: #111;
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
}

.clients-page .clients-page__title::after {
	content: '';
	display: block;
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, #EF7F1A, #E85222);
	border-radius: 2px;
	margin: 10px auto 0;
	animation: clientsLine 0.8s 0.3s ease forwards;
}

@keyframes clientsLine {
	to {
		width: 70px;
	}
}

.clients-page .clients-page__subtitle {
	color: #888;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.clients-page__grid-sec .wp-block-gallery figure.wp-block-image {
	height: 120px;
	width: 150px;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background: #fff;
	padding: 10px;
}

.clients-page__grid-sec .wp-block-gallery figure.wp-block-image img {
	display: block;
	height: 100% !important;
	max-width: 100% !important;
	width: auto;
}