@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
	--primary-font: "Open Sans", sans-serif;
	--primary-color: #3A347E;
	--grey-color: #c5c5c5;
	--light-color: #8391AA;
	--black-color: #000000;
	--white-color: #ffffff;
	--text-color: #545556;
	--card-bg-color: #DFE8F5;
	--card-bg-light: #F2FBFE;
	--blude-btn-color: #38347E;
	--primary-transition: all ease-in-out 0.35s;
	--box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	--box-shadow-big: 0px 8px 20px 5px rgba(0, 0, 0, 0.2);
	--base-border-radius: 20px;
	--base-font-size: 20px;
}

* {
	scrollbar-color: var(--primary-color) var(--light-color);
	scrollbar-width: thin;
}

ol,
ul {
	padding: 0;
	margin: 0;
}

/* width */
::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

body {
	font-family: var(--primary-font);
	font-size: 16px;
	color: var(--text-color);
	background: var(--white-color);
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

@media (min-width: 576px) {

	.container,
	.container-sm {
		max-width: 100%;
	}
}

@media (min-width: 768px) {

	.container,
	.container-md,
	.container-sm {
		max-width: 100%;
	}
}

@media (min-width: 992px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 100%;

	}
}

@media (min-width: 1200px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 100%;

	}
}

@media (min-width:1454px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1465px;
	}
}

@media (max-width: 1350px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		padding-right: 20px;
		padding-left: 20px;
	}
}

a {
	color: var(--text-color);
}

a:hover {
	color: var(--secondary-color);
}

a,
a:hover {
	text-decoration: none;
}

ul li,
ol li {
	list-style: none;
}

img {
	max-width: 100%;
}

.slick-dots li button:before {
	font-size: 14px;
	line-height: 25px;
	width: 25px;
	height: 25px;
	opacity: .25;
	color: black;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #3e3e88;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--primary-color);
	margin-bottom: 1.2rem;
	font-weight: 600;
}

textarea {
	resize: none;
}

main {
	overflow: hidden;
}

.fs-80 {
	font-size: 80px;
}

.fs-60 {
	font-size: 60px;
}

.fs-50 {
	font-size: 50px;
}

.fs-40 {
	font-size: 40px;
}

.fs-30 {
	font-size: 30px;
}

.fs-24 {
	font-size: 24px;
}


.fs-27 {
	font-size: 27px;
}


.fs-20 {
	font-size: 20px;
}

.fs-16 {
	font-size: 16px;
}

.headings span {
	color: var(--secondary-color);
}

p {
	margin-bottom: 1.5rem;
}

.sc-pt-120 {
	padding-top: 120px;
}

.sc-pb-120 {
	padding-bottom: 120px;
}


.sc-pt-60 {
	padding-top: 60px;
}

.sc-pb-60 {
	padding-bottom: 60px;
}

.sc-pt-50 {
	padding-top: 50px;
}

.sc-pb-50 {
	padding-bottom: 50px;
}

.sc-pt-40 {
	padding-top: 40px;
}

.sc-pb-40 {
	padding-bottom: 40px;
}


.sc-pt-30 {
	padding-top: 30px;
}

.sc-pb-30 {
	padding-bottom: 30px;
}

.mc-mb-40 {
	margin-bottom: 40px;
}

.mc-mt-60 {
	margin-top: 60px;
}


main {
	overflow: hidden;
}

.form-control:focus {
	box-shadow: inherit;
	border: 0;
	outline: none;
}

/* buttons */
.button {
	display: inline-block;
	padding: 14px 68px 14px 22px;
	border-radius: calc(var(--base-border-radius) * 2.5);
	color: var(--white-color);
	font-size: 16px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: var(--btn-text-color);
}

.button::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 13px;
	background-image: url("../images/btn-arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: right 0.3s ease, transform 0.3s ease;
}

.button.button-primary::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 13px;
	background-image: url("../images/arrow-white.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: right 0.3s ease, transform 0.3s ease;
}

.button-line-white {
	color: var(--white-color);
	border-color: var(--white-color);
}

.button-line-white::after {
	background-image: url("../images/arrow-white.svg");
}

.button-line-blue {
	color: var(--blude-btn-color);
	border: 1px solid var(--blude-btn-color);
}

.button-line-blue::after {
	background-image: url("../images/blue-arrow.svg");
}

.button-line-white:hover {
	color: var(--white-color);
}

.button.button-primary:hover {
	color: var(--white-color);
}

.banner-inner {
	position: relative;
	align-items: flex-end;
	justify-content: space-between;
}

.banner-content .headings,
.banner-text-para {
	color: var(--white-color);
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.banner-left {
	flex: 0 0 auto;
	width: 64%;
	align-self: center;
}

.banner-right {
	flex: 0 0 auto;
	width: 34%;
	position: relative;
	text-align: right;
}

.banner-right .headings {
	text-transform: uppercase;
	line-height: 1.4 !important;
}

/* Mouse Scroll */

.mouse {
	width: 13px;
	height: 22px;
	position: relative;
	border: 1px solid #a2a2a2;
	border-radius: 6px;
	position: relative;
}

.mouse-wheel {
	position: absolute;
	left: 50%;
	margin-left: -0.5px;
	width: 1.5px;
	height: 4.5px;
	background-color: #a2a2a2;
	display: block;
	bottom: 8px;
}

.inner-page-hero.product-page-hero::after {
	content: none;
}

.inner-page-hero.product-page-hero .banner-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	z-index: 1;
}

.mouse-scroll-indicator {
	position: absolute;
	bottom: 15px;
	left: 50%;
	animation: scrollAnimation 1.5s infinite ease-in-out;
	width: 16px;
	margin-left: -4px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mouse-scroll-indicator .mouse-wheel {
	animation: wheelAnimation 1s infinite ease-in-out;
}

.mouse-scroll-indicator .arrow-down {
	text-align: center;
	width: 12px;
	background: url(../images/mouse-arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 24px;
}

.inner-page-banner .mouse-scroll-indicator {
	bottom: 20px;
}

@keyframes scrollAnimation {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(5px);
		opacity: 0.7;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes wheelAnimation {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(5px);
		opacity: 0.5;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.inner-page-hero.product-page-hero .slick-dots {
	bottom: -38px;
}



@media screen and (min-width: 992px) {
	.button:hover::after {
		right: 30px;
		transform: translateY(-50%) scale(1.2);
	}
}

.button:focus,
.button-line:focus,
.button-white:focus {
	outline: 0;
	box-shadow: none;
}

.button-primary {
	color: var(--white-color);
	background-color: var(--primary-color);
}

.button-primary:hover {
	color: var(--white-color);
	box-shadow: 0px 0px 26px 4px rgba(0, 0, 0, 0.2);
}


.button-line-primary {
	background: transparent;
	border: 1px solid var(--btn-text-color);
	color: var(--btn-text-color);
}

.button-line-white {
	background: transparent;
	border: 1px solid var(--white-color);
}

.button-line:hover {
	background: var(--primary-color);
}

.button-white {
	color: var(--primary-color);
	background: var(--white-color);
	border: 1px solid var(--white-color);
}

.trust-boxes-outer .card {
	border-radius: var(--base-border-radius);
	height: 100%;
	text-align: left;
	padding: 30px;
	transition: 0.3s ease;
	border: 0;
	box-shadow: 0px 8px 36px 0px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.trust-boxes-outer .card-body {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	position: relative;
	z-index: 2;
}

.trust-boxes-outer .card:hover {

	transition: 0.3s ease;
	box-shadow: none;
}

.overlay-card {
	width: 52px;
	position: absolute;
	height: 52px;
	border-radius: 50%;
	background-color: var(--btn-text-color);
	top: 30px;
	left: 30px;
	z-index: 0;
	transition: transform 0.4s ease-out;
}

.card:hover .overlay-card {
	transform: scale(12) translateZ(0);
}

.trust-boxes-outer .card:hover .card-title {
	color: var(--white-color);
}

.trust-boxes-outer .card:hover .card-text {
	color: var(--extra-light-blue-text-color);
}

.icon-box {
	width: 52px;
	height: 52px;
	background-color: var(--white-color);
	border: 1px solid var(--btn-text-color);
	padding: 10px;
	display: flex;
	align-items: center;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.card-title {
	color: var(--primary-color);
}

.button-white::after {
	background-image: url("../images/blue-arrow.svg");
}


.button-white:hover::after {
	background-image: url("../images/blue-arrow.svg");
}

.button-downlaod::after {
	background-image: url("../images/download-icon.svg");
}


.button-downlaod:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

.button-downlaod:hover::after {
	background-image: url("../images/download-icon.svg");
}

hr.divi-bdr {
	background-color: #ccc;
}

.enquire-button {
	position: fixed;
	right: -56px;
	width: 172px;
	top: 50%;
	margin-top: -85px;
	height: 50px;
	padding: 0;
	border: none;
	cursor: pointer;
	transform: rotate(90deg);
	-webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.19);
	-moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.19);
	box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.19);
	border: 1px solid var(--black-color);
	line-height: 46px;
	color: var(--primary-color);
	background-color: var(--white-color);
	padding: 0 22px;
}

.enquire-button::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 13px;
	background-repeat: no-repeat;
	transition: right 0.3s ease, transform 0.3s ease;
	background: url(../images/arrow-black.svg) no-repeat
}

.banner-contents {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
}

.banner-home .banner-contents::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	z-index: 1;
}

.banner-home .banner-contents .banner-inner {
	z-index: 2;
	padding-bottom: 100px;
}

/* Container for video and overlay */
.video-background-container {
	position: relative;
	width: 100%;
	height: calc(100dvh - 100px);
	overflow: hidden;
}

/* Background video styling */
.video-background-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 1;
	object-fit: cover;
}

/* Overlay background */
.overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Example overlay color with transparency */
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.video-pop {
	position: relative;
	border-radius: calc(--base-border-radius * 2);
}

