/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header / Two / Three
5. Slider One / Two / Three
6. About One / Two / Three
7. Services One / Two / Three / Four
8. Marketing One / Two / Three
9. Choose One
10. Team One / Two
11. Clients One
12. Testimonial One / Two
13. Process One
14. Projects One / Two / Three / Four
15. Blog One / Two / Three
16. Main Footer
17. FullWidth One
18. Counter One
19. CTA One
20. FAQ One
21. Video One
22. Clients One
23. Pricing One
24. Page Title
25. Privacy Policy
26. Terms & Condition
27. Team Detail
28. Service Widgets
29. Service Detail
30. Project Detail
31. Our Products
32. Shop Detail
33. Shoping Cart
34. Checkout
35. Register
36. Coming Soon
37. Blog Sidebar
38. Blog Widgets
39. Blog Detail
40. Not Found
41. Contact Info
42. Contact Form
43. Map

**********************************************/

/* 

	font-family: 'Manrope', sans-serif;

*/

/*** 

====================================================================
	Root Code Variables
====================================================================

 ***/

.theme_color{
	color:var(--main-color);
}

/* Theme Color */

:root {
	/* #ff5c00 in decimal RGB */
	--main-color: #b0ca05;
	--main-color-rgb:176, 202, 5;
	
	/* #151515 in decimal RGB */
	--color-two: rgb(21,21,21);
	--color-two-rgb:21,21,21;
	
	/* #666666 in decimal RGB */
	--color-three: rgb(102,102,102);
	--color-three-rgb:102,102,102;

    /* #ffffff in decimal RGB */
	--white-color:rgb(255,255,255);
	--white-color-rgb:255,255,255;

	/* #000000 in decimal RGB */
	--black-color:rgb(0,0,0);
	--black-color-rgb:0,0,0;
}

/*** 
====================================================================
	Reset
====================================================================
***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 
====================================================================
	Global Settings
====================================================================
***/


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}