.category-boxes-outer {
	justify-content: space-between;
}

.why-choose-sec,
.industry-evens-sc {
	background: var(--secondary-color);
	color: var(--white-color);
}

.why-choose-sec p.card-text,
.industry-evens-sc p.card-text {
	color: var(--text-color);
}

.left-choose-box {
	flex: 0 0 auto;
	width: 45%;
}

.left-choose-box .headings,
.leading-venets-header .headings {
	color: var(--white-color);
}

.left-choose-box .headings span,
.leading-venets-header .headings span {
	color: var(--light-blue-color);
}

.left-counter-outer {
	width: 51%;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.right-innovation {
	width: 46%;
	flex: 0 0 auto;
}

.left-counter-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	width: 100%;
}

.innoveation-outer {
	justify-content: space-between;
}

.left-counter-box .cards {
	width: 100%;
	padding: 18px 25px;
	flex-direction: column;
	gap: 15px;
	border-radius: var(--base-border-radius);
	border: 0;
	background-color: var(--primary-color);
	transform: scale(1);
	transition: 0.3s;
}

.left-counter-box .card-text {
	color: #c1bffc;
	text-align: center;
}

.left-counter-box .card-body {
	padding: 0;
	text-align: center;
}

.left-counter-box .cards figure {
	width: 60px;
	height: 60px;
	margin: 0 auto 2px;
}

.play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.counter-box {
	color: var(--white-color);
	font-weight: 600;
	padding-bottom: 0px;
	letter-spacing: -.70px;
	text-align: center;
}

.card-img-pro {
	max-height: 123px;
}

.button-submit {
	border: 0;
	padding: 12px 28px;
}

.left-counter-box .cards:hover {
	transform: scale(1.03);
	transition: 0.3s;
	background-color: var(--card-bg-color);
}

.left-counter-box .cards figure img {
	height: 100%;
	filter: brightness(0) invert(1);
}

.left-counter-box .cards:hover figure img {
	filter: none;
}

.left-counter-box .cards:hover .counter-box {
	color: var(--primary-color);
}

.left-counter-box .cards:hover .card-text {
	color: var(--primary-color);
}


.product-range-sc {
	background-color: var(--card-bg-color);
}

.product-range-sc .slick-dots {
	bottom: -40px;
}

.product-range-sc-btn {
	margin-top: 70px;
}

.product-range-contents .card-body {
	background-color: rgba(56, 53, 127, 0.9);
	position: absolute;
	width: calc(100% - 30px);
	left: 15px;
	bottom: 15px;
	display: flex;
	border-radius: var(--base-border-radius);
	flex-direction: row-reverse;
	padding: 30px 19px;
	color: #fff;
}

.arrow-links {
	border-radius: calc(--base-border-radius *2 + 10px);
	background-color: #fff;
	width: 50px;
	height: 50px;
	position: absolute;
}

.product-range-contents .card {
	border: 0;
	box-shadow: 0 0px 4px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	height: 560px;
	margin: 5px 0;
}

.product-range-contents .card img,
.product-range-contents .card {
	border-radius: var(--base-border-radius);
}

.product-range-contents .card img {
	transition: 0.3s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-range-sc .slick-slide {
	margin: 0 15px;
}

.product-range-sc .slick-list {
	margin: 0 -15px;
}

.product-range-contents .card:hover .arrow-links a {
	background-position: 64% 50%;
	transition: 0.3s;
}

.product-range-contents .card:hover img {
	transform: scale(1.05);
	transition: 0.3s;
}

.product-list-section .product-thumbs {
	height: 285px;
}

.product-list-section>.container>.row {
	gap: 10px 0px;
}

.product-thumbs-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 1s;
	transform-style: preserve-3d;
}

.product-thumbs:hover .product-thumbs-inner {
	transform: rotateY(180deg);
}

.product-thumbs-front,
.product-thumbs-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: var(--base-border-radius);
}

/* Back side style */
.product-thumbs-back {
	background: #222;
	color: #fff;
	transform: rotateY(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.product-thumbs-back p {
	margin: 0;
}

.arrow-links {
	border-radius: 50%;
	background-color: #fff;
	width: 50px;
	height: 50px;
	align-self: flex-start;
}

.arrow-links a {
	width: 50px;
	height: 50px;
	display: block;
	text-align: center;
	line-height: 44px;
	background: #fff url(../images/arrow-black.svg) center center;
	background-repeat: no-repeat;
	border-radius: 50%;
	transition: 0.3s;
}

.product-range-contents .card-title {
	color: var(--white-color);
	padding-right: 55px;
	padding-bottom: 15px;
	min-height: 75px;
}

.product-range-contents .card-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* Limit to 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-listing {
	row-gap: 30px;
	flex-wrap: wrap;
}

.datasheet-btn span {
	background: #fff url(../images/pdf-icon.svg) center center;
	width: 15px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.prodcuct-preview {
	margin: 0;
	border-radius: var(--base-border-radius);
	box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.2);
}

.prodcuct-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--base-border-radius);
}

/* Form */
.form-control {
	height: 50px;
}

select.form-control {
	background: #f3f4f6 url(../images/form-select.svg) no-repeat right 20px center;
}

select.form-control:focus {
	border: 1px solid #becdd8;
}

.form-group label {
	margin-bottom: 10px;
}

/* HEADER STYLE */
.main-header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	background: #ffffff;
	transition: var(--primary-transition);
	padding: 0px 15px;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
}

.main-header.fixed-header {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.overview-x-hidden {
	overflow-x: hidden !important;
}

.main-header .top-header {
	background-color: var(--secondary-color);
	color: var(--white-color);
	padding-top: 10px;
	padding-bottom: 10px;
}

.top-header .top-header-con {
	display: flex;
	justify-content: flex-end;
}

body.scrolled .top-header {
	display: none;
}

.main-header .top-header .top-nav {
	display: flex;
	align-items: center;
}

.main-header .top-header .top-nav li:first-child {
	border-right: 1px solid #7c8490;
}

.main-header .top-header .top-nav li {
	padding: 0 15px;
}

.main-header .top-header .top-nav li a {
	color: var(--white-color);
}

.main-header .top-header .top-nav li a:hover,
.main-header .top-header .top-nav li.current-menu-item a {
	color: var(--primary-color);
}

.top-header .top-header-con .top-menu-2 {
	display: none;
}

.top-header .top-header-con .button {
	padding: 5px 15px;
}

.top-header .top-header-con .button::after {
	display: none;
}

.main-header .logo-widget {
	transition: var(--primary-transition);
}

.main-header .logo-widget {
	transition: width 0.5s ease, height 0.5s ease;
	width: 280px;
	height: 64px;
}

.main-header.fixed-header .top-header {
	display: none;
}

.header-widget {
	display: flex;
	align-items: center;
}

.makeinindia {
	padding: 21px 0px 28px 20px;
	border-left: 1px solid var(--light-color);
	max-width: 127px;
}

/* Main Navigation */

.header-widget {
	padding: 21px 0;
}

/* Main Navigation */
.main-navigation {
	margin-left: auto;
}

.main-navigation .menu {
	display: flex;
	margin-right: 10px;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation ul li {
	position: relative;
	padding: 0;
	margin: 0 5px;
}

.main-navigation ul>li>a {
	display: block;
	padding: 10px 20px;
	line-height: 1;
	color: var(--black-color);
	border-radius: var(--base-border-radius);
	position: relative;
	transition: all 0.3s ease;
}

.main-navigation ul>li {
	border-radius: var(--base-border-radius);
}

.main-navigation ul>li .sub-menu li {
	border-radius: 0;
}

.main-navigation ul>li.menu-item-has-children>a {
	padding-right: 30px;
}

.main-navigation>ul>li:hover>a,
.main-navigation>ul>li.current-menu-item>a {
	color: var(--white-color);
	background-color: var(--primary-color);
}

.main-navigation ul .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 245px;
	padding: 10px 0;
	background-color: var(--white-color);
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 999;
}

.main-navigation>ul>li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation ul .sub-menu li {
	position: relative;
	margin: 0;
}

.main-navigation ul .sub-menu li a {
	display: block;
	width: 100%;
	padding: 10px 20px;
	font-size: 14px;
	line-height: normal;
	color: var(--black-color);
	transition: color 0.3s ease;
}



.main-navigation ul .sub-menu li .sub-menu {
	left: 100%;
	top: 0;
}

.main-navigation ul .sub-menu li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.current-menu-item {
	background: var(--primary-color);
}

.main-navigation ul .sub-menu li:hover {
	background: #3a347e2a;
}

.main-navigation ul .sub-menu li.current-menu-item:hover {
	background: var(--primary-color);
}

.main-navigation ul .sub-menu .current-menu-item>a {
	color: #fff;

}

.main-navigation ul li.menu-item-has-children>a::before {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	width: 11px;
	height: 6px;
	background: url(../images/arrow-down.svg) no-repeat center;
	transition: transform 0.3s ease, background 0.3s ease;
}

.main-navigation ul li.menu-item-has-children:hover>a::before {
	transform: translateY(-50%) rotate(180deg);
	background: url(../images/arrow-down.svg) no-repeat center;
}

.main-navigation ul ul li.menu-item-has-children>a::before {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	width: 8px;
	height: 12px;
	background: url(../images/mouse-arrow-down.svg) no-repeat center;
	transform: translateY(-50%) rotate(-90deg);
	transition: transform 0.3s ease;
}

.main-navigation ul ul li.menu-item-has-children:hover>a::before {
	transform: translateY(-50%) rotate(0deg);
}

.text-center {
	text-align: center !important;
	justify-content: center !important;
}

.main-navigation button.sub-menu-toggle {
	display: none !important;
}

.close-btn {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	width: 43px;
	height: 43px;
	color: var(--white-color);
	font-size: 20px;
	margin: 15px;
	text-align: center;
}

.search-container {
	display: flex;
	align-items: center;
	max-width: 600px;
	margin: 0 auto;
}

.search-container .search-widget {
	margin-bottom: 0;
	width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
	transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
	background-color: transparent !important;
}

/**Footer***/
/* Top Top */
.totop {
	color: var(--white-color);
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 30px;
	height: 30px;
	text-decoration: none;
	display: none;
	transition: 0.5s;
	z-index: 2;
	background: var(--secondary-color);
	border-radius: 100%;
}

.totop:focus {
	outline: none;
	text-decoration: none;
}

.totop i {
	font-size: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.totop:hover {
	background: var(--grey-color);
}

.play-btn:before,
.play-pause-btn::before,
.play-pause-btn::after,
.play-btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 10px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
}

.product-range-header p {
	max-width: 780px;
	margin: 0 auto 15px;
}


.play-btn:before,
.play-pause-btn::before {
	animation: ripple 2s linear infinite;
}

.play-btn:after,
.play-pause-btn::after {
	animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
		opacity: 1;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}


a.chatbot-btn {
	position: fixed;
	right: 5px;
	bottom: 5px;
	z-index: 2;
}

.info-btn {
	position: fixed;
	right: 19px;
	bottom: 103px;
	z-index: 2;
	cursor: pointer;
	width: 61px;
	display: none;
}

.footer {
	font-size: 16px;
	background-color: var(--primary-color);
}

.footer-wrap {
	gap: 40px;
	justify-content: space-between;
}


.footer .footer-top h5 {
	font-size: 16px;
	color: var(--primary-color);
}

.footer-logo-widget {
	margin-bottom: 25px;
}

.footer-contant {
	margin: 25px 0;
}

ul.footer-links li {
	font-size: 14px;
	margin: 0 0px 10px 0;
	padding: 0 0px;
	display: block;
	position: relative;
}

ul.footer-social-links {
	display: flex;
}

.footer-social-links li {
	margin: 0 10px 0 0;
	padding: 0;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	position: relative;
}

.footer-social-links li a {
	color: var(--white-color);
	display: block;
	border-radius: 100%;
	opacity: 0.8;
}

.footer-social-links li a:hover {
	opacity: 1;
}


.footer .footer-contact li {
	font-size: 14px;
	margin-bottom: 15px;
	display: flex;
}

.footer .footer-contact li a {
	display: flex;
	width: 100%;
}

.footer .footer-contact li span {
	display: block;
	margin-left: 10px;
}

.footer .footer-mid {
	background: #041329;
	color: var(--white-color);
}

.footer .footer-mid .container {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .footer-mid .row {
	align-items: flex-start;
}

.footer .footer-lcoation {
	display: flex;
	align-items: flex-start;
}

.footer .footer-lcoation h5 {
	color: var(--white-color);
	font-size: 16px;
	margin-bottom: 10px;
}

.footer .footer-lcoation .cla {
	margin-left: 15px;
}

.footer .footer-lcoation .cla p {
	color: #b6c0d0;
	margin: 0;
}

.footer .footer-bottom {
	font-size: 14px;
	color: var(--white-color);

}

.footer .footer-bottom .copyright-outer {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding: 30px 0;
}

.footer .footer-bottom p {
	margin: 0;
	color: var(--text-color);
	font-size: 14px;
}

.footer .footer-bottom .copyright-link {
	display: flex;
	justify-content: flex-end;
}

.footer .footer-bottom .copyright-link a {
	color: var(--white-color);
}

.footer .footer-bottom .copyright-link a:hover {
	color: var(--light-color);
}

.footer .footer-bottom ul {
	display: flex;
	justify-content: flex-end;
}

.footer .footer-bottom ul li {
	padding: 0 8px;
	border-right: 1px solid #b6c0d0;
}

.footer .footer-bottom ul li:last-child {
	border: 0;
	padding-right: 0;
}


.footer .newsletter-area {
	border: 1px solid #BFBFBF;
	border-radius: calc(var(--base-border-radius) * 2.5);
	display: flex;
	justify-content: space-between;
	padding: 5px 8px 5px 14px;
	align-items: center;
	position: relative;
	display: inline-block;
}

.footer .newsletter-area .wpcf7-not-valid-tip {
	bottom: -26px;
	left: 0;
}

.footer .newsletter-area .wpcf7 form .wpcf7-response-output {
	position: absolute;
	bottom: -40px;
	color: var(--white-color) !important;
}

.footer .newsletter-area input[type="email"] {
	border: none;
	background-color: transparent;
	color: var(--white-color);
	padding-left: 5px;
}

.makeinindia-logo img {
	width: 167px;
}

/* Change Autocomplete styles in Chrome*/
.footer input:-webkit-autofill,
.footer input:-webkit-autofill:hover,
.footer input:-webkit-autofill:focus {
	border: 1px solid var(--white-color);
	-webkit-text-fill-color: var(--white-color);
	-webkit-box-shadow: 0 0 0px 1000px #06172f inset;
	transition: background-color 5000s ease-in-out 0s;
}

.footer .newsletter-area .newsletter-form p {
	margin: 0;
	display: flex;
	max-width: 360px;
}

.wpcf7-spinner {
	position: absolute !important;
}

.footer .newsletter-area .btn {
	padding: 14px 20px;
	min-width: 150px;
	border: 0;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: calc(var(--base-border-radius) * 2.5);
}

.footer .newsletter-area .btn:hover {
	background-color: var(--light-color);
}

.footer .footer-contact img {
	max-width: 20px;
}

/* Floating button */
.enqpoupup {
	display: none;
	max-width: 600px;
}


.common-btn {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 10px;
	border-radius: calc(var(--base-border-radius) * 2.5);
	cursor: pointer;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	transition: width 0.3s;
	width: 46px;
	height: 46px;
	justify-content: center;
	-webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.19);
	-moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.19);
	box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.19);
}

.common-btn:hover {
	width: 180px;
}

.phone-number,
.whatsapp-number {
	font-size: 16px;
	margin-left: 10px;
	white-space: nowrap;
	overflow: hidden;
	transition: opacity 0.3s;
	opacity: 0;
	color: #000;
	display: none;
}

.call-button:hover .phone-number {
	opacity: 1;
	display: block;
}

.whatsapp-button:hover .whatsapp-number {
	opacity: 1;
	display: block;
}


.box-contact-form {
	background: #ffffff;
	padding: 0;
}

.wpcf7 form .wpcf7-response-output {
	color: #000;
}

/* Home Page */
.banner {
	position: relative;
	min-height: 550px;
}

.banner .item {
	position: relative;
	overflow: hidden;
}

.banner .item img.banner-main {
	width: 100%;
	height: 630px;
	object-fit: cover;
}

.banner .item .banner-aniamted,
.banner .item .banner-aniamted-2 {
	position: absolute;
	bottom: 20px;
	animation: bannermoveXY1 10s ease-in-out infinite;
}

.banner .item .banner-aniamted {
	left: 20px;
	width: 359px;
}

.banner .item .banner-aniamted-2 {
	left: 0;
	width: 520px;
}

.banner .item .banner-aniamted img,
.banner .item .banner-aniamted-2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Diagonal movement keyframes */
@keyframes bannermoveXY1 {

	0%,
	100% {
		transform: translate(0, 0);
	}

	25% {
		transform: translate(15px, -15px);
	}

	50% {
		transform: translate(30px, 10px);
	}

	75% {
		transform: translate(-10px, -20px);
	}
}


.banner .item .cover .banner-content {
	position: relative;
	overflow: hidden;
	width: 60%;
	max-width: 600px;
}

.banner .item .cover .banner-content .heading,
.banner .item .cover .banner-content p {
	color: var(--white-color);
}

.banner .item .cover .banner-content .btn-holder {
	display: flex;
	flex-wrap: wrap;
}

.banner .slick-dots {
	bottom: -38px;
	z-index: 2;
	background-color: var(--extra-ligh-blue-color);
	height: 4px;
	line-height: 4px;
	border-radius: 5px;
}

.banner .slick-dots li button {
	width: 25px;
	height: 4px;
	background-color: var(--extra-ligh-blue-color);
	margin: 0;
	border-radius: 5px;
}

.banner .slick-dots li.slick-active button {
	width: 25px;
	height: 4px;
	background: var(--btn-text-color);
	margin: 0;
	border-radius: 5px;
}