body {
	font-family: 'Manrope', sans-serif;
	line-height:1.6em;
	font-weight:400;
	font-size:16px;
	color:#666666;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

.text-left{
	text-align: left;
}

.dark-layout{
	position: relative;
	background-color: var(--black-color);
}

/* Preloader */

/*==========================
	Prelaoder
===========================*/
.preloader {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 99999;
}
.preloader svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--color-two);
  color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
}
.preloader.two svg {
  color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
}
.preloader .preloader-heading .load-text {
  z-index: 20;
  font-size: 60px;
  letter-spacing: 15px;
  text-transform: uppercase;
  color: var(--white-color);
}
@media (max-width: 767.98px) {
  .preloader .preloader-heading .load-text {
    font-size: 24px;
  }
}
.preloader .preloader-heading .load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}
.preloader .preloader-heading .load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.preloader .preloader-heading .load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.preloader .preloader-heading .load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.preloader .preloader-heading .load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.preloader .preloader-heading .load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.preloader .preloader-heading .load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.preloader .preloader-heading .load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.trans-300{
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.trans-500{
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.trans-900{
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

i{
    font-style: normal;
}

.bordered-layout .page-wrapper{
	padding:0px 50px 0px;
}

a{
	text-decoration:none;
	cursor:pointer;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	color:var(--main-color);
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	margin:0px;
	background:none;
	font-weight: 500;
	color:var(--black-color);
    font-family: "Alexandria", sans-serif;
}

input,button,select,textarea{
	
}

textarea{
	overflow:hidden;
}

.sticky-top{
	top: 125px;
	z-index:1;
}

.text,
p{
	position:relative;
	line-height:30px;
	color:#666666;
	font-size:16px;
	text-align: justify;
	margin-bottom: 0;
}

.contact-info_block p a{
	position:relative;
	line-height:30px;
	color:#666666;
	font-size:16px;
	text-align: justify;
	margin-bottom: 0;
}

/* Typography */

h1{
	line-height:50px;
	font-size:44px;
}

h2{
	line-height:38px;
	font-size:34px;
}

h3{
	line-height:30px;
	font-size:28px;
}

h4{
	line-height:30px;
	font-size:24px;
}

h5{
	line-height:30px;
	font-size:20px;
}

h6{
	line-height:28px;
	font-size:18px;
}

.auto-container{
	position:static;
	max-width:1320px;
	padding:0px 15px;
	margin:0 auto;
}

.auto-container_two{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

.theme-btn{
	cursor:pointer;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.centered{
	text-align:center;	
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.20);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px); }
  .progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    font-weight: 700;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-size: 13px; }
  .progress-wrap svg path {
    fill: none; }
  .progress-wrap svg.progress-circle path {
    stroke: var(--main-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .progress-wrap.style2::after {
    color: var(--thm-color-2); }
  .progress-wrap.style2 svg.progress-circle path {
    stroke: var(--thm-color-2); }
  .progress-wrap.style3::after {
    color: var(--thm-color-3); }
  .progress-wrap.style3 svg.progress-circle path {
    stroke: var(--thm-color-3);
}

/* List Style One */

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	color:var(--white-color);
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-bottom:10px;
	padding-left:30px;
}

.list-style-one li a{
	position:relative;
	color:var(--white-color);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-style-one li a:hover{
	color:var(--main-color);
}

.list-style-one li .icon{
	position:absolute;
	left:0px;
	top:5px;
	color:var(--main-color);
	font-size:18px;
	line-height:1em;
	font-weight:300;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

/* Btn Style One */

.btn-style-one{ 
	position: relative;
	font-weight:500;
    font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	padding:6px 6px 6px 30px;
    color: var(--white-color);
	text-transform: capitalize;
	background-color: var(--main-color);
}

.btn-style-one:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: var(--color-two);
}

.btn-style-one:hover:before{
	top: 0%;
}

.btn-style-one i{
	position: relative;
	width:48px;
	height:48px;
	line-height:48px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	color: var(--white-color);
	transform: rotate(-45deg);
	background-color:var(--black-color);
}

.btn-style-one .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-one .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one:hover i{
	color: var(--color-two);
	background-color: var(--white-color);
}

.btn-style-one .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-one:hover{
	
}

.btn-style-one:hover:before{
	top: -40%;
}

/* Btn Style Two */

.btn-style-two{ 
	position: relative;
	font-weight:500;
    font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	padding:6px 6px 6px 30px;
    color: var(--white-color);
	text-transform: capitalize;
	background-color: var(--main-color);
}

.btn-style-two:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: var(--white-color);
}

.btn-style-two:hover:before{
	top: 0%;
}

.btn-style-two i{
	position: relative;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	color: var(--white-color);
	transform: rotate(-45deg);
	background-color:var(--black-color);
}

.btn-style-two .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-two .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color:var(--black-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two{
	color:var(--black-color);
}

.btn-style-two:hover{
	
}

.btn-style-two:hover:before{
	top: -40%;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	font-weight:500;
    font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	padding:6px 6px 6px 30px;
    color: var(--main-color);
	text-transform: capitalize;
	background-color: var(--white-color);
}

.btn-style-three:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: var(--color-two);
}

.btn-style-three:hover:before{
	top: 0%;
}

.btn-style-three i{
	position: relative;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	color: var(--white-color);
	transform: rotate(-45deg);
	background-color:var(--black-color);
}

.btn-style-three .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--color-two);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color:var(--black-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-three:hover i{
	color: var(--black-color);
	background-color:var(--white-color);
}

.btn-style-three:hover:before{
	top: -40%;
}

.overlay-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

/* Overlay Anim */

.overlay-anim {
  position: relative;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
    z-index: 2;
	margin-bottom:35px;
}

.sec-title_title{
	position: relative;
	font-weight: 500;
    font-size:18px;
	display: flex;
	gap:15px;
	letter-spacing:1px;
	align-items:center;
	color:var(--main-color);
}
.sec-title_heading.sec_main_title{
	font-size: 50px;
	line-height: 60px;
}
.sec-title_heading{
	margin-top: 12px; 
    color: var(--black-color);
    text-transform: capitalize; 
}

.sec-title_text{
	line-height:30px; 
	font-size:16px;
	margin-top:20px;
    color:#666666;
}

.sec-title.light .sec-title_title span{
	background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sec-title.light .sec-title_big-title{
	-webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.30);
}

.sec-title.light .sec-title_text{
	opacity: 1;
	color: var(--white-color);
}

.sec-title.light .sec-title_heading{
	color:var(--white-color);
}

.sec-title.centered{
	text-align: center !important;
}

.sec-title.centered .sec-title_title{
	justify-content:center;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button{
	top:-2px;
	width:100%;
	border:0px;
	padding: 15px 25px;
	font-weight:500;
	line-height:28px;
	font-size:16px;
	color:var(--color-four);
	background-color: var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.08);
}

.form-group .ui-button .ui-icon{
	background:none;
	position:relative;
	top:3px;
	text-indent:0px;
	color:#a5a5a5;	
}

.form-group .ui-button .ui-icon:before{
	font-family: 'FontAwesome';
	content: "\f107";
	position:absolute;
	right:0px;
	top:2px !important;
	top:10px;
	height:22px;
	display:block;
	line-height:20px;
	font-size:14px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	color:var(--color-three);
}

.ui-menu .ui-menu-item{
	font-size:14px;
}

.ui-menu .ui-menu-item:last-child{
	border:none;	
}

.ui-state-active, .ui-widget-content .ui-state-active{
	background-color:var(--main-color) !important;
	border-color:var(--main-color) !important;
}

.ui-menu .ui-menu-item-wrapper{
	position:relative;
	display:block;
	padding:8px 20px;
	line-height:24px;
	font-size:14px;
}

.ui-menu-item:hover{
	background-color:var(--color-two);
}

/* Cursor */

.cursor {
    position: fixed;
    background-color: var(--main-color);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: scale(1);
	transform: scale(1);
}
  
.cursor.active {
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
}
  
.cursor.menu-active {
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
}
  
.cursor.hovered {
	opacity: 1;
}
  
.cursor-follower {
	position: fixed;
	border: 0.5px solid var(--main-color);
	width: 30px;
	height: 30px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: translate(2px, 2px);
	transform: translate(2px, 2px);
}

.cursor-follower.active {
	opacity: 1;
	-webkit-transform: scale(2);
	transform: scale(2);
}

.cursor-follower.menu-active {
	opacity: 1;
	-webkit-transform: scale(2);
	transform: scale(2);
}

.cursor-follower.hovered {
	opacity: 1;
}
  
/* Cursor End */

.xs-sidebar-group .close-button{
	font-family: "Flaticon";
}

.newsletter-popup-area-section{
	display: none;
}

.ui-datepicker td span, .ui-datepicker td a{
	text-align: center !important;
}

/* Shop Sidebar */

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
    cursor: url(../images/cross-out.png), pointer;
}

.xs-sidebar-group .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
	cursor:pointer;
	font-size:var(--font-18);
}

.xs-sidebar-group .close-button .mdi{
	color:var(--color-four);
	font-size:var(--font-14);
	font-family: "Material Design Icons";
}

.xs-sidebar-group .close-button .mdi:hover{
	color:var(--black-color);
}

.xs-sidebar-widget:nth-child(2){
	right:-380px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 370px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    -webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    -o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0px;
    -webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
    transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}
.sidebar-textwidget {
    padding: 0px;
}
.close-side-widget {
    font-size: rem(15px);
    display: block;
}
.sidebar-widget-container {
    position: relative;
    top: 0px;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}
.xs-bg-black {
    background-color: #000000;
}
.xs-menu-tools > li {
    display: inline-block;
    margin-right: 15px;
}
.xs-menu-tools > li:last-child {
    margin-right: 0;
}
.xs-menu-tools > li > a {
    color: #000000;
    text-decoration: none;
}
.nav-alignment-dynamic,
.nav-alignment-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination{
	position:relative;
	margin-top: 20px;
}

.styled-pagination li{
	position:relative;
	display:inline-block;
	margin:0px 5px 10px 0px;
}

.styled-pagination li a{
	position:relative;
	display:inline-block;
	line-height:58px;
	height:60px;
	width:60px;
	font-size:20px;
	min-width:50px;
	font-weight:600;
	text-align:center;
	border-radius: 5px;
	text-transform:capitalize;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	color:var(--white-color);
	background-color:var(--color-two);
}

.styled-pagination li.prev a,
.styled-pagination li.next a{
	height:60px;
	width:100px;
	color:var(--white-color);
	background-image:none;
	background-color:var(--main-color);
}

.styled-pagination li a:hover,
.styled-pagination li a.active{
	color:var(--white-color);
	background-color:var(--main-color);
}

/* Skills Section */

.default-skills{
	position:relative;
}

.default-skill-item{
	position:relative;
	margin-bottom:25px;
}

.default-skill-item:last-child{
	margin-bottom:0px;
}

.default-skill-title{
	position:relative;
	font-weight:700;
	font-size:18px;
	margin-bottom:10px;
	color:var(--black-color);
	text-transform:capitalize;
	font-family: "Lexend Deca", sans-serif;
}

.default-skill-bar{
	position:relative;
	width:100%;
	height:12px;
	border-radius:50px;
}

.default-skill-bar:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	right:0px;
	height:12px;
	border-radius:50px;
	background-color:#dddddd;
}