.banner .slick-dots li {
	height: 4px;
	margin: 0;
	vertical-align: top;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

/* our-servicess-section */
.our-services-section .slick-slide {
	margin: 0 20px;
}

.our-services-section .slick-list {
	margin: 0 -20px;
}

.trusted-pioneer-section {
	background-color: var(--extra-ligh-blue-color);
	padding-bottom: 200px;
}

.trusted-inner-contents {
	gap: 30px;
	flex-wrap: wrap;

}

.pioneed-content-left,
.video-popups {
	width: calc(50% - 30px);
	flex: 0 0 auto;
}

.accesability-section {
	margin-top: -179px;
}

.right-map-box {
	width: 658px;
	flex: 0 0 auto;
}

.map-pin {
	position: absolute;
	transform: translate(-50%, -100%);
	cursor: pointer;
}

.map-pin span {
	display: none;
	position: absolute;
	top: -33px;
	left: 8px;
	background: var(--white-color);
	color: var(--primary-color);
	padding: 4px 8px;
	font-size: 12px;
	border-radius: 4px 4px 4px 0;
	white-space: nowrap;
	z-index: 3;
}

.map-pin span::after {
	content: "";
	display: block;
	position: absolute;
	border-left: 10px solid #fff;
	border-top: 0px solid transparent;
	border-bottom: 10px solid transparent;
	top: 100%;
	left: 0;
}

.map-pin:hover span {
	display: block;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.map-inner {
	position: relative;
	width: 658px;
	height: 310px;
}

.map-pin {
	position: absolute;
	transform: translate(-50%, -100%);
	/* Optional styling */
	color: #000;
	font-size: 12px;
	text-align: center;
}

.map-pin:hover {
	z-index: 5;
}

.map-pin.usa-p {
	left: 95px;
	top: 110px;
}

.map-pin.mexico-p {
	left: 126px;
	top: 123px;
}

.map-pin.canada-p {
	left: 156px;
	top: 98px;
}

.map-pin.uk-p {
	left: 293px;
	top: 79px;
}

.map-pin.germany-p {
	left: 343px;
	top: 84px;
}

.map-pin.nigeria-p {
	left: 347px;
	top: 158px;
}

.map-pin.saudi-arabia-p {
	left: 394px;
	top: 141px;
}

.map-pin.pakistan-p {
	left: 442px;
	top: 128px;
}

.map-pin.india-p {
	left: 465px;
	top: 142px;
}

.map-pin.bangladesh-p {
	left: 490px;
	top: 137px;
}

.map-pin.china-p {
	left: 474px;
	top: 110px;
}

.map-pin.indonesia-p {
	left: 516px;
	top: 189px;
}

.map-pin.indonesia-p {
	left: 516px;
	top: 189px;
}

.map-pin.beijing-p {
	left: 542px;
	top: 114px;
}

/* Optional: add pin icon if you have it */
.map-pin::before {
	display: block;
	content: "";
	width: 19px;
	height: 25px;
	background: url('../images/map-pic-icon.svg') no-repeat;
}


.trusted-countries-box {
	width: calc(100% - 658px);
	flex: 0 0 auto;
	padding-right: 40px;
}

.events-lists-box {
	justify-content: space-evenly;
	margin-bottom: 40px;
}

.events-lists-box .card {
	padding: 19px 21px;
	border-radius: var(--base-border-radius);
	max-width: 384px;
}

.events-lists-box .card .card-img-top {
	border-radius: var(--base-border-radius);
}

.events-lists-box .card .card-body {
	padding: 20px 0 0 0;
}

.hr-outer {
	background-color: #fff;
}

.lets-connect-header p {
	margin-bottom: 0;
}

.footer .newsletter-area input::placeholder {
	opacity: 0.8 !important;
	color: #fff !important;
}

.footer .newsletter-area input::-webkit-input-placeholder {
	/* Chrome, Safari */
	opacity: 0.8 !important;
	color: #fff !important;
}

.footer .newsletter-area input::-moz-placeholder {
	/* Firefox 19+ */
	opacity: 0.8 !important;
	color: #fff !important;
}

.footer .newsletter-area input:-ms-input-placeholder {
	/* IE 10+ */
	opacity: 0.8 !important;
	color: #fff !important;
}

.footer .newsletter-area input:-moz-placeholder {
	/* Firefox 18- */
	opacity: 0.8 !important;
	color: #fff !important;
}

.footer .newsletter-area .button {
	padding: 14px 20px;
	min-width: 150px;
	border: 0;
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-form-control-wrap {
	display: block;
}

.copyright-outer {
	justify-content: space-between;
}

.leading-venets-header {
	max-width: 891px;
	margin: 0 auto 40px;
	padding: 0 15px;
	text-align: center;
}

.leading-venets-header p {
	font-weight: 300;
}

.lets-connect {
	gap: 30px;
	justify-content: space-between;
	align-items: center;
}

.lets-connect-btns {
	margin-left: auto;
	width: 297px;
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

.lets-connect-btns.contact-lets-connect {
	width: 225px;
}

.lets-connect-btns a {
	display: block;
}

.lets-connect-header {
	width: calc(100% - 350px);
	color: var(--white-color);
}

.lets-connect-header .headings {
	color: var(--white-color);
}

.logo-contents-footer {
	width: 30%;
}

.middle-links-footer {
	display: flex;
	width: 34%;
	justify-content: space-between;
}

.contact-information-footer {
	width: 26%;
}

.icon-ftr {
	min-width: 32px;
}

.contact-address,
.contact-phone,
.contact-email {
	margin-bottom: 20px;
}

.newsletter-area {
	margin-top: 30px;
}

.category-boxes-outer {
	margin-bottom: 35px;
	margin-top: 60px;
}

.category-boxes-outer .card .img-box img {

	filter: grayscale(100%);
}

.category-boxes-outer .card:hover .img-box img {
	transition: filter 0.3s ease;
	filter: grayscale(0%);
}

.category-boxes-outer .card:hover .card-title {
	color: var(--secondary-color);
}

.certification-hone-outer {
	border-bottom: 1px solid #d5d1ff;
	padding-bottom: 70px;
	padding-top: 90px;
}

.certification-carousel-outer .item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	/* adjust as per your design */
}

.certification-carousel-outer .item-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.certification-carousel-outer .item-logo img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.4s ease, filter 0.4s ease;
}


.certification-carousel-outer .item-logo img:hover {
	transform: scale(1.1);
	filter: brightness(1.2);
}

.left-choose-box {
	width: 511px;
	flex: 0 0 auto;
}

.choose-outer-box {
	justify-content: space-between;
}

.testi-slider-wrap .left-box-testimonial {
	width: 548px;
	flex: 0 0 auto;
}

.date-evnt {
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.address-evnt {
	color: var(--text-color);
	margin-bottom: 10px;
}

.date-evnt,
.address-evnt {
	position: relative;
	padding-left: 25px;
	margin-top: 15px;
}

.date-evnt img,
.address-evnt img {
	position: absolute;
	left: 0;
	top: 4px;
}

.footer-links-outer ul li {
	margin-bottom: 20px;
}

.footer-links-outer ul li:last-child {
	margin-bottom: 5px;
}

.footer-links-outer ul li a:hover,
.footer-links-outer ul li.current-menu-item a {
	color: var(--light-color);
}

.footer-links-outer .menu-item-description {
	display: none !important;
}

.left-copyright a {
	color: var(--white-color);
}

.left-copyright a:hover {
	color: var(--light-color);
}

.remore-btn {
	position: relative;
	color: var(--btn-text-color);
}

.remore-btn::after {
	content: "";
	width: 22px;
	height: 10px;
	background-image: url(../images/btn-arrow.svg);
	display: block;
	position: absolute;
	left: 112%;
	top: 7px;
}

/*trusted section*/
.trusted-section,
.teams-part {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.trusted-title {
	color: var(--white-color);
}

.trusted-description {
	color: var(--white-color);
}

.trusted-image-wrapper {
	border-radius: var(--base-border-radius);
	overflow: hidden;
}

.trusted-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: var(--box-shadow-big);
	object-fit: cover;
	/* max-height: 570px; */
}

/* Right side list */
.trusted-list {
	width: 100%;
}

/* Default style: all trusted items have a border-bottom */
.trusted-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.trusted-link {
	padding: 26px 70px 26px 0px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 18px;
	justify-content: space-between;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.trusted-item:hover .trusted-link,
.trusted-item.active .trusted-link {
	border-radius: var(--base-border-radius);
	background-color: var(--white-color);
	color: var(--text-color);
	padding: 26px 70px 26px 38px;

}

.trusted-item:hover .trusted-link .trusted-subtitle,
.trusted-item.active .trusted-link .trusted-subtitle {
	color: var(--primary-color);
}

.arrow-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
	margin-left: 15px;
	background: url(../images/arrow-black.svg);
	background-repeat: no-repeat;
	width: 18px;
	height: 13px;
	position: absolute;
	right: 30px;
	top: 30px;
	display: none;
}

.trusted-link:hover .arrow-icon,
.trusted-item.active .trusted-link .arrow-icon {
	transform: translateX(6px);
	display: block;
}

.trusted-subtitle {
	font-weight: 600;
	color: var(--light-color);
	margin-bottom: 4px;
}

.trusted-subdesc {
	color: var(--light-color);
	margin-bottom: 0;
	font-weight: 400;
	min-height: 54px;
}

.trusted-right {
	padding-left: 30px;
}

.teans-list-slider-outer .slick-prev,
.teans-list-slider-outer .slick-next {
	width: 50px;
	height: 50px;
	top: auto;
	bottom: -75px;
	background-position: center;
	border-radius: 50%;
	border: 1px solid var(--white-color);
	background-repeat: no-repeat;
	transform: none;
	opacity: 0.5;
}

.teans-list-slider-outer .slick-prev:hover,
.teans-list-slider-outer .slick-next:hover {
	opacity: 1;
}

.teans-list-slider-outer .slick-prev:before,
.teans-list-slider-outer .slick-next:before {
	font-size: 0;
}

.teans-list-slider-outer .slick-prev {
	background-image: url(../images/prev-arrow.svg);
	left: 50%;
	margin-left: -60px;
}

.teans-list-slider-outer .slick-next {
	background-image: url(../images/slider-arrow-next.svg);
	right: 50%;
	margin-right: -60px;
}

.cont-add-ftr {
	line-height: 2;
}

.footer-col-address-inner {
	padding-left: 20px;
}

.img-holder-top {
	padding-right: 40px;
}

.img-holder-bottom {
	padding-left: 35px;
}

.flagship-projects-section {
	background-color: var(--card-bg-color);
}

.section-header-row {
	margin-bottom: 15px;
}

.flagship-projects-section .header-left {
	padding-right: 20px;
}

.flagship-projects-section .header-right {
	padding-left: 15px;
}

.extra-case-row {
	padding-top: 50px;
}

.flagship-projects-section h2 {
	color: var(--primary-color);
}

.flagship-projects-section .header-right p {
	line-height: 1.6;
}

.flagship-projects-section .header-right strong {
	font-weight: 600;
	margin-top: 10px;
	font-size: 20px;
}

.flagship-projects-section .projects-row {
	gap: 30px 0;
}

.extra-case-row .projects-row {
	flex-direction: row-reverse;
}

.flagship-projects-section .card-image {
	height: 460px;
	object-fit: cover;
	width: 100%;
}

.flagship-projects-section .card-wrapper {
	border-bottom: 1px solid #9A9AE3;
	height: 100%;
}

.card-wrapper:hover .card-image {
	opacity: 1;
}

.card-wrapper:hover .arrw-link {
	top: 15px;
	right: 5px;
	transition: 0.3s;
}

.card-image {
	width: 100%;
	border-radius: var(--base-border-radius);
	margin-bottom: 15px;
	opacity: 0.9;
}

.flagship-projects-section .card-title {
	color: var(--primary-color);
	font-weight: 600;
	min-height: 64px;
}

.flagship-projects-section .card-text {
	color: var(--text-color);
	max-width: 600px;
}

.card-wrapper .card-body {
	position: relative;
	padding-left: 0;
	padding-right: 50px;
}

.arrw-link {
	width: 40px;
	height: 33px;
	display: block;
	text-align: center;
	line-height: 44px;
	background-image: url(../images/arrow-blue.svg);
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 13px;
	transition: 0.3s;
}


.insights-section {
	background-color: #fff;
}

.insights-title {
	color: var(--primary-color);
	font-weight: 600;
}

.insights-subtitle {
	margin-top: 10px;
}

.insights-cards-row {
	margin-top: 40px;
}

.insights-card {
	background-color: var(--primary-color);
	border-radius: 16px;
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: 0.3s;
}

.insights-card-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	transform: scale(1);
	transition: 0.3s;
}

.insights-card:hover .insights-card-image {
	transform: scale(1.05);
	transition: 0.3s;
}

.insights-card-body {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.insights-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.tag {
	padding: 4px 10px;
	border-radius: calc(var(--base-border-radius)/4 * 3);
	font-weight: 600;
	font-size: 0.75rem;
	color: #fff;
}

.industry-tag {
	background-color: #2563EB;
}

.sustainability-tag {
	background-color: #059669;
}

.company-tag {
	background-color: #7C3AED;
}

.date {
	color: #ddd;
}

.insights-card-title,
.insights-card-title a {
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--white-color);
}

.insights-card-description {
	color: #e1e1f0;
	flex-grow: 1;
	margin-bottom: 10px;
}

.insights-read-more {
	margin-top: 15px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	position: relative;
	display: inline-block;
	align-self: flex-start;
}

.insights-read-more::after {
	content: "";
	position: absolute;
	left: 107%;
	width: 20px;
	height: 17px;
	background: url(../images/arrow-white.svg);
	display: block;
	top: 6px;
	z-index: 2;
	background-repeat: no-repeat;
	transition: 0.3s;
}

.insights-read-more:hover::after {
	left: 110%;
	transition: 0.3s;
}

.cta-section {
	background-color: var(--primary-color);
	padding: 60px 20px;
	color: #fff;
}

.image-holder-accordian {
	display: none;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.cta-subtitle {
	font-size: 1.1rem;
	color: #d5d5f0;
}

.cta-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	margin-top: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

.cta-btn-primary {
	background-color: #fff;
	color: #111;
	margin-right: 10px;
}

.cta-btn-primary:hover {
	background-color: #eee;
}

.cta-btn-outline {
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
}

.cta-btn-outline:hover {
	background-color: #5e51c7;
}

.footer-col-quicklinks a,
.footer-col-sectors a,
.footer-col-products a,
.footer-col-quicklinks h6,
.footer-col-sectors h6,
.footer-col-products h6,
.footer-col-contact h6,
.footer-col-address h6,
.cont-add-ftr,
.cont-add-ftr a {
	color: var(--white-color);
}

.insights-header-col p.insights-subtitle {
	max-width: 780px;
	margin: 0 auto;
}

.footer-col-quicklinks h6,
.footer-col-sectors h6,
.footer-col-products h6,
.footer-col-contact h6,
.footer-col-address h6 {
	margin-bottom: 50px;
}

.cont-add-ftr a:hover {
	color: var(--light-color);
}


.inner-page-hero {
	width: 100%;
	background-position: center top;
}

.inner-page-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inner-page-banner {
	padding-bottom: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.product-hero {
	position: relative;
}

.inner-page-hero::after,
.product-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	z-index: 1;
}

.inner-page-banner h1,
.inner-page-banner h2,
.inner-page-banner p {
	color: var(--white-color);
}


.contact-us-section {
	color: var(--primary-color);
	font-family: var(--primary-font);
	padding-top: 60px;
	padding-bottom: 60px;
}

.contact-title {
	font-weight: 600;
	margin-bottom: 24px;
}

.contact-description {
	line-height: 1.6;
	margin-bottom: 18px;
	color: var(--text-color);
}

.contact-info-list {
	margin-top: 30px;
	margin-bottom: 40px;
	padding-left: 0;
}

.contact-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-weight: 600;
}

.contact-info-item .contact-icon {
	width: 56px;
	height: 56px;
	margin-right: 12px;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	border: 1px solid var(--primary-color);
	padding: 10px;
	border-radius: 50%;
}

.super-india-addresses {
	background-color: var(--card-bg-color);
}


.super-india-addresses .map-innera-area {
	display: none;
}

.super-india-addresses .map-innera-area.active {
	display: block;
}

/* Use your icons in CSS - replace url with your icon paths */
.email-icon {
	background-image: url('../images/email-icon-blue.svg');
}

.phone-icon {
	background-image: url('../images/call-icon-blue.svg');
}

.clock-icon {
	background-image: url('../images/clock-icon-blue.svg');
}

.contact-link {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-link:hover {
	text-decoration: underline;
}

.contact-office-hours {
	font-weight: 600;
	color: var(--primary-color);
}

.contact-subsections {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.contact-subsection {
	max-width: 320px;
}

.contact-subsection h6 {
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.contact-subsection p {
	line-height: 1.5;
	color: var(--text-color);
	margin-bottom: 0;
}

/* Form styling */
.contact-form {
	padding: 44px 40px;
	background-color: #fff;
	box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
}

.contact-form .contact-input,
.contact-form .form-select,
.contact-form .attach-btn,
.contact-form .contact-textarea {
	border: 1px solid var(--card-bg-color);
	border-radius: 30px;
	padding: 12px 20px;
	color: var(--primary-color);
	background-color: var(--white-color);
	transition: border-color 0.3s ease;
	width: 100%;
	box-sizing: border-box;
}

.contact-form .contact-textarea {
	height: 100px;
	resize: none;
	border-radius: var(--base-border-radius);
}

.contact-form .contact-input:focus,
.contact-form .form-select:focus,
.contact-form .contact-textarea:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 6px var(--primary-color);
}


.contact-submit-btn {
	background-color: var(--primary-color);
	border: none;
	border-radius: calc(var(--base-border-radius) * 1.5);
	color: var(--white-color);
	font-weight: 600;
	padding: 14px 30px;
	cursor: pointer;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	transition: background-color 0.3s ease;
	position: relative;
	width: 100%;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
	background-color: var(--blude-btn-color);
	outline: none;
}

.contact-form p {
	margin: 0;
}

.form-outer {
	margin-bottom: 30px;
}

.form-outer textarea {
	resize: none;
}

/* Arrow icon inside button */
.submit-arrow-icon {
	display: inline-block;
	width: 18px;
	height: 13px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 12px;
	transition: transform 0.3s ease;
	position: absolute;
	top: 37%;
	right: 19px;

}

.contact-form-col {
	padding-left: 40px;
}

.contact-submit-btn:hover .submit-arrow-icon {
	transform: translateX(6px);
}

.response-time-note {
	color: var(--primary-color);
	margin-top: 15px;
}


.super-india-addresses .address-box {
	padding: 25px 27px;
	border-radius: var(--base-border-radius);
	margin-bottom: 30px;
	box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
	background-color: #ffffff;
	border: 1px solid #e6e6e6;
	color: #212529;
	cursor: pointer;
}

.address-box p {
	padding-left: 29px;
}

.super-india-addresses .address-box.active {
	background-color: var(--primary-color);
	/* deep purple */
	color: white;
}

.super-india-addresses .address-box.active .icon {
	color: white;
	background-image: url(../images/map-pin-white.svg);
	background-repeat: no-repeat;
	width: 19px;
	height: 24px;
	display: block;
}

.super-india-addresses .address-box .icon {
	color: white;
	background-image: url(../images/map-pin-black.svg);
	background-repeat: no-repeat;
	width: 19px;
	height: 24px;
	display: block;
}

.map-container .map-innera-area {
	display: none;
}

.map-container .map-innera-area.active {
	display: block;
}

.map-container .map-innera-area iframe {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: var(--base-border-radius);
}

.super-india-addresses .address-title {
	font-weight: 600;
	font-size: var(--base-font-size);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Location pin icon style */

/* Heading style */
.super-india-addresses h2 {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.address-parts {
	padding-left: 40px;
}

.faq-sec-inner {
	justify-content: space-between;
}

.faq-item {
	border: 1px solid #DFE8F5;
	border-radius: var(--base-border-radius);
	padding: 16px;
	margin-bottom: 16px;
	background-color: #fff;
	transition: all 0.3s ease;
}

.faq-item.active {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	background-color: #fff;
	border-color: #fff;
}

.faq-question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 600;
}

.faq-answer {
	display: none;
	margin-top: 12px;
}

.faq-number {
	margin-right: 10px;
	color: var(--primary-color);
	margin-top: 5px;
}

.faq-text {
	flex: 1;
	color: var(--primary-color);
}

.faq-toggle {
	font-size: 24px;
	color: var(--secondary-color);
	margin-left: 12px;
	transition: transform 0.2s ease;
}

.enquey-form .contact-form {
	box-shadow: none;
	padding: 0;
}

.fancybox__content {
	border-radius: var(--base-border-radius) !important;
}

.image-holder {
	display: none;
}

.image-holder.active-img {
	display: block;
}


/*About*/

.custom-image-col {
	width: 58%;
	flex: 0 0 auto;
}

.custom-image-col2 {
	width: 42%;
	flex: 0 0 auto;
}

.custom-image-col3 {
	width: 46%;
	flex: 0 0 auto;
}

.custom-image-col4 {
	width: 51%;
	flex: 0 0 auto;
}

.custom-image,
.custom-image-col img {
	border-radius: var(--base-border-radius);
	width: 100%;
}

.bg-light-v {
	background-color: var(--light-color);
	background-image: url(../images/vission-bg-pic.webp);
	background-repeat: no-repeat;
	background-position: right 30px top 30px;
	border-radius: 20px 0 0 20px;
	padding: 50px !important;

}

.bg-light-m {
	background-color: var(--primary-color);
	background-image: url(../images/mission-bg-pic.webp);
	background-repeat: no-repeat;
	background-position: right 30px top 30px;
	border-radius: 0px 20px 20px 0;
	padding: 50px !important;
}

.bg-light-m ul {
	padding-left: 19px;
}

.bg-light-m ul li {
	list-style: disc;
	margin-bottom: 5px;
}

.teams-part {
	padding-bottom: 140px;
}

.teans-list-slider-outer .custom-image-teams {
	border-radius: var(--base-border-radius);
	overflow: hidden;
}

#expertise-slider .team-item {
	padding: 0 10px;
}

.teans-list-slider-outer figure {
	border-radius: var(--base-border-radius);
	margin-bottom: 30px;
	height: 424px;
	overflow: hidden;
}

.teans-list-slider-outer figure img {
	transform: scale(1);
	transition: 0.3s;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.teans-list-slider-outer figure:hover img {
	transform: scale(1.1);
	transition: 0.3s;
}

.teams-part-heading {
	margin-bottom: 30px;
}

.safety-commitment-section {
	background-color: var(--card-bg-color);
}

#expertise-slider .slick-prev:hover,
#expertise-slider .slick-prev:focus,
#expertise-slider .slick-next:hover,
#expertise-slider .slick-next:focus {
	border: 1px solid var(--white-color);
}

.about-innovation-section .text-container p:last-child,
.safety-commitment-section p:last-child,
.qualty-assuarance-sec .col-md-12.col-lg-6 p {
	margin-bottom: 0;
}

.cylinders-sec ul li:last-child {
	margin-bottom: 0;
}

.quality-content {
	padding-left: 30px;
}

.sub-headiins {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
}

.commitment-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.safety-image {
	border-radius: var(--base-border-radius);
}

.commitment-list {
	margin-bottom: 30px;
}

.commitment-list li::before {
	width: 10px;
	height: 10px;
	display: block;
	content: "";
	border-radius: 50%;
	background-color: var(--primary-color);
	left: 0;
	top: 7px;
	position: absolute;
}

.mid-container {
	max-width: 1090px;
}

.outer-years-box-repeat {
	gap: 100px;
	margin-bottom: 30px;
}

.outer-years-box-repeat:last-child::after {
	display: none;
}

.year-milestone {
	color: var(--light-color);
}

.outer-years-box-repeat::before,
.outer-years-box-repeat::after {
	content: "";
	width: 1px;
	background-color: var(--light-color);
	left: 186px;
	position: absolute;
	z-index: 3;
	display: block;
}

.outer-years-box-repeat::after {
	height: calc(100% - 30px);
	top: 49px;
}

.outer-years-box-repeat::before {
	height: 58px;
	top: -20px;
}

.years-content {
	padding-top: 23px;
}

.years-content::after,
.years-content::before {
	content: "";
	position: absolute;
	z-index: 2;
	display: block;
	border-radius: 50%;

}

.years-content::before {
	width: 42px;
	height: 42px;
	background-color: #D8D6E5;
	left: -72px;
	top: 23px;
}

.years-content::after {
	width: 12px;
	height: 12px;
	background-color: var(--primary-color);
	left: -57px;
	top: 38px;
}

.quality-items-middle {
	background-color: var(--primary-color);
	margin: 110px 0;
	position: relative;
}

.quality-items:nth-child(even) .quality-items-middle {
	background-color: #DFE8F5;
}

.quality-items:nth-child(even) .quality-items-middle .qulity-item-inner {
	color: var(--primary-color);
}

.quality-items:nth-child(even) .quality-items-middle:after {
	content: "";
}

.icons-qulity-chk {
	min-width: 61px;
	height: 61px;
	border-radius: 50%;
	background-color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.qulity-item-inner {
	padding: 56px 16px 56px 58px;
	display: flex;
	align-items: center;
	color: #fff;
	gap: 10px;
	position: relative;
}

.quality-items-top,
.quality-items-bottom {
	height: 92px;
	color: var(--black-color);
}


.first-visible.quality-items .quality-items-middle::after {
	content: "";
	border-bottom: 92px solid transparent;
	border-top: 86px solid transparent;
	border-left: 30px solid #fff;
	position: absolute;
	left: 0;
	top: 0;
}

.last-visible.quality-items .quality-items-middle::after {
	content: "";
	border-right: 0px solid transparent;
	border-top: 100px solid #fff;
	border-left: 40px solid transparent;
	position: absolute;
	right: 0;
	top: 0;
}

.last-visible.quality-items .quality-items-middle::before {
	content: "";
	border-right: 0px solid transparent;
	border-bottom: 100px solid #fff;
	border-left: 40px solid transparent;
	position: absolute;
	right: 0px;
	bottom: 0;
	z-index: 2;
}

.last-visible.quality-items .arrow-step {
	display: none;
}


.left-top-trangle {
	border-top: 53px solid #000;
	border-right: 31px solid transparent;
	border-left: 23px solid transparent;
	position: absolute;
	left: -5px;
	top: 0;
	display: none;
}

.left-bottom-trangle {
	border-bottom: 53px solid #000;
	border-right: 31px solid transparent;
	border-left: 23px solid transparent;
	position: absolute;
	left: -5px;
	bottom: 0;
	display: none;
}

.arrow-step {
	position: absolute;
	top: 0;
	right: -38px;
	width: 55px;
	height: 100%;
	overflow: hidden;
	z-index: 2;
	display: block;
}

.front-trangle {
	border-top: 140px solid transparent;
	border-left: 55px solid #fff;
	border-bottom: 140px solid transparent;
	position: absolute;
	right: 0;
	top: -58px;
	z-index: 2;
}

.front-trangle2 {
	border-top: 140px solid transparent;
	border-left: 55px solid var(--primary-color);
	border-bottom: 140px solid transparent;
	position: absolute;
	right: 7px;
	top: -58px;
	z-index: 3;
}

.quality-items:nth-child(even) .arrow-step .front-trangle2 {
	border-left: 55px solid #DFE8F5;
}

.qulity-item-inner {
	position: relative;
}

.q-item-heading {
	font-size: 20px;
	font-weight: 500;
}

.year-list-main .q-item-heading {
	font-size: 30px;
	font-weight: 500;
}


.qulity-item-inner::after {
	content: "";
	width: 1px;
	height: 74px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	left: 50%;
}

.qulity-item-inner::before {
	content: "";
	width: 9px;
	height: 9px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	left: 50%;
	margin-left: -4px;
	border-radius: 50%;
}

.quality-items.odd .qulity-item-inner::after {
	bottom: 100%;
}

.quality-items.odd .qulity-item-inner::before {
	bottom: calc(100% + 74px);
}

.quality-items.even .qulity-item-inner::after {
	bottom: auto;
	top: 100%;
}

.quality-items.even .qulity-item-inner::before {
	top: calc(100% + 74px);
	bottom: auto;
}


.year-list-main .quality-items-middle {
	margin: 70px 0;
}

.year-list-main .qulity-item-inner::after {
	height: 50px;
}

.year-list-main .qulity-item-inner {
	padding: 27px 16px 27px 58px;
}

.year-list-main .front-trangle2 {
	top: -82px;
}

.year-list-main .front-trangle {
	top: -82px;
}

.year-list-main .quality-items.even .qulity-item-inner::after {
	bottom: 100%;
	top: auto;
}

.year-list-main .quality-items.even .qulity-item-inner::before {
	bottom: calc(100% + 50px);
	top: auto;
}

.year-list-main .quality-items.odd .qulity-item-inner::after {
	bottom: auto;
	top: 100%;
}

.year-list-main .quality-items.odd .qulity-item-inner::before {
	top: calc(100% + 50px);
	bottom: auto;
}

.year-list-main .first-visible.quality-items .quality-items-middle::after {
	border-top: 59px solid transparent;
	border-bottom: 60px solid transparent;
	border-left: 23px solid #fff;
}

.product-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-thumbs {
	position: relative;
	overflow: hidden;
	border-radius: var(--base-border-radius);
	box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	height: 100%;
}

.product-thumbs figure {
	margin: 0;
	height: 100%;
}

.icons-qulity-chk img {
	width: 24px;
}

.hdng-hover-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 25px;
	height: 60%;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	transition: 0.3s;
}

.product-thumbs:hover .hdng-hover-content,
.product-thumbs.active .hdng-hover-content {
	transition: 0.3s;
	height: 100%;
}

.product-thumbs figure img {
	transform: scale(1);
	transition: 0.3s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-thumbs:hover figure img,
.product-thumbs.active figure img {
	transform: scale(1.1);
	transition: 0.3s;
}

.hdng-hover-content h4 {
	margin-bottom: 0;
	color: var(--white-color);
	font-weight: 500;
}

.functionality-highlights-part {
	background: var(--card-bg-color);
	padding-bottom: 120px;
}

.functionality-highlight-inner .cardfun {
	height: 100%;
	padding: 5px 10px;
}

.functionality-highlight-inner .cardfun-body {
	text-align: center;
	padding: 42px 50px;
	background: var(--white-color);
	border-radius: var(--base-border-radius);
	height: 100%;
}

.functionality-highlight-inner .cardfun-body figure img {
	margin: 0 auto;
	display: block;
}


.slick-prev,
.slick-next {
	width: 50px;
	height: 50px;
	top: auto;
	bottom: -75px;
	background-position: center;
	border-radius: 50%;
	border: 1px solid var(--black-color);
	background-repeat: no-repeat;
	transform: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	opacity: 1;
	background-color: var(--blude-btn-color);
	border-color: var(--blude-btn-color);
}

.slick-prev:before,
.slick-next:before {
	font-size: 0;
}

.slick-prev {
	background-image: url(../images/slider-arrow-prev-black.svg);
	left: 50%;
	margin-left: -60px;
}

.slick-next {
	background-image: url(../images/slider-arrow-next-black.svg);
	right: 50%;
	margin-right: -60px;
}

.slick-prev:hover,
.slick-prev:focus {
	background-image: url(../images/slider-arrow-prev-white.svg);
	background-repeat: no-repeat;
	background-position: center;

}

.slick-next:hover,
.slick-next:focus {
	background-image: url(../images/slider-arrow-next-white.svg);
	background-repeat: no-repeat;
	background-position: center;
}


.events-tab-container {
	position: relative;
}

.events-tab-container .tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.events-tab-container .events-tabs {
	position: absolute;
	right: 0;
	top: 0;
}

.events-tab-container .events-tabs .tab {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	padding: 14px 43px;
	border-radius: calc(var(--base-border-radius) * 1.5);
	font-size: var(--base-font-size);
	font-weight: 500;
	margin-bottom: 15px;
	cursor: pointer;
}

.events-tab-container .events-tabs .tab:hover,
.events-tab-container .events-tabs .tab.active {
	color: var(--white-color);
	border: 1px solid var(--primary-color);
	padding: 14px 43px;
	border-radius: calc(var(--base-border-radius) * 1.5);
	background-color: var(--primary-color);
}

.events-tab-container .post-evnt-block {
	padding: 0;
	border-radius: var(--base-border-radius);
	background: var(--white-color);
	transition: 0.3s;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}


.post-evnt-block:hover {
	box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.2);
	background-color: var(--primary-color);
	color: var(--white-color);
}

.post-evnt-block:hover h4 {
	color: var(--white-color);
}

.event-big-p {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	height: 516px;
	width: 100%;
}

.event-big-p img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.date-evnts img {
	width: 15px;
}

.event-big-p .evnt-details-thumb {
	position: absolute;
	bottom: 30px;
	left: 37px;
	right: 37px;
	color: var(--white-color);
	padding: 0;
}

.event-big-p .date-evnts {
	margin-bottom: 10px;
}

.event-big-p .date-evnts img {
	filter: brightness(0) invert(1);
}

.event-big-p .evnt-details-thumb h4,
.event-big-p .date-evnts span {
	color: var(--white-color);
}

.event-big-p .evnt-details-thumb h4 {
	margin-bottom: 10px;
}

.event-big-p .evnt-details-thumb p {
	color: #939496;
}

.evnt-pic-thumb {
	border-radius: 20px 0 0 20px;
	min-width: 223px;
	max-width: 223px;
}

.evnt-details-thumb {
	padding: 15px;
	border-radius: 0 20px 20px 0;
}

.date-evnts {
	margin-bottom: 5px;
}

.date-evnts span {
	margin-left: 4px;
	color: var(--light-color);
}

.events-tab-container .tab-content {
	display: none;
}

.events-tab-container .tab-content.active {
	display: block;
}

.evnt-details-thumb h4 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* Limit to 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.evnt-details-thumb p {
	margin-top: 10px;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* Limit to 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


.events-tab-container .event p {
	margin: 0;
}

.event-item .event-contents h3 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* Limit to 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gallery-event-part {
	background-color: var(--card-bg-color);
}

.product-range-sc .slick-prev,
.gallery-event-inner .slick-prev {
	left: 0;
	margin-left: -60px;
	top: 50%;
	margin-top: -25px;
}

.product-range-sc .slick-next,
.gallery-event-inner .slick-next {
	right: 0;
	margin-right: -60px;
	top: 50%;
	margin-top: -25px;
}

.video-play {
	background-image: url(../images/gallery-video-icon.png);
	background-repeat: no-repeat;
	width: 110px;
	height: 110px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-size: cover;
	z-index: 10;
}

.gallery-event-inner .slide-items {
	position: relative;
	border-radius: var(--base-border-radius);
	overflow: hidden;
}

.gallery-event-inner .slide-items img {
	border-radius: var(--base-border-radius);
	transition: all 1.1s ease 0s;
}

.gallery-event-inner .slide-items:hover img {
	transform: scale(1.1);
}

#certification-carousel .slick-track {
	display: flex !important;
}

#certification-carousel .item {
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}


.blog-box-sec {
	width: 67%;
	padding-right: 15px;
}

.blog-sidebar-sec {
	width: 33%;
	padding-left: 15px;
}

.blog-search.contact-form-box {
	position: relative;
}

.blog-search.contact-form-box input[type="search"] {
	background: none;
	padding: 15px 55px 15px 15px;
	border: solid 1px var(--text-color);
	height: 54px;
	border-radius: calc(var(--base-border-radius) * 4);
	width: 100%;
	outline: 0;
}

.blog-search.contact-form-box .search-form input[type="submit"] {
	margin: 0;
	padding: 0;
	width: 52px !important;
	height: 52px !important;
	border: 0 !important;
	position: absolute;
	right: 1px !important;
	background-image: url(../images/search-icon.svg) !important;
	color: #fff !important;
	cursor: pointer !important;
	font-size: 0 !important;
	top: 1px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent !important;
}

.blog-search.contact-form-box .search-form input[type="submit"]:hover {
	background-color: var(--card-bg-light) !important;
}

.blog-post-box a {
	display: flex;
	margin: 0 0 20px;
	box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.1);
	border-radius: var(--base-border-radius);
}

.contact-form-box label {
	display: none;
}

.blog-box-img {
	height: 256px;
	overflow: hidden;
}

.blog-box-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.blog-box-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	max-width: 100% !important;
	object-position: top;
}

.company-news,
.industry-news,
.sustainability {
	font-size: 12px;
}

.industry-news,
.sidebar-categories .industry-news {
	background-color: #2563EB;
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--base-border-radius);
}

.company-news,
.sidebar-categories .company-news {
	background-color: #7C3AED;
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--base-border-radius);
}

.blog-industry-btn {
	display: inline-block;
}

.sustainability,
.sidebar-categories .sustainability {
	background-color: #059669;
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--base-border-radius);
}

.sidebar-categories li {
	display: inline-block;
	margin: 0 20px 20px 0;
	width: 40%;
}

.sidebar-categories li a {
	font-size: 16px;
	display: block;
	text-align: center;
}

.post-thumb-details h5 {
	font-weight: 500;
	margin: 0 0 5px;
}

.blog-sml-img {
	max-width: 130px;
	border-radius: 20px 0 0 20px;
	height: 160px;
	overflow: hidden;
	margin: 0;
}

.blog-sml-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.post-thumb-details {
	padding: 15px;
}

.post-thumb-details p {
	margin: 0;
}

.sidebar-categories li a.company-news {
	width: 100%;
}

.sidebar-categories li a.industry-news {
	width: 100%;
}

.sidebar-categories li a.sustainability {
	width: 100%;
}

.blog-category-sec {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.blog-details-content>img {
	width: 100% !important;
	height: auto !important;
	margin-bottom: 40px;
	border-radius: var(--base-border-radius);
	max-width: 100% !important;
}

.division-row {
	row-gap: 30px;
}

.search-results-l {
	border-bottom: 1px solid var(--card-bg-color);
	padding: 30px 0 20px;
}

.search-results-l:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.blog-result-text h3 a {
	color: var(--primary-color);
}

.evnt-pic-thumb {
	height: 160px;
	overflow: hidden;
}

.evnt-pic-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

/* Join Our Team */
.join-section {
	background-color: var(--card-bg-color)
}

.join-section .contact-form {
	margin-right: 35px;
}

.event-list {
	row-gap: 30px;
}

.event-item .event-contents {
	padding: 20px;
	border-radius: 0 0 15px 15px;
	background-color: var(--blude-btn-color);
	color: var(--white-color);
}

.banner-big-pic img,
.banner-thumb-pic img {
	border-radius: 20px;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	max-width: 100% !important;
	object-position: center;
}

.banner-thumb-pic img {
	border-radius: 15px 15px 0 0;
}

.event-item h3 {
	color: var(--white-color);
	margin-bottom: 5px;
}

.event-item h3 a {
	color: var(--white-color);
}

.event-item .date-part p {
	margin-bottom: 10px;
}

.banner-thumb-pic .card-img-pro {
	border-radius: 15px;
}

.banner-big-pic {
	border-radius: 20px;
}

.banner-big-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.banner-thumb-pic {
	margin-bottom: 0;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.event-date-overlay {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 12px;
	font-size: 16px;
	border-radius: 10px;
}

.video-thumb {
	position: relative;
}

.banner {
	position: relative;
}

.banner-home .slick-slide {
	height: auto;
}

.banner-home .slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-home .slick-dots {
	bottom: 40px;
}

.banner-home .slick-dots li button:before {
	color: var(--white-color);
}

.gallery-item a {
	border-radius: 20px;
	box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.2);
	display: block;
	overflow: hidden;
}

.gallery-item img {
	transition: all 1.1s ease 0s;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.video-container {
	position: relative;
}

.video-title {
	position: absolute;
	bottom: 15px;
	background: rgba(56, 53, 127, 0.9);
	left: 15px;
	right: 15px;
	border-radius: 20px;
	padding: 15px;
	text-align: center;
	color: #fff;
	margin-bottom: 0;
	pointer-events: none;
}

.tab-certificat-outer .tabs {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
}

.tab-certificat-outer .tabs li {
	cursor: pointer;
	margin-right: 10px;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	padding: 14px 25px;
	border-radius: calc(var(--base-border-radius) * 1.5);
	background-color: var(--white-color);
}

.tab-certificat-outer .tabs li.active {
	color: var(--white-color);
	border: 1px solid var(--primary-color);
	border-radius: calc(var(--base-border-radius) * 1.5);
	background-color: var(--primary-color);

}

.certificate-item figure img {
	width: 100%;
	border: 1px solid #ddd;
}

.certificate-item {
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.certificate-item figure {
	max-width: 230px;
	margin: 0 auto 20px;
}

/* Tab content */
.tab-certificat-outer .tab_content {
	display: none;
	padding: 50px 0 0px;
	border-top: none;
}

/* For mobile: Style tab headings */
.tabs-dropdown {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 12px 48px 12px 20px;
	border: 1px solid #ccc;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	background-image: url(../images/arrow-down-white.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 20px;
	background-size: 15px 12px;
	outline: none;
	cursor: pointer;
	max-width: 575px;
}

/* Site Map */
.sitemap-menu ul.menu,
.sitemap-menu ul.sub-menu {
	list-style: none;
	padding-left: 0;
	margin: 0 0 20px;
}

.sitemap-menu ul.menu>li {
	margin-bottom: 16px;
	color: var(--primary-color);
}

.sitemap-menu a {
	color: var(--primary-color);
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	position: relative;
	padding-left: 20px;
}

.sitemap-menu a::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--primary-color);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: var(--primary-transition);
}

.sitemap-menu a:hover::before {
	transform: translateY(-50%);
	left: -5px;
}

.sitemap-menu a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

.sitemap-menu ul.sub-menu {
	padding-left: 20px;
	border-left: 2px dashed #ddd;
	margin-top: 10px;
}

.sitemap-menu ul.sub-menu li {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
}

.default-content-sec ul li,
.default-content-sec ol li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	position: relative;
	padding-left: 25px;
}