.default-bar-inner{
	position:relative;
	width:100%;
	height:12px;
	overflow:hidden;
	border-radius:50px;
}

.default-bar{
	position:absolute;
	left:0px;
	top:0px;
	height:12px;
	width:0px;
	border-radius:50px;
	background-color: var(--main-color);
	-webkit-transition:all 2000ms ease;
	-ms-transition:all 2000ms ease;
	-o-transition:all 2000ms ease;
	-moz-transition:all 2000ms ease;
	transition:all 2000ms ease;
}

.default-count-box{
	position:absolute;
	right:0px;
	top:0px;
	font-weight:700;
	font-size:18px;
	color:var(--black-color);
}

.team-detail_subtext{
	position:relative;
	color:#666666;
	font-size:16px;
	line-height:28px;
	margin-top:-10px;
	margin-bottom:25px;
}



/* Whatsapp css */
#notification {
    display: none; 
}

#notification {
    position: fixed;
    bottom: 65px;
    left: 20px;
    z-index: 9999;
    border-color: #0062cc;
    background-color: #fff;
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5);
    border-radius: 5px;
    width: 280px;
    height: auto;
    padding: 20px;
}
#notification p {
    text-align: justify;
    color: #000;
    font-size: 15px;
    line-height: 28px;
}
#notification a {
    color: #000 !important;
    font-weight: 600;
}
#notification table td {
    padding: 10px 0 10px 10px;
    vertical-align: middle;
}
.whatsappicon {
    position: fixed;
    bottom: 10px;
    left: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
}
@media (max-width:1280px) {
    .whatsappicon {
        width: 40px;
        height: 40px;
    }
}
.whatsappicon img {
    max-width: 80%;
}
.tableimg {
    width: 60px;
    margin-right: 15px;
}
/* Whatsapp css */


/*inner pages*/
.pt-100{
	padding-top: 100px;
}
 .pb-100{
	padding-bottom: 100px;
}
.page-title h1{
	font-size: 50px;
	color: #fff;
	line-height: 60px;
}



.btn-industrial:hover {
    background-color: #b0ca05 !important;
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(176, 202, 5, 0.3);
}

.about-section .feature-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-section .feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}



.vmv-card {
    position: relative;
    padding: 50px 40px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #b0ca05;
}


.vmv-icon-wrap {
    width: 70px;
    height: 70px;
    background: #b0ca051f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #b0ca05;
    margin-bottom: 30px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    transition: 0.4s;
}

.vmv-title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vmv-card.active .vmv-title {
    color: #ffffff;
}

.vmv-text {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.vmv-card.active .vmv-text {
    color: #cccccc;
}

.vmv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmv-list li {
    color: #666666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.vmv-card.active .vmv-list li {
    color: #cccccc;
}

.vmv-list li i {
    color: #b0ca05;
    margin-right: 10px;
    font-size: 16px;
}

.vmv-bg-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    transition: 0.4s;
    user-select: none;
}

.vmv-card.active .vmv-bg-number {
    color: rgba(176, 202, 5, 0.1);
}

.vmv-card:hover .vmv-bg-number {
    top: 10px;
}