.default-content-sec ul,
.default-content-sec ol {
	margin-bottom: 20px;
}

.default-content-sec ul li::before {
	content: "";
	background-color: var(--primary-color);
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.default-content-sec ol {
	counter-reset: custom-counter;
}

.default-content-sec ol li {
	counter-increment: custom-counter;
}

.default-content-sec ol li::before {
	content: counter(custom-counter) ". ";
	color: var(--primary-color);
	font-weight: bold;
	display: inline-block;
	width: 1.5em;
	margin-left: -1.5em;
}

#gallery-slider .slick-slide {
	margin: 0 15px;
	height: 300px;
}

#certificate-carousel .slick-slide {
	margin: 0 15px;
}

#gallery-slider .slick-list,
#certificate-carousel .slick-list {
	margin: 0 -15px;
}

#certificate-carousel .certificate-item {
	margin: 8px 8px 25px;
}

/* faq-sec */

.faq-area {
	display: flex;
	gap: 30px;
	position: relative;
}

.faq-area .faq-sidebar {
	width: 365px;
	flex-shrink: 0;
}

.faq-area .faq-content {
	flex: 1;
}

.faq-area .faq-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq-area .faq-nav li::before {
	display: none;
}

.faq-area .faq-nav li {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	border-bottom: 1px solid #EAEAEA;
	border-right: 4px solid transparent;
	border-radius: 0;
	font-size: 20px;
	font-weight: 500;
	margin: 0;
	cursor: pointer;
}