/* Luxury Accent Line */
.vmv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #b0ca05;
    transition: 0.4s;
}

.vmv-card:hover::before {
    width: 100%;
}


.technical-blueprint-row {
    position: relative;
}

/* Blueprint Item Styling */
.bp-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.bp-content {
    flex: 1;
}
.blueprint-list{
	margin-top: 60px;
}
.bp-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    /* margin-bottom: 8px; */
    letter-spacing: 1px;
}

.bp-text {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
    text-align: right;
}

/* The Connector Dots */
.bp-dot {
    width: 24px;
    height: 24px;
    border: 2px solid #b0ca05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    z-index: 2;
}

.bp-dot span {
    width: 8px;
    height: 8px;
    background: #b0ca05;
    border-radius: 50%;
}

/* Alignment logic */
.left-side .bp-item { text-align: right; }
.left-side .bp-dot {margin-left: 40px;}

.right-side .bp-item { text-align: left; }
.right-side .bp-dot { margin-right: 40px; }

/* Connecting Lines (Luxury Detail) */
.left-side .bp-item::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #dddddd;
    z-index: 1;
}

.right-side .bp-item::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #dddddd;
    z-index: 1;
}

/* Center Visual */
.product-center-display {
    position: relative;
    padding: 20px;
}

.tech-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border: 2px dashed #b0ca05;
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite;
    z-index: 0;
}

.main-product-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
    transition: transform 0.5s ease;
        /* animation: rotateCircleimg 20s linear infinite; */
        border-radius: 50%;
          width: 350px;
    height: 350px;
}
@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes rotateCircleimg {
    from { transform:  rotate(0deg); }
    to { transform:  rotate(360deg); }
}
.bp-item:hover .bp-dot {
    background: #b0ca05;
}

.bp-item:hover .bp-dot span {
    background: #000;
}


.aim-wrapper {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 50px;
}

/* Statement Box (Left) */
.aim-statement-box {
    background: #000000;
    padding: 80px 60px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aim-accent-tag {
    color: #b0ca05;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.aim-accent-tag::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #b0ca05;
    margin-left: 15px;
}

.aim-main-text {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 40px;
}

.text-highlight {
    color: #b0ca05;
}

.aim-footer-decoration {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,0.2);
    font-size: 24px;
}

.line-grow {
    height: 1px;
    background: rgba(255,255,255,0.1);
    flex-grow: 1;
}

/* Pillars Box (Right) */
.goal-pillars-box {
    background: #ffffff;
    padding: 80px 60px;
    height: 100%;
}

.pillar-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.pillar-item:last-child {
    margin-bottom: 0;
}

.pillar-number {
    font-size: 40px;
    font-weight: 900;
    color: rgba(176, 202, 5, 0.2);
    line-height: 1;
    font-family: Arial, sans-serif; /* Industrial feel */
}

.pillar-title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.pillar-desc {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pillar-progress {
    width: 100%;
    height: 3px;
    background: #eeeeee;
    position: relative;
}

.pillar-progress span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #b0ca05;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

/* Hover Effects */
.pillar-item:hover .pillar-number {
    color: #b0ca05;
    transform: scale(1.1);
    transition: 0.3s;
}

.catalog-grid_section {
    position: relative;
}

.premium-catalog_item {
    position: relative;
    overflow: hidden;
    height: 586px; /* Tall architectural aspect ratio */
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.catalog-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
}

.catalog-image_box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.catalog-image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

/* Hover Interactive Layer */
.catalog-hover_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 500ms ease;
    z-index: 3;
}

.action-icons {
    display: flex;
    gap: 20px;
    transform: translateY(30px);
    transition: all 500ms ease;
}

.action-btn {
    width: 65px;
    height: 65px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 300ms ease;
}

.action-btn:hover {
    background: #b0ca05;
    color: #000;
    border-color: #b0ca05;
}

/* Luxury Title Bar */
.catalog-title_bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 4;
    transition: all 500ms ease;
}

.catalog-display_title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: all 500ms ease;
}

/* Hover States */
.premium-catalog_item:hover .catalog-image_box img {
    transform: scale(1.1);
}

.premium-catalog_item:hover .catalog-hover_layer {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.premium-catalog_item:hover .action-icons {
    transform: translateY(0);
}

.premium-catalog_item:hover .catalog-title_bar {
    padding-bottom: 60px;
}

.premium-catalog_item:hover .catalog-display_title {
    color: #b0ca05;
    transform: translateY(0);
}





.inner-why-choose {
    background-color: #ffffff;
    overflow: hidden;
}


/* --- Industrial Grid (The "Gallery" Aesthetic) --- */
.industrial-grid {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    position: relative;
}

/* Unique Floating Border Effect */
.grid-border {
    position: relative;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .grid-border:nth-child(3n) {
        border-right: none;
    }
}

/* --- Feature Item (High-Premium Minimalist) --- */
.inner-why-choose .feature-item {
    position: relative;
    padding: 80px 50px;
    height: 100%;
    transition: 0.3s ease-in-out;
    z-index: 1;
}

/* Subtle Layered Glass Effect on Hover */
.inner-why-choose .feature-item::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.95);
    transition: 0.3s ease-in-out;
    z-index: -1;
    border-radius: 2px;
}

.inner-why-choose .feature-item:hover {
    z-index: 5;
    box-shadow: none !important;
}

.inner-why-choose .feature-item:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