.faq-area .faq-nav li:last-child {
	border-bottom: 0;
}

.faq-area .faq-nav li:hover,
.faq-area .faq-nav li.active {
	background: var(--primary-color);
	color: var(--white-color);
	border-right: 4px solid var(--secondary-color);
	border-radius: 20px 0 0 20px;
}


.faq-item {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 16px;
	background-color: #fff;
	transition: all 0.3s ease;
}

.faq-item.active {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	background-color: #fff;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
}

.faq-number {
	margin-right: 10px;
	color: var(--primary-color);
}

.faq-text {
	flex: 1;
	color: var(--primary-color);
}

.faq-toggle {
	font-size: 24px;
	color: var(--secondary-color);
	margin-left: 12px;
	transition: transform 0.2s ease;
}

.faq-answer {
	display: none;
	margin-top: 12px;
}

.faq-answer ul {
	list-style: none;
	padding-left: 0;
	margin: 0 0 20px;
}

.faq-answer ul li {
	margin-bottom: 16px;
	color: var(--primary-color);
	position: relative;
	padding-left: 20px;
}

.faq-answer ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--primary-color);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: var(--primary-transition);
}

.faq-answer a {
	color: var(--primary-color);
	text-decoration: none;
}

.sitemap-menu a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

/* Desktop view */
.faq-nav-mobile {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 12px 48px 12px 20px;
	border: 1px solid #ccc;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	background-image: url(../images/arrow-down-white.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 20px;
	background-size: 15px 12px;
	outline: none;
	cursor: pointer;
}