/* --- Icons (Industrial Sophistication) --- */
.inner-why-choose .feature-icon-wrap {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f8f8f8;
    border-radius: 0px; /* Sharp industrial edges */
    transition: 0.3s ease-in-out;
    position: relative;
}

.inner-why-choose .feature-icon-wrap i {
    font-size: 32px;
    color: #000;
    transition: 0.3s ease-in-out;
}

.inner-why-choose .feature-item:hover .feature-icon-wrap {
    background: #b0ca05;
    transform: rotate(45deg);
}

.inner-why-choose .feature-item:hover .feature-icon-wrap i {
    color: #ffffff;
    transform: rotate(-45deg);
}

/* --- Typography (High-Contrast Cleanliness) --- */
.inner-why-choose .feature-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}

.inner-why-choose .feature-content p {
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

/* Industrial Corner Accent on Hover */
.inner-why-choose .feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #b0ca05 transparent transparent;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.inner-why-choose .feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover .feature-content h3 {
    color: #b0ca05;
}

.about-one_experiance i{
    font-size: 40px;
    font-weight: 700;
    color: var(--main-color);
}



.country-card {
    position: relative;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}

.country-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #b0ca05;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: right;
}

.country-card:hover {
    transform: translateY(-10px);
    border-color: #b0ca05;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.country-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.flag-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.flag-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.5s ease;
    border: 1px solid #eeeeee;
}

.country-card:hover .flag-container img {
    filter: grayscale(0%);
    opacity: 1;
}

.country-info {
    position: relative;
}

.country-name {
    font-size: 16px;
        line-height: 20px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    transition: all 0.4s ease;
}

.country-card:hover .country-name {
    color: #666666;
}

/* Luxury Industrial Accent - Background Numbering or Initials */
.country-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(176, 202, 5, 0.03);
    z-index: 0;
    pointer-events: none;
}