.faq-nav-mobile {
	display: none;
}

.safety-commitment-section .safety-image {
	width: 100%;
}

.heading-yrtext {
	font-size: 20px;
	padding-bottom: 5px;
	font-weight: bold;
	color: var(--primary-color);
}

.year-list-main .quality-items-top,
.year-list-main .quality-items-bottom {
	height: 170px;
}

.gallery-section .row {
	row-gap: 30px;
	justify-content: center;
}

#certificate-carousel {
	margin-bottom: 60px;
}

.contact-form-modal .form-parts {
	max-width: 100%;
	width: 680px;
}

/* LPG Composite Cylinder */
.functionality-highlights-part .slick-track {
	display: flex !important;
}

.functionality-highlights-part .slick-slide {
	height: inherit !important;
}

.composite-hero {
	background-size: cover;
	height: 450px;
	background-position: right top;
}

.product-top-section strong {
	color: var(--primary-color);
}

.product-top-section .product-top-content {
	padding-left: 25px;
}

.proe-sec ul,
.cylinders-sec ul,
.product-top-section .product-top-content ul {
	padding: 0;
	margin: 0 0 25px 0;
	list-style-type: none;
}

.proe-sec ul li,
.cylinders-sec ul li,
.product-top-section .product-top-content ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.proe-sec ul li::before,
.cylinders-sec ul li::before,
.product-top-section .product-top-content ul li::before {
	width: 10px;
	height: 10px;
	display: block;
	content: "";
	border-radius: 50%;
	background-color: var(--primary-color);
	left: 0;
	top: 7px;
	position: absolute;
}

.product-top-section img.superlite-image {
	position: absolute;
	right: 0;
}

.functionality-highlight-inner.tech-highlight-inner .card-body {
	height: auto;
}

.functionality-highlight-inner.tech-highlight-inner h4 {
	color: var(--secondary-color);
}

.functionality-highlight-inner.tech-highlight-inner img {
	max-height: inherit;
}

.technical-sec {
	background: var(--card-bg-color);
}

.proe-sec p {
	margin-bottom: 20px;
}

.cylinders-main img {
	margin: 0 auto;
	display: block;
}

.major-sec .slick-slide {
	margin: 0 10px;
}

.major-sec .slick-list {
	margin: 0 -10px;
}

.major-sec .slide-inner {
	border-radius: var(--base-border-radius);
	overflow: hidden;
	position: relative;
}

.major-sec .slide-inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	pointer-events: none;
	z-index: 1;
}

.major-sec .slide-inner figure {
	margin: 0;
	height: 422px;
}

.major-sec .slide-inner figure img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: all 1.1s ease 0s;
	transform: scale(1.0);
}

.major-sec .slide-inner:hover figure img {
	transform: scale(1.1);
}

.major-sec .slide-inner .slide-con {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	z-index: 2;
}

.major-sec .slide-inner .slide-con p,
.major-sec .slide-inner .slide-con h4 {
	color: #fff;
}

.cylinder-table-wrapper {
	overflow-x: auto;
}

.cylinder-table {
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
	background-color: var(--white-color);
	border-radius: 12px;
	overflow: hidden;
}

.cylinder-table thead th {
	background-color: #3a2d82;
	color: var(--white-color);
	font-weight: 600;
	padding: 18px;
	border: 1px solid #D9DFE9;
	text-align: center;
}

.cylinder-table thead tr:first-child th:first-child {
	border-top-left-radius: 12px;
}

.cylinder-table thead tr:first-child th:last-child {
	border-top-right-radius: 12px;
}

.cylinder-table td {
	padding: 18px;
	border-width: 0 1px;
	border-style: solid;
	border-color: #d6d9e0;
	background-color: var(--white-color);
}

.cylinder-table td:first-child {
	text-align: left;
}

.cylinder-table tbody tr:nth-child(even) td {
	background-color: #f5f8fe;
}

.cylinder-table tbody tr:hover td {
	background-color: #e0ebff;
	transition: background-color 0.3s ease;
}


.cylinder-content-wrapper {
	text-align: center;
}

.cylinder-content-wrapper ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.cylinder-content-wrapper ul li {
	position: relative;
	padding-left: 25px;
	margin: 0 15px 15px 15px;
}

.cylinder-content-wrapper ul li::before {
	width: 10px;
	height: 10px;
	display: inline-block;
	content: "";
	border-radius: 50%;
	background-color: var(--primary-color);
	margin-right: 15px;
}

.term-renewable-energy-division .product-range-header h2.headings,
.term-composite-cylinder-division .product-range-header h2.headings {
	display: none;
}

.term-renewable-energy-division .product-list-section,
.term-composite-cylinder-division .product-list-section {
	display: none;
}

.proe-sec {
	border-top: 1px solid #d5d1ff;
}

.proe-inner figure {
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin-bottom: 25px;
}

.proe-inner figure img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}

.mobility-app ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.mobility-app ul li {
	position: relative;
	padding-left: 25px;
	margin: 0 15px 15px 15px;
}