.blueprint-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(176, 202, 5, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 202, 5, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* 2. Step Navigation */
.step-navigation {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.step-nav-item.active {
    background: #ffffff;
    border-color: rgba(176, 202, 5, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-hex {
    width: 60px;
    height: 50px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #666;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.4s ease;
}

.step-nav-item.active .step-hex {
    background: #b0ca05;
    color: #ffffff;
    flex-shrink: 0;
}

.step-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.step-p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* 3. The Visual Architectural Element */
.architect-visual-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-orbit {
    position: relative;
    width: 400px;
    height: 400px;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(176, 202, 5);
    border-radius: 50%;
}

.ring-1 { width: 100%; height: 100%; border-style: dashed; animation: rotate 20s linear infinite; }
.ring-2 { width: 70%; height: 70%; border-color: #b0ca05;  animation: rotate 20s linear infinite reverse;}

.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
   
    color: #b0ca05;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 30px rgba(176, 202, 5, 0.3);
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(176, 202, 5, 0.2);
    animation: corePulse 2s infinite;
}

/* Tech Tags */
.tech-tag {
    position: absolute;
    padding: 10px 15px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    white-space: nowrap;
}

.tag-top { top: -20px; left: 50%; transform: translateX(-50%); }
.tag-right { top: 50%; right: -60px; transform: translateY(-50%); }
.tag-bottom { bottom: -20px; left: 50%; transform: translateX(-50%); }

/* Glassmorphism Stat Card */
.glass-stat-card {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 5px solid #b0ca05;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    z-index: 10;
}

.stat-val { font-size: 32px; font-weight: 900; color: #000; line-height: 1; }
.stat-label { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 1px; }

/* Animations */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes corePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}



.gallery-card-wrapper {
    position: relative;
    padding: 10px;
    background: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.gallery-image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.gallery-image-box img {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; */
    opacity: 0.9;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. The Premium Glass Layer */
.glass-info-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
}

.glass-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(176, 202, 5, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-line {
    width: 1px;
    height: 0;
    background: #b0ca05;
    margin-top: 15px;
    transition: all 0.6s ease;
}

/* 3. The "Not Simple" Hover Physics */
.gallery-card-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.gallery-card-wrapper:hover .gallery-image-box img {
    transform: scale(1.15) rotate(2deg); /* Added a slight rotate for personality */
    opacity: 0.7;
}

.gallery-card-wrapper:hover .glass-info-layer {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.gallery-card-wrapper:hover .glass-icon {
    transform: scale(1);
    background: #b0ca05;
    color: #000;
}

.gallery-card-wrapper:hover .glass-line {
    height: 40px;
}

/* 4. Industrial Frame Accent */
.gallery-card-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #b0ca05;
    border-right: 3px solid #b0ca05;
    opacity: 0;
    transition: 0.3s;
}

.gallery-card-wrapper:hover::after {
    opacity: 1;
    top: 5px;
    right: 5px;
}




/* 3. The Point Boxes (The "3 Points") */
.point-box {
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
}

.p-left {text-align: right !important;padding-right: 30px;}
.p-right { text-align: left; padding-left: 30px; }

.p-num {
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    color: #b0ca05;
    display: block;
    margin-bottom: 10px;
}

.p-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.p-left .p-text {
    /* font-size: 16px; */
    /* color: #777; */
    /* line-height: 1.6; */
    text-align: right;
}

.point-box:hover .p-title {
    color: #b0ca05;
}

/* 4. Central Visual Architecture */
.central-visual-wrap {
    position: relative;
    padding: 40px;
    z-index: 5;
}

.central-img-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.refresh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.8s ease;
}

.central-visual-wrap:hover .refresh-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Tech Brackets */
.tech-bracket {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #b0ca05;
    z-index: 0;
}

.b-top-left { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.b-bottom-right { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.img-badge {
    position: absolute;
    bottom: 60px;
    left: 20px;
    background: #b0ca05;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    letter-spacing: 1px;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 5px;
}

/* Unique Kinetic Path Styling */
.kinetic-container {
    position: relative;
    margin:60px 0 30px 0;
}

.kinetic-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.4;
}

.kinetic-step {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Positioning adjustments for "Architectural" feel */
@media (min-width: 992px) {
    .top-offset { transform: translateY(-40px); }
    .bottom-offset { transform: translateY(40px); }
}

.step-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666666;
    margin-bottom: 20px;
    opacity: 0.6;
}

.kinetic-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000000;
    border: 1px solid #eeeeee;
    border-radius: 20% 70% 30% 60% / 30% 30% 70% 70%; /* Organic industrial shape */
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.kinetic-icon.main {
    width: 100px;
    height: 100px;
    font-size: 40px;
    border-color: #b0ca05;
    background: rgba(176, 202, 5, 0.05);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #b0ca05;
    border-radius: inherit;
    animation: kineticPulse 3s infinite;
    opacity: 0;
}

@keyframes kineticPulse {
    0% { transform: scale(1); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.kinetic-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.kinetic-line {
    width: 30px;
    height: 2px;
    background: #b0ca05;
    margin: 0 auto 15px;
    transition: width 0.4s ease;
}

.kinetic-text {
    font-size: 16px;
    color: #666666;
    margin: 0 auto;
    text-align: center;
}

/* Hover Effects - Transform into Brand Color */
.kinetic-step:hover .kinetic-icon {
    background: #b0ca05;
    color: #ffffff;
    border-color: #b0ca05;
    transform: rotate(15deg);
    box-shadow: 0 15px 35px rgba(176, 202, 5, 0.3);
}

.kinetic-step:hover .kinetic-line {
    width: 60px;
}

.kinetic-step:hover .kinetic-title {
    color: #b0ca05;
}

/* Featured Step Styling */
.featured-badge {
    display: inline-block;
    background: #b0ca05;
    color: #ffffff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-radius: 50px;
}

.kinetic-step.featured .kinetic-text {
    max-width: 280px;
}


/* Feature Highlight Style */
.highlight-ind {
    background: linear-gradient(145deg, #ffffff, #fcfcfc);
    border-bottom: 3px solid #b0ca05;
}
/* Product-Wise Application Custom Styling */
.prod-app-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    min-height: 280px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.prod-app-side {
    width: 80px;
    background: #fcfcfc;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    transition: all 0.5s ease;
}

.vertical-tag {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    opacity: 0.5;
}

.prod-app-icon {
    font-size: 24px;
    color: #000;
    transition: all 0.5s ease;
}

.prod-app-main {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prod-app-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prod-app-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.prod-app-list li {
    font-size: 16px;
    color: #666666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.prod-app-list li .dot {
    width: 6px;
    height: 6px;
    background: #b0ca05;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
}

.prod-app-visual {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visual-line {
    height: 1px;
    flex: 1;
    background: #f0f0f0;
    transition: all 0.5s ease;
}

.visual-spec {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b0ca05;
}

/* Premium Hover States */
.prod-app-card:hover {
    transform: translateY(-10px);
    border-color: #b0ca05;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.prod-app-card:hover .prod-app-side {
    background: #000;
    border-right-color: #000;
}

.prod-app-card:hover .prod-app-icon {
    color: #b0ca05;
    transform: scale(1.2);
}

.prod-app-card:hover .vertical-tag {
    color: #ffffff;
    opacity: 1;
}

.prod-app-card:hover .visual-line {
    background: #b0ca05;
    flex: 1.5;
}

.prod-app-card:hover .prod-app-list li {
    color: #000;
    transform: translateX(10px);
}

.highlight-border {
    border-left: 4px solid #b0ca05;
}

/* Industrial Horizon Layout */
.ind-horizon-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.ind-horizon-row.reversed {
    flex-direction: row-reverse;
}

/* Image Panel */
.ind-horizon-img {
    flex: 0 0 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 400px;
}

.ind-horizon-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
}

.ind-tag-top {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 5;
    background: #b0ca05;
    color: #000;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Panel */
.ind-horizon-content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 80px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.ind-content-inner {
    max-width: 500px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ind-icon-box {
    font-size: 45px;
    color: #000;
    margin-bottom: 25px;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.ind-horizon-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.ind-accent-line {
    width: 60px;
    height: 4px;
    background: #b0ca05;
    margin-bottom: 30px;
}

.ind-horizon-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.ind-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-feature-list li {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ind-feature-list li i {
    color: #b0ca05;
    font-size: 16px;
}

/* Hover State */
.ind-horizon-row:hover .ind-horizon-img::after {
    background: rgba(176, 202, 5, 0.15);
}

.ind-horizon-row:hover .ind-icon-box {
    opacity: 1;
    color: #b0ca05;
    transform: translateY(-10px);
}

/* Tactile Interaction Strip - Modern Non-Grid Design */
.tactile-flow-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #f0f0f0;
}

.tactile-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
}

/* The "Focus Indicator" instead of numbers */
.tactile-focus {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.focus-crosshair {
    width: 20px;
    height: 20px;
    border: 1px solid #b0ca05;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.focus-crosshair::before, .focus-crosshair::after {
    content: '';
    position: absolute;
    background: #b0ca05;
    transition: all 0.4s ease;
}

.focus-crosshair::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.focus-crosshair::after { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

.tactile-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.tactile-header {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tactile-icon {
    font-size: 20px;
    color: #000;
    transition: all 0.4s ease;
}

.tactile-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    letter-spacing: 1px;
}

.tactile-text {
    flex: 1;
    font-size: 16px;
    color: #666666;
    margin: 0;
    max-width: 650px;
    line-height: 1.6;
}

.tactile-stats {
    display: flex;
    gap: 10px;
}

.stat-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #eeeeee;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

/* Hover States - Unique Interactive Feel */
.tactile-item:hover {
    background: #fcfcfc;
    padding-left: 20px;
}

.tactile-item:hover .focus-crosshair {
    transform: rotate(90deg) scale(1.5);
    background: #b0ca05;
}

.tactile-item:hover .focus-crosshair::before,
.tactile-item:hover .focus-crosshair::after {
    background: #ffffff;
}

.tactile-item:hover .tactile-icon {
    color: #b0ca05;
    transform: scale(1.2);
}

.tactile-item:hover .tactile-title {
    color: #b0ca05;
}

.tactile-item:hover .stat-tag {
    border-color: #b0ca05;
    color: #000;
}

        .product-wrapper {
            position: relative;
  
        }

        .product-wrapper:last-child {
            border-right: none;
        }

        .product-card {
            position: relative;
            padding: 50px 40px;
            background: #F5F5F5;
            transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
         
            z-index: 1;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }
    .product-card:hover {
            border-color: #b0ca05;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            transform: translateY(-10px);
            background-color: #fff;
        }


        .product-card:hover::before {
            height: 100%;
        }

        /* Number Watermark */
        .product-number {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 70px;
            font-weight: 900;
            color: rgba(0,0,0,0.03);
            line-height: 1em;
            transition: all 500ms ease;
        }

        .product-card:hover .product-number {
            color: rgba(176, 202, 5, 0.15);
            transform: translateY(-10px);
        }

        /* Image Styling */
        .product-img-box {
            position: relative;
            width: 100%;
            margin-bottom: 40px;
            overflow: hidden;
     
        }

        .product-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* filter: grayscale(100%); */
            transition: all 800ms ease;
        }

        /* .product-card:hover .product-img-box img {
            filter: grayscale(0%);
            transform: scale(1.1);
        } */

        /* Text Styling */
        .product-name {
            font-size: 24px;
            font-weight: 500;
            color: #000000;
            transition: all 500ms ease;
        }

        .product-desc {
            font-size: 16px;
            line-height: 1.8em;
            color: #666666;
            margin-bottom: 0px;
            transition: all 500ms ease;
        }

        /* Lime Accent Line */
        .accent-line {
            width: 40px;
            height: 3px;
            background-color: #b0ca05;
            margin-bottom: 25px;
            transition: width 500ms ease;
        }

        .product-card:hover .accent-line {
            width: 100%;
        }

       .style-head{
        display: inline-block;
        border-bottom: 1px solid #b0ca05;
       }

    .product-detail-sec .product-card {
            background: #ffffff;
            border: 1px solid #eeeeee;
            border-radius: 0px; /* Sharp architectural edges */
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

     .product-detail-sec  .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background-color: #b0ca05;
            transition: all 0.4s ease;
        }

     .product-detail-sec  .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #b0ca05;
        }

       .product-detail-sec  .product-card:hover::before {
            height: 100%;
        }

        /* Image Styling */
        .product-image-container {
            width: 100%;
            margin-bottom: 25px;
            overflow: hidden;
            background: #fcfcfc;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
        }

     .product-detail-sec  .product-card:hover .product-image-container img {
            transform: scale(1.1);
        }

        .product-detail-sec .product-name {
            font-size: 20px !important;
            font-weight: 500;
            color: #000000;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .product-detail-sec .product-spec-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }

        .product-detail-sec .product-spec-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f2f2f2;
        }

        .product-spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            color: #666666;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .spec-value {
            color: #000000;
            font-size: 15px;
            font-weight: 600;
        }

        .product-type-badge {
            display: inline-block;
            background: #f8f8f8;
            color: #000000;
            padding: 6px 15px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
            border-left: 3px solid #b0ca05;
            letter-spacing: 0.5px;
        }
        .elasto-prod-feat_section {

            border-top: 1px solid #eeeeee;
            border-bottom: 1px solid #eeeeee;
        }

        .elasto-prod-feat_item {
            padding: 40px 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-right: 1px solid #eeeeee;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

       

        .elasto-prod-feat_icon-wrap {
            width: 75px;
            height: 75px;
            background: #ffffff;
            border: 1px solid #eeeeee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            color: #b0ca05;
            font-size: 30px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            position: relative;
            z-index: 1;
        }

        .elasto-prod-feat_item:hover .elasto-prod-feat_icon-wrap {
            background: #b0ca05;
            color: #ffffff;
            border-color: #b0ca05;
            transform: translateY(-8px) rotate(8deg);
            box-shadow: 0 15px 25px rgba(176, 202, 5, 0.25);
        }

        .elasto-prod-feat_title {
            font-size: 16px;
            font-weight: 500;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin: 0;
            transition: all 0.3s ease;
        }

        .elasto-prod-feat_item:hover .elasto-prod-feat_title {
            color: #b0ca05;
            letter-spacing: 3px;
        }

        /* The Industrial Weave - Luxury Minimalist Redesign */
.industries-parallax-section {
    background-color: #ffffff;
}

.weave-grid {
    position: relative;
    padding: 0 15px;
}

.weave-item {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 0.5px solid #f2f2f2; /* Ultra-thin structural lines */
}

.weave-content {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.weave-icon {
    font-size: 38px;
    color: #e0e0e0; /* Ghost icon initially */
    margin-bottom: 25px;
    transition: all 0.6s ease;
    filter: grayscale(100%);
}

.weave-name {
    font-size: 20px;
    font-weight: 400; /* Sophisticated light weight */
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    transition: all 0.5s ease;
}

/* The Kinetic Tension Line */
.weave-tension-line {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 3px;
    background: #b0ca05;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover States */
.weave-item:hover {
    background: #fafafa;
    border-color: #b0ca05;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.weave-item:hover .weave-icon {
    color: #b0ca05;
    filter: grayscale(0%);
    transform: translateY(-15px);
}

.weave-item:hover .weave-name {
    font-weight: 600;
    letter-spacing: 1px;
    transform: scale(1.05);
}

.weave-item:hover .weave-tension-line {
    width: 60px;
}

/* Background "Blueprint" Watermark Effect */
.weave-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    transition: all 0.4s ease;
}

.weave-item:hover::before {
    border-color: #b0ca05;
    top: 20px;
    left: 20px;
}
section.page-title::after {
    content:"";
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:#0000008c;
}


.page-title .auto-container {
    position:relative;
    z-index:1;
}
.new-btn a{
       border: 1px solid #b0ca05;
    color: #b0ca05;
    border-radius: 8px;
    padding: 8px 18px;
    font-size:16px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}
.new-btn a:hover{
    background-color: #b0ca05;
    color: #fff;
}
.new-btn {
    margin-top: 20px;
    text-align:center;
}
         /* Remove border from last item on desktop */
        @media (min-width: 992px) {
            .elasto-prod-feat_row .col-lg-3:last-child .elasto-prod-feat_item {
                border-right: none;
            }
        }
@media (max-width: 1400px) {
.main-product-img {
    width: 255px;
    height: 255px;
}
.tech-circle-bg {
    width: 270px;
    height: 270px;
}
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-content-wrapper {
        padding-right: 0 !important;
        margin-bottom: 60px;
    }
    .sec-title_heading {
        font-size: 32px;
    }
    .stats-card {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        margin-top: 30px;
        max-width: 100% !important;
    }
	.left-side .bp-item{
        text-align: left;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .right-side .bp-item {
        text-align: left;
        
        justify-content: flex-end;
    }
    .bp-item {
    margin-bottom: 24px;
}
.bp-title {
    font-size: 16px;
}
    .left-side .bp-dot { margin-left: 0; margin-right: 40px; }
    .left-side .bp-item::after{
        left:12px;
    }
    .blueprint-list { margin-top: 20px; }
    .tech-circle-bg { width: 280px; height: 280px; }
	    .aim-statement-box, .goal-pillars-box {
        padding: 50px 30px;
    }
    .aim-main-text {
        font-size: 26px;
    }
      .grid-border:nth-child(2n) {
        border-right: none;
    }
       .feature-item {
        padding: 60px 35px;
    }
        .architect-visual-container { height: 400px; margin-top: 50px; }

        .p-left, .p-right { text-align: left !important; padding: 0; margin-bottom: 40px; }
   .p-text {
    text-align: left !important;
}
    .central-img-box { height: 350px; }
    .refresh-bg-text { display: none; }
        .kinetic-step {
        margin-bottom: 50px;
    }
    .top-offset, .bottom-offset {
        transform: none;
    }
        .ind-horizon-img, .ind-horizon-content {
        flex: 0 0 100%;
    }
    .ind-horizon-content {
        padding: 60px 30px;
    }
    .ind-horizon-title {
        font-size: 26px;
    }
    .tactile-content {
        flex-direction: column;
        gap: 15px;
    }
    .tactile-header {
        flex: 0 0 auto;
    }
    .tactile-focus {
        flex: 0 0 50px;
    }
              .product-wrapper { border-right: none;  }
                          .elasto-prod-feat_item {
                border-right: none;
               
            }
            .elasto-prod-feat_row .col-md-6:nth-last-child(-n+2) .elasto-prod-feat_item {
                border-bottom: none;
            }
                .weave-item {
        height: 220px;
    }
    .weave-name {
        font-size: 16px;
    }
    /*inner pages*/
.pt-100{
	padding-top: 80px;
}
 .pb-100{
	padding-bottom: 80px;
}
}



/* Responsive adjustments */
@media (max-width: 767px) {
    .premium-catalog_item {
        height: auto;
    }
       .grid-border {
        border-right: none;
    }
     .ind-modern-item {
        padding: 40px 25px;
        text-align: center;
    }
    .ind-icon-circle { margin: 0 auto 25px; }
    .ind-line { margin: 0 auto; }
     .prod-app-card {
        flex-direction: column;
    }
    .prod-app-side {
        width: 100%;
        flex-direction: row;
        padding: 15px 30px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .vertical-tag {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .pt-100{
	padding-top: 60px;
}
 .pb-100{
	padding-bottom: 60px;
}
.glass-stat-card{
    display: none;
}
.inner-why-choose .feature-item {
    padding: 30px;
}

}
@media (max-width: 500px) {
.feature-grid{
    grid-template-columns: unset !important;
}
.visual-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}
.tag-right {
    top: 20%;
    left: 0;
    right: unset;
    transform: translateY(-50%);
}
}

.new-img{
    display:none;
}
@media(max-width:767px){
.main-img{
    display:none;
}
    .new-img{
    display:block;
}
}
