*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-optical-sizing: auto;
    font-style: normal;
    --prime: #1D2C3E;
    --sec: #D7F9FA;
    --light-bg: #D7F9FA;
    scroll-behavior: smooth;
}
html {
    position: relative;
	scroll-padding-top: 100px; 
	scroll-behavior: smooth; 
}
body{
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
	--screen-width: calc(100vw - (100vw - 100%));
	font-family: "Open Sans", sans-serif;

}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    background: none;
}
h5{ margin: 0; }

.text-prime {
    color: var(--prime);
}
.btn-prime {
    background: var(--prime);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #fff;
    min-height: 42px;
    padding: 7px 16px;
    border: none;
    border-radius: 6px;
}
.btn-sec {
    border: 1px solid var(--prime);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: var(--prime);
    min-height: 42px;
    padding: 7px 16px;
    border-radius: 6px;
}
.w-fit {
    width: fit-content;
}
.mw-750 {
    max-width: 750px;
}
.fs-7 {
    font-size: 14px;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar {
	background-color: #FFFFFF;
	position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
	padding: 9px 0px;
}
.navbar-nav .nav-link {
    color: #000000;
}
/*.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #EB6422;
	font-weight: 700;
}
.navbar .navbar-nav .nav-link.active:before {
        width: 100%;
    }*/

#navbar-toggler:checked~.collapse {
    display: block;
}
p{
	font-size: 16px;
	line-height: 25px;
}
ul{
	padding: 0;
	margin: 0;
}
/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
select,
input,
textarea {
    border: 1px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 10px 20px;
    background: #fff;
    width: 100%;
}
select {
    padding: 11px 20px;
}
select:focus,
input:focus,
textarea:focus {
    border: 1px solid var(--prime);
    background: #fff;
}
/* Animations - Effective if user has no preferance for reduced motion */
@media (prefers-reduced-motion: no-preference) {
.animate-this {
    opacity: 0;
    transform: translateY(50px);
}
.animate-this.animated {
    animation: fade-in 0.8s ease-in-out forwards;
}
@keyframes fade-in {
    to {
       opacity: 1;
       transform: translateY(0px);
	}
}
/**********/
.header { background: transparent; }
.navbar-brand {  padding: 0; width: 178px;}
ul.navbar-nav li { margin-right: 24px; padding: 25px 0px; }
ul.navbar-nav li a.nav-link{ color: #FFFFFF; font-size: 16px;     padding: 0 !important; position: relative; }
ul.navbar-nav li:hover > a.nav-link { color: #EB6422; transition: all 0.3s ease;  }
ul.navbar-nav li a.nav-link.active { color: #EB6422; font-weight:700; }
a.btn-orange{
	background-color: #EB6422;
	padding: 10px 20px;
	color: #FFFFFF;
	font-size: 16px;
	border-radius: 10px;
	display: inline-block;
}
a.logo img{
	width: 172px;
	outline: none;
	border: 0;
}
.main-menu ul li ul.submenu {
    width: 221px;
    position: absolute;
    top: 100%;
    left: -49px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    padding: 10px 18px;
    background: #ffffff;
    box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
    border-radius: 19px;
    z-index: 99;
}
.main-menu ul li:hover ul.submenu {    
	opacity: 1;    
	visibility: visible;    
	transform: translateY(18px); 
}
.menu ul li.dropdown>a { 
	position: relative;
}
ul.navbar-nav li.dropdown > a.nav-link:after {
	content: "";
    top: -2px;
    border-top: 6px solid #000000;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    right: -9px;
    margin: 0 auto;
    width: 6px;
    z-index: 9;
    display: inline-block;
    position: relative;
}
.main-menu ul li ul.submenu li {
	display: block;
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-menu ul li ul.submenu li:last-child {border-bottom: 0;}

/*********/
.banner-slider { margin-bottom: 16px; }
.banner-main {
	position: relative;
}
.banner-image img {
	width: 100%;
	height: 90vh;
	object-fit: cover;
	object-position: top;
}
.banner-text {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.banner-maintext {
	max-width:500px;
}
.banner-maintext h1{ 
	font-family: "Montserrat", sans-serif;
	margin-bottom: 14px;
	color: #FFFFFF;
	font-size:52px;
	font-weight: 600;
}
.banner-maintext p{ 
	color: #FFFFFF;
	margin-bottom: 24px;
	padding-right:12%;
}
.banner-slider .owl-dots {
	position: absolute;
    bottom: 15px;
    left: 0;
    text-align: center;
    right: 0;
    margin: 0 auto;
}
.owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background-color: #FFFFFF !important;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/*********/
.counter_sec {
	background-color: #F0F0F0;
	padding: 44px 55px;
}
.counter_sec ul{
	max-width: 1165px;
	margin: 0 auto;
	gap: 144px;
}
.counter_sec ul li {
	text-align: center;
	display: block;
}
.counter_sec ul li img{
	width: 54px;
	margin-bottom: 25px;
}
.counter_sec ul li h3{
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 12px;
}
.counter_sec ul li p{
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
/*********/
.title h3 { 
	margin-bottom: 45px; 
	font-size: 48px;
	color: #000000;
	font-weight: 300;
} 
.title h3 span { 
	font-weight: 600;
} 
.material_sec {
	padding: 40px 0px;
	background-image: linear-gradient(to bottom, rgba(115, 115, 115, 0.04), rgba(217, 217, 217, 0.04));
}
.material-slider {
	max-width: 1068px;
	margin: 0 auto;
	
}
.customer_sec{
	padding: 60px 0px;	
}
.slide_box {
	padding:1px 5px;
    background: #ffffff;
    box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15);	
	border-radius: 20px;
	margin: 10px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.slide_box img {         border-radius: 20px;
        height: 99px;
        object-fit: contain;
        padding: 5px; }
.material-slider .owl-dots , .customer-slider .owl-dots, .injectionprod-slider .owl-dots, .history-carousel .owl-dots  {
    text-align: center;
	margin-top: 30px;
	display: flex !important;
    align-items: center;
    justify-content: center;
}
.material-slider .owl-dot, .customer-slider .owl-dot, .injectionprod-slider .owl-dot, .history-carousel .owl-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    background-color: #B8B8B8 !important;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.material-slider .owl-dot.active, .customer-slider .owl-dot.active, .injectionprod-slider .owl-dot.active, .history-carousel .owl-dot.active {
	background-color: #EB6422 !important;
	width: 8px;
    height: 8px;
}
/**********/
.certificate_sec { background-color: rgba(235, 235, 235, 0.7); padding: 24px 0px; }
.certificate_sec ul { max-width: 816px; margin: 0 auto; }
.certificate_sec ul li { margin-right: 84px; padding-right: 84px; border-right: 1px solid #C1C1C1; display: inline-block; }
.certificate_sec ul li:last-child { margin-right: 0; padding-right: 0; border-right: 0; }
.certificate_sec ul li img { width: 100%; }
/**********/
.whyus_sec { padding: 38px 0px 31px; border-bottom: 1px solid #E5A653; }
.whyus_row { padding-bottom: 35px; }
.whyus_sec h3 {  font-size: 48px; font-weight: 600; font-family: "Montserrat", sans-serif;  padding-left: 40px; }
.whyus_sec h5 { font-size: 23px; font-weight: 700; margin-bottom: 8px; }
.whyus_sec p { font-size: 14px; font-weight: 400; margin-bottom: 15px; }
.whyus_list { background-color: #FFFFFF; border-radius: 20px; padding: 33px 35px; box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15);	margin-bottom: 23px;  }
.whyus_list ul { gap: 60px; justify-content: space-between; }
.whyus_list ul li { display: inline-block; }
.whyus_list ul li .whyus_listimg { width: 100px; height: 100px; background: #f9f9fa; display: flex; align-items: center; 
justify-content: center; margin: 0 auto; margin-bottom: 24px;  border-radius: 100px; text-align: center;
position: relative; border: 7px solid #6A6A6A;}
/*.whyus_list ul li .whyus_listimg:before { content: ''; position: absolute; left: 0; top: 0; width: 100px;  height: 100%; border: 9px solid transparent;  border-radius: 100px; 
background: linear-gradient(45deg,#EB6422,#FF9764,#FFAD42) border-box; 
mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); mask-composite: exclude; }*/
.whyus_list ul li .whyus_listimg img { width: 40px; position: relative; z-index: 9; }
.whyus_list ul li p { color: rgba(0, 0, 0, 0.9); font-size: 16px; font-weight: 600; text-transform: capitalize; 
margin: 0; text-align: center;  }
/**********/
.value_sec { padding: 29px 0px 48px; }
.core_main { max-width: 900px; margin: 0 auto; margin-bottom: 50px; gap: 16px; flex-wrap: wrap;
 justify-content: space-between; }
.core_box { display: flex; width: 47%; align-items: center; }
.core_box:nth-child(even) { flex-direction: row-reverse; }
.core_box:nth-child(even) .core_txt { background:url('../../images/core-bg-right.svg') 0 0 no-repeat;        background-size: contain; }
.core_txt { background:url('../../images/core-bg-left.svg') 0 0 no-repeat;  width: calc(100% - 99px); padding: 48px 48px;
 text-align: center;        background-size: contain; }
.core_txt h5{  font-size: 24px; font-weight: 600; }
.core_img { border: 9px solid #6A6A6A; width: 99px; height: 99px; background: #FFFFFF; display: flex; align-items: center;
justify-content: center; border-radius: 100px;  }
.core_img img { width: 42px; }
/**********/
.value_box { background: #FFFFFF; box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15); border-radius: 20px; 
padding:24px 34px 32px; height: 100%;transition: all 0.3s ease; }
.value_box:hover { transform: translateY(-5px);  box-shadow: 0 6px 20px rgba(2, 48, 71, 0.15); }
.value_top { display: flex; margin-bottom: 14px; align-items: center; }
.value_top img { width: 44px; margin-right: 24px; }
.value_top h5 { font-size: 24px; font-weight: 600; font-family: "Montserrat", sans-serif; margin: 0;  }
.value_box p {  font-size: 14px; margin: 0; }
/**********/
.ekvira_logo { margin-bottom: 62px; }
.ekvira_image { max-width: 736px; margin: 0 auto; }
.ekvira_image img { width: 100%; }
/**********/
.service_sec { padding-bottom: 50px; }
.service_row { margin-bottom: 31px; }
.service_box { position: relative; transition: all 0.3s ease; }
.service_box > a { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 9;}
.service_box:hover { transform: translateY(-5px);  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); }
.service_img { border-radius: 15px; position: relative; }
.service_img:before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 15px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);  }
.service_img img { width: 100%; border-radius: 15px; }
.service_txt { padding: 26px 26px;    position: absolute; bottom: 0; width: 100%; display: flex; align-items: center;
justify-content: space-between; gap: 10px; }
.service_txt h6 { font-size: 20px; font-weight: 600; font-family: "Montserrat", sans-serif; color: #FFFFFF; 
text-transform: capitalize; }
.service_txt a img , .service_txt a svg{ width: 42px; transition: all 0.3s ease;  }
.service_box:hover .service_txt a svg path { fill: #E86622; transition: all 0.3s ease;  }
/**********/
.goal_sec { padding:70px 0px 20px; }
.goal_row {    align-items: flex-end; }
.goal_box { position: relative; margin-bottom: 58px; }
.goal_img { border:0px solid rgba(255, 255, 255, 0.25); border-radius: 20px; position: relative;padding-bottom: 42%;
box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15); overflow:hidden; }
.gradient-border{position:relative; border:1px solid #606060;}
.gradient-border:after{position:absolute; bottom:0; width:100%; height:1px; content:''; background: #333333;
background: linear-gradient(40deg, rgba(51, 51, 51, 1) 0%, rgba(237, 237, 237, 1) 53%, rgba(36, 36, 36, 1) 100%);z-index:9; }
.gradient-border:before{position:absolute; top:0; width:100%; height:1px; content:''; background: #333333;
background: linear-gradient(40deg, rgba(51, 51, 51, 1) 0%, rgba(237, 237, 237, 1) 49%, rgba(237, 237, 237, 1) 79%, rgba(36, 36, 36, 1) 100%); z-index:9; }
.goal_box:after{position:absolute; top:10%; left:0; width:1px; height:80%; content:''; background: #333333;
background: linear-gradient(180deg, rgba(51, 51, 51, 1) 10%, rgba(237, 237, 237, 1) 65%, rgba(36, 36, 36, 1) 95%); z-index:9; }
.goal_box:before{position:absolute; bottom:10%; right:0; width:1px; height:80%; content:''; background: #333333;
background: linear-gradient(180deg, rgba(51, 51, 51, 1) 5%, rgba(237, 237, 237, 1) 36%, rgba(36, 36, 36, 1) 84%); z-index:9; }
.goal_img img { width: 100%; border-radius: 20px; object-fit: cover; position: absolute; top: 0; left: 0; width: 100%;
 height: 100%; }
.goal_txt { text-align: center;  position: absolute; top: -50px; left: 0; right: 0;z-index: 99;}
.goal_txt span { border: 6px solid #FFFFFF; background-image: linear-gradient(to right, #FFFFFF , #D9D9D9); width: 94px; height: 98px; display: flex; align-items: center; justify-content: center;  border-radius: 100px;
margin: 0 auto; margin-bottom: 26px; }
.goal_txt span img { width:50px;  }
.goal_txt h6 { color: #FFFFFF;  font-size: 22px; font-weight: 700; text-transform: capitalize; padding-top:7px;}
.goal_btmtxt h3 { margin-bottom: 45px;  font-size: 48px; color: #FFFFFF; font-weight: 300; text-align: center; } 
.goal_btmtxt h3 span {  font-weight: 600; display: block; } 

.whatsapp-icon { position: fixed;  bottom: 89px;  right: 78px; width: 58px; height: 58px; z-index: 1000; }
/*********/
.about_sec { background-image: linear-gradient(to bottom, #f9f9f9, #ffffff); padding: 72px 0px 40px; 
border-bottom: 1px solid #E5A653; }
.about_sec .title h3 { margin-bottom: 27px; font-size: 64px; }
.about_sec .title h3 span { color: #EB6422; }
.about_sec .title h3 img { width: 175px; margin-top: -5px;  }
/**********/
.team_sec { padding: 32px 0px; }
.team_main { max-width: 1079px; margin: 0 auto; margin-bottom: 25px; display: flex; gap: 113px; }
.team_box { width: 33.3%; }
.team_image { position: relative; padding-bottom: 90%; margin-bottom: 14px; }
.team_image img { width: 100%; object-fit: cover; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
object-position: top; }
.team_txt { text-align: center; }
.team_txt h4 {  font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.team_btm { background: rgba(235, 102, 36, 0.1); border-radius: 12px; padding: 24px 95px; text-align: center;  }
.team_txt p, .team_btm p { margin: 0; }
/**********/
.legacy_sec { padding: 30px 0px 60px; }
.legacy_imagebox h4 { color: #F2F2F2; text-transform: capitalize; font-size: 40px; font-weight: 900; text-align: center; }
.legacy_box { background: #000000CC; border-radius: 20px; padding: 44px 57px; }
.legacy_box h3 {  font-size: 45px; font-weight: 300; font-family: "Montserrat", sans-serif; margin-bottom: 14px;
color: #FFFFFF; }
.legacy_box h3 span {   font-weight: 600;  }
.legacy_box p {  color: #dfdfdf; margin: 0; }
.legacy_row { align-items: center; }
.comon-padd { padding: 60px 0px; }
/**********/
.environment_sec .title h3 span { color: #EB6422; }
.title_txt { margin-bottom: 30px; }
.title_txt h4 {  font-size: 30px; font-weight: 300; font-family: "Montserrat", sans-serif; }
.title_txt h4 span { font-weight: 600;  }
.environment_main { display: flex; flex-wrap: wrap; gap: 23px; }
.environment_box { width: 48%; }
.environment_icon { background: #EB6422; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border-radius: 20px; }
.environment_box h5 { font-size: 18px; font-weight:700; margin-bottom: 8px; }
.environment_box p { font-size: 14px; margin: 0; }
.environment_image img { border-radius: 20px; }
.environment_row { margin-bottom: 44px; align-items: center }
.environment_row:nth-child(even) { flex-direction: row-reverse; }
.environment_row:nth-child(even) .environment_mainbox { padding-right:0px; }
.environment_row:nth-child(odd) .environment_mainbox { padding-left:0px; }
.environment_row:nth-child(odd) .environment_image{padding-right:40px;}
.environment_row:nth-child(even) .environment_image{padding-left:40px;}
.environment_row:last-child{ margin-bottom: 0; }
/**********/
.facilities_sec { padding: 20px 0px; position: relative; background-image: linear-gradient(to bottom, #ffffff, #fdeee5);  }
.facilities_txt { background-color: rgba(255, 255, 255, 0.96); border-radius: 20px; padding: 74px 44px; }
.facilities_txt h3 { font-size: 37px; font-weight: 800; font-family: "Montserrat", sans-serif;margin-bottom: 15px; } 
.facilities_txt ul li { font-size: 16px; font-weight: 600; margin-bottom: 5px; position: relative; display: block; 
padding-left: 20px; } 
.facilities_txt ul li:before { content:''; position: absolute;  left: 3px; top: 11px; width: 5px; height: 5px; 
background: #000000; border-radius: 6px;   } 
.facilities_txt ul { overflow-y: auto; height: 377px;  padding-right: 20px; padding-left: 5px; }
.facilities_txt ul::-webkit-scrollbar{ width: 4px }
.facilities_txt ul::-webkit-scrollbar-track{ background-color: rgba(243, 189, 160, 0.4); }
.facilities_txt ul::-webkit-scrollbar-thumb{ background-color: #EB6422; border-radius: 5px }
.facilities_image { position: absolute; right: 0; width: 50%; bottom: 0; }
.facilities_image img { mix-blend-mode: multiply; }
/**********/
.owl-buttons-wrapper { background: #FFFFFF; border-radius: 40px; box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15);
padding: 14px 24px;  max-width: 1186px; margin: 0 auto; margin-bottom: 44px;        gap: 15px;  display: flex; }
.owl-buttons-wrapper button { font-weight: 500; padding: 12px 10px; border: 0; border-radius: 100px;
font-family: "Montserrat", sans-serif; font-size: 16px; }
.owl-buttons-wrapper button.active { font-weight: 500; background: #EB6422; color: #FFFFFF; }
.project_box { background: #FFFFFF; border-radius: 20px; box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15); padding: 14px;
margin: 10px;        transition: all 0.3s ease; }
.project_box:hover {  transform: translateY(-5px); box-shadow: 0 6px 20px rgba(2, 48, 71, 0.15); }
.project_box img {  border-radius: 15px; width: 100%;  }
/**********/
.history_sec { background: rgba(255, 235, 209, 0.4); padding-bottom: 70px; }
#product-carousel { margin-bottom: 38px; }
.history-carousel { margin-top: 45px; }
.owl-item__inner {  display: flex; align-items: center;  flex-direction: column; justify-content: center;
text-align: center; margin: 0 auto; position: relative; }
.owl-item__inner .date-wrap {font-size: 32px; font-weight: 600; background: url('../../images/shape.svg') no-repeat !important; padding: 8px 58px; }
.owl-item__inner .text-wrap { margin-left: 25px;  padding-left: 10px; border-left: 5px solid #EB6422; height: 90px;
 display: flex; align-items: center; justify-content: flex-start; text-align: left; font-size: 12px; font-weight: 700; text-transform:capitalize;}
.history-carousel .owl-item:nth-child(odd) .owl-item__inner { padding-top: 90px; }
.history-carousel .owl-item:nth-child(even) .owl-item__inner { padding-bottom: 90px;flex-direction: column-reverse; }
/*********/
.page_txt { padding: 50px 0px 60px; border-bottom: 1px solid #E5A653; }
.automotive-section { border-bottom: 1px solid #E5A653;}
.capability-section .title h3 { font-size: 38px; }
.capability-list { background: #EB6422; border-radius: 24px; padding: 35px 50px; }
.capability-list ul li { display: inline-block; text-align: center; padding-right: 40px; margin-right: 40px; 
border-right: 1px solid #FFFFFF;        width: 20%; }
.capability-list ul li:last-child {  padding-right: 0px; margin-right: 0px;  border-right: 0;}
.capability-list ul li span{ background: #FFFFFF; border-radius: 20px; width: 64px; height: 64px; 
display: flex; align-items: center; justify-content: center; margin: 0 auto; margin-bottom: 14px; }
.capability-list ul li span img { width: 39px; }
.capability-list ul li p { font-size: 16px; color: #FFFFFF; text-transform: capitalize; font-weight: 600; font-family: "Montserrat", sans-serif; margin: 0; }
/*********/
.automotive-section .title h3 {  font-size: 38px; margin-bottom: 33px; }
.automotive-box { background: #FFFFFF; border-radius: 20px; box-shadow: 0px 1px 12px rgba(2, 48, 71, 0.15);
 padding: 33px 18px; display: flex; align-items: center; transition: all 0.3s ease; height: 100%; }
.automotive-box:hover {  transform: translateY(-5px); box-shadow: 0 6px 20px rgba(2, 48, 71, 0.15); }
.automotive-image { width: 198px; }
.automotive-image img { border-radius: 24px; }
.automotive-txt { width: calc(100% - 198px); padding-left: 25px; }
.automotive-txt h5 { font-size: 18px; font-weight: 600; font-family: "Montserrat", sans-serif; margin-bottom: 10px; }
.automotive-txt p { margin-bottom: 0; }
/*********/
.printing-section { padding: 24px 0px;  background-image: linear-gradient(to bottom, rgba(235, 102, 36, 0), rgba(235, 102, 36, 0.1)); }
.printing-section .row { align-items: center; } 
.printing-txt{padding-right:30px;}
.printing-txt h3{ margin-bottom: 14px;  font-size: 38px; font-weight: 600; font-family: "Montserrat", sans-serif;
text-transform: capitalize; }
.printing-txt p { margin-bottom: 0; padding-right:20px; }
.printing-image {  background-color: #FFFFFF; border-radius: 24px;  padding: 20px 40px; box-shadow:0px 7px 8px 2px #f6ede8; }
/*********/
.liquidprod-section { position: relative;}
.liquidprod-section:before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 470px; background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(249, 249, 249, 1) 100%); }
.liquidprod-section .container { position: relative; }
.liquidprod-section .title  { max-width: 725px; margin: 0 auto; margin-bottom: 49px; }
.liquidprod-section .title h3 { font-size: 38px; font-weight: 700; text-transform: capitalize; margin-bottom: 25px; }
.liquidprod_main { padding: 23px 19px; background: rgba(232, 232, 232, 0.5); border-radius: 31px; 
display: flex; gap: 16px; flex-wrap: wrap; }
.liquidprod_box { background: #FFFFFF; box-shadow: 0 6px 20px rgba(2, 48, 71, 0.15); border-radius: 12px; width: 24%; transition: all 0.3s ease; }
.liquidprod_box:hover {  transform: translateY(-5px); box-shadow: 0 6px 20px rgba(2, 48, 71, 0.15); }
.liquidprod_box img {border-radius: 12px; }
/*********/
.machinecap_sec { padding-bottom: 20px; }
.machinecap_sec h3 { font-size: 48px; font-weight: 600; font-family: "Montserrat", sans-serif; text-transform: capitalize; margin-bottom: 28px; }
.machinecap_main { align-items: center; gap: 80px; }
.machinecap_txt { width: 50%;  max-width: 545px;}
.machinecap_txt ul { border-top: 2px solid #000000;}
.machinecap_txt ul li { display: flex; font-weight: 700; padding: 7px 0px; border-bottom: 2px solid #000000; }
.machinecap_txt ul li p { margin: 0; }
.hide_txt { display: none; }
.machinecap_img { width: 50%; max-width: 541px; text-align: center; }
.machinecap_img img { opacity: 0.25; margin-bottom: 19px; }
.machinecap_txt.show-details .hide_txt {  display: flex; width: 55%; }
.machinecap_txt.show-details ul li > p { width: 45%; }
.machinecap_txt.show-details .hide_txt p {  width: 33.3%; }
.machinecap_txt.show-details { width: 100%;  max-width: 100%; }
.machinecap_img.hide { display: none; }
/*********/
.footer { 
	background: url(../../images/footer-bg.svg) no-repeat;
	padding: 67px 0 0; 
	        background-size: cover;
}
.footer-top {
	padding-bottom: 20px;
}
.footer-logo {
	max-width: 329px;
}
.footer-logo img {
	width: 100%;
}
.footer-link h6 , .footer_reach h6 {
	color: #FFFFFF;
	font-size: 24px;
	margin-bottom: 14px;
	font-weight: 700;
}

.footer-link ul li  , .footer_reach p  {
	font-size: 16px;
	margin-bottom: 10px;
	color: #FFFFFF;
	display: block;
}
.footer-link ul li a {
	color: #FFFFFF;
	transition: all 0.3s ease;
}
.footer-link ul li a:hover {
	color: #EB6422
}
.footer-link-list {
display: flex;
gap: 20px;
}
.footer-link-list ul {
	width: 61%;
}
.footer-link-list ul:first-child {
	width: 39%;
}
.footer-btm {
	padding: 24px 0px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}
.footer-btm ul.footer_list {
	display: flex;
	gap: 20px;
}
.footer-btm ul.footer_list li  , .footer-btm p  {
	font-size: 16px;
	color: #FFFFFF;
	display: block;
	margin: 0;
}
.footer-btm ul.footer_list li a {
	color: #FFFFFF;
	transition: all 0.3s ease;
}
.footer-btm ul.footer_list li a:hover {
	color: #EB6422
}
.footer_social li{
	display: inline-block;
	margin-right: 12px;
}
.footer_social li:last-child{
	margin-right: 0;
}
.footer_social li a {
	width: 48px;
	height: 48px;
	border: 1px solid #FFFFFF;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer_social li a img{
	width: 24px; 
}
/*********/



/*------------------Inner-banner-white-------------*/
.inner-banner-wht-text{height: 350px; overflow:hidden;position: relative;}
.inner-banner-wht-text img{width:100%; height:100%; object-fit:cover;position: absolute;top: 0;left: 0; z-index:1;}
.inner-banner-title{position:absolute; top:40%; z-index:9;}
.inner-banner-title h1{color: #FFFFFF;font-size:52px;font-weight: 700;}
.inner-banner-title p{color:#fff;}
/*--------------------Contact Page--------------------*/
.contactus-section{ padding:60px 0;}
ul.navbar-nav li a.nav-link{color:#000;}
.information-contact-box{padding:8px; box-shadow: 0 0 7px 7px #f8f8f8;  border-radius: 10px;}
.information-contact-box .info-box{background:url(../../images/contact_bg.webp) right bottom no-repeat;background-size: cover; padding: 40px 35px 160px;border-radius: 8px;}
.information-contact-box .info-box h2 {  font-size: 1.5rem;  color: #000;  font-weight: 600;  margin-bottom: 5px;font-family: "Montserrat", sans-serif;}
.information-contact-box .info-box p {  font-size: 0.95rem;  color: #000; margin-bottom: 25px;font-family: "Montserrat", sans-serif;}
.information-contact-box .info-list {  list-style: none;  margin-bottom: 25px;}
.information-contact-box .info-list li {  font-size: 0.95rem;color: #000; margin-bottom:30px;  display: flex;  align-items:center;  gap: 10px;font-family: "Montserrat", sans-serif;}
.information-contact-box .info-list li a:hover{color:#EB6422;}
.information-contact-box .info-list i {  font-size: 1rem;  color: #000; margin-top: 3px;margin-right: 12px;}
.information-contact-box .social-icons {  display: flex;  gap: 15px;  margin-top:30px; position: relative;  z-index: 2;}
.information-contact-box .social-icons a {  width:40px;  height:40px; border-radius: 50%;  border: 1.5px solid #f4803c;  color: #f4803c; display: flex;  align-items: center;  justify-content: center;  transition: all 0.3s ease;}
.information-contact-box .social-icons a:hover {  background:#fcdecd;border: 1.5px solid #f26522; }
.information-contact-box .circle {  position: absolute;  border-radius: 50%;  background-color: #f4803c20;  z-index: 1;}
.information-contact-box .circle1 {  width: 120px;  height: 120px; bottom: -40px;  right: -40px;}
.information-contact-box .circle2 {  width: 200px;  height: 200px;  bottom: -100px;  right: 20px;}
.custom-form {padding:30px 30px 20px 40px;}
.custom-form .form-label {font-weight:500;  margin-bottom: 6px; font-family: "Montserrat", sans-serif;  color:#000;  font-size:14px;}
.custom-form .radio-label{font-weight:500;  margin-bottom: 6px; font-family: "Montserrat", sans-serif;  color:#000;  font-size:13px;}
.custom-form .custom-input {  border: none; border-bottom: 1px solid #8D8D8D;  border-radius: 0;  padding-left: 0; padding-right: 0;  box-shadow: none !important; font-size: 14px;  }
.custom-form .custom-input:focus {border:0;  border-bottom: 1px solid #000 !important;  outline: none;  box-shadow: none;}
input[readonly] {  background-color: transparent;  color: #999;}
.custom-form .phone-field {  font-weight:500;  color: #000;}
.custom-radio-group {  display: flex;  gap: 20px;  flex-wrap: wrap;  margin-top: 8px;}
.radio-item {  position: relative;  padding-left: 20px;  cursor: pointer;  user-select: none;  font-weight: 500;  color: #1d1d1d;display: flex;}
.radio-item input {  position: absolute;  opacity: 0; cursor: pointer;}
.radio-item .radio-label::before {  content: "";  position: absolute; left: 0;  top: 3px;  width: 16px;  height: 16px;  border-radius: 50%;  border: 2px solid #ccc;  background-color: transparent;  transition: all 0.2s ease;}
.radio-item input:checked ~ .radio-label::before {border:0px solid #000;  background:url(../../images/radio-chk.svg) 0 0 no-repeat;background-size: 100%;}
textarea.form-control{height:47px;}
.btn-submit {  background-color: #f26522;  color: white; border: none;  padding: 12px 30px;  font-weight:400;  border-radius: 8px;  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.3); font-family: "Montserrat", sans-serif; transition: background-color 0.3s ease;}
.btn-submit:hover {  background-color: #000; color:#fff;}

/*----------------Career Page------------------*/
.team-section{padding:50px 0 50px; background:#fafafa;}
.center-head{text-align:center;}
.center-head h1{font-weight:300;color:#000;}
.center-head h1 strong{font-weight:600;}
.career-section {
  padding: 40px 0;
}

.career-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.career-icon {
  width:65px;
  height:65px;
  border-radius: 12px;
  background: #ffe9da;
  color: #f4803c;
  display: flex;
  align-items: center;
  justify-content: center;  
  margin-bottom: 15px;
}
.career-icon img{
	width:30px;
	height:auto;
}
.career-card h5 {
  font-size:20px;
  font-weight:700;
  margin-bottom: 10px;
  color: #000;
  line-height: 30px;
}

.career-desc {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.career-tags span {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #000000;
}

.career-exp {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

.career-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.apply-text {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
}
.apply-text:hover{
	color:#eb6422;
}

.apply-btn {
 width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;  
  transition: all 0.3s ease;
}
.apply-btn img{
	width:100%;
	transition: transform .2s;
}

.apply-btn img:hover{
	transform: scale(1.2);
}
.why-choose-section{
	padding:50px 0;
	background-image: linear-gradient(to bottom, #f4f4f4, #ffffff); 
	text-align:center;
	align-items:center;
	position:relative;
}
.why-choose-section:after{
	position: absolute;
    content: '';
    width: 100%;
    background: url(../../images/top-cercle.svg) 115% 11px no-repeat;
    background-size: auto;
    height: 161px;
    bottom: 130px;
    background-size: 20%;
    right: 0;
}
.why-choose-section:before{
	position: absolute;
    content: '';
    width: 100%;
    background: url(../../images/bottom-cercle.svg) -15% 0px no-repeat;
    background-size: auto;
    height: 161px;
    bottom: 40px;
    background-size: 20%;
    left: 0;
}
.why-choose-section .steps{
	align-items:center;
}
.why-choose-section .steps > div{
	padding:0 3px;
}
.choosestep-holder .card {
      text-align: center;
	  background:none;
	  border:0;
	  position:relative;
    }
	.choosestep-holder .card-odd {
      text-align: center;
	  background:none;
	  border:0;
	  position:relative;
    }
	.choosestep-holder .gap-top{
		padding-top:118px;
	}
	.choosestep-holder .gap-bottom{
		padding-bottom:100px;
		padding-top:10px;
	}
	.choosestep-holder .card:before{
		position:absolute;
		content:'';
		width:100%;
		background:url(../../images/top-cercle.svg) 0 0 no-repeat;
		height:90px;
		bottom: 130px;
		background-size: 100%;
	}
	.choosestep-holder .card-odd:before{
		position:absolute;
		content:'';
		width:100%;
		background:url(../../images/bottom-cercle.svg) 0 0 no-repeat;
		height:90px;
		bottom:60px;
		background-size: 100%;
		left: 0;
	}
    .choosestep-holder .circle {
      background: #fff;
      border-radius: 50%;
      width: 120px;
      height: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px auto;
	  border: 12px solid #FFE4BA;
    }

    .choosestep-holder .circle img {
      width: 60px;
      height: 60px;
    }

    .choosestep-holder .card-text {
      font-size: 14px;
      font-weight: bold;
      color: #000;
    }

.choosestep-holder .card-odd .card-text {
	padding-bottom:20px;
}

.intro-irrigation-section-top{
	background:#FFFBF9 ;
background: linear-gradient(0deg, rgba(255, 251, 249, 1) 0%, rgba(249, 249, 249, 1) 100%);
padding: 60px 0 50px;
}
.intro-irrigation-section-bottom{
	background: url(../../images/Irrigationbg.webp) #fef9f8 0 bottom no-repeat;
	padding:40px 0 75px;
	background-size: 100% 100%;	
}

.irrigation-thumb img{
	width:100%;
	height:auto;
}
/********ced-coating-css*********/
.inner-banner-black-text {height:485px;   overflow: hidden;    position: relative;}
.inner-banner-black-text img{width: 100%;    height:auto; object-position: right;  object-fit: cover; position: absolute;top:0px;    left: 0;    z-index: 1;}  
.org-head h2{font-size:40px; font-weight:300; color:#000; text-align:center;}

.inner-banner-black-text .inner-banner-title h1{color:#000;}
.inner-banner-black-text .inner-banner-title p{color:#000;}
.center-head h2{font-size: 38px;font-weight:300;}
.center-head h2 strong{font-weight:600;}
.intro-irrigation-section-bottom .center-head h2 {
	font-size: 38px;
	font-weight: 400;
}
.intro-irrigation-section-bottom .center-head h2 strong {
	font-weight: 700;
}
.org-head h2 {font-size:48px; font-weight:300;}
.org-head h2 span{color:#EB6422;font-weight:600;}  
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background:#EB6422;}
.ced-video-section{padding:50px 0;}

.ced-video-section .video-section { position: relative; width: 100%; border-radius:15px; overflow: hidden; }
.ced-video-section .video-wrapper { position: relative; max-height: 80vh; overflow: hidden; }
.ced-video-section .video-poster { width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius:15px;
}

.ced-video-section video {
  width: 100%;
  height: auto;
  display: none;
  border: none;
  outline: none;
}

.ced-video-section .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.ced-video-section .video-play-btn img{width:100%; height:auto;}

.ced-video-section .video-pause-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;  
  border: none;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.ced-video-section .video-pause-btn:hover {background: #eb6422;}
.commitment-section{background: #FDF0EA;background: linear-gradient(0deg, rgba(253, 240, 234, 1) 0%, rgba(255, 255, 255, 1) 100%); padding: 42px 0 0; border-top:1px solid #E5A653}
.commitment-point { display: flex;   align-items: flex-start; padding: 40px 30px 20px; gap:28px;}
.commitment-point .column {  display: flex;  flex-direction: column;  gap: 8px;}
.commitment-point .item {  display: flex;  align-items:baseline;  gap: 10px;}
.commitment-point .item p{}
.commitment-point .icon img{width:25px; height:auto;}
.commitment-point .divider {  width: 1px;  background-color: #ddd;  height: 170px;}
.infrastructure-section{padding:50px 0; border-bottom:1px solid #E5A653;}
.infrastructure-section .center-head { max-width: 888px; margin: 0 auto; }
.infrastructure-section .center-head h2 strong { font-weight: 700; }
.infrastructure-card-hold{padding:30px 0 0;}
.infrastructure-card-hold .infrastructure-card {  border-radius: 12px;  overflow: hidden;  transition:transform 0.3s ease, box-shadow 0.3s ease; box-shadow:0 0 6px 6px #f1f1f1;  text-align:center;  
padding:35px 30px 15px;  min-height:300px;}
.infrastructure-card-hold .infrastructure-card h5{background:#fdefe9; color:#eb6422; font-weight:900; border-radius:40px;  margin:0 auto 20px; display:block; padding:14px 15px; font-size:28px;text-transform: capitalize;}
.infrastructure-card-hold .infrastructure-card:hover {  transform: translateY(-5px);  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);}
.benefits-slider-hold{padding:25px 0 0;}
.benefits-section{padding:40px 0 90px;}
.benefits-section .item{text-align:center; padding:0;}
.benefits-section .item p{font-size:15px; color:#000;}
.benefits-section .item i{width:60px; height:60px; border-radius:12px; background:#EB6422; text-align:center; display:flex; align-items:center; justify-content:center; margin:15px auto;}
.benefits-section .item i img{width:35px; height:auto;}
.benefits-section .item h3{font-size:18px; color:#000; margin-bottom:15px; font-weight: 600; }
.benefits-section .center-head h2  { font-size: 38px; }
.benefits-section .center-head h2 strong {
        font-weight: 700;
    }
#benefits-slider.owl-theme .owl-dots{display:block; text-align:center;position: absolute;  width: 100%; bottom:-45px;}
#benefits-slider {background:#fff; padding:20px 25px 15px; border-radius:15px; box-shadow:0 0 7px 7px #f1f1f1;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background:#EB6422;}
.quality-section{padding:50px 0; border-bottom:1px solid #E5A653;background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(249, 249, 249, 1) 100%);}
.quality-section h2{margin-bottom:15px;    font-size: 38px;    color: #000000;    font-weight:600;}
.ced-product-section{padding:50px 0 20px; }
.ced-product-section .product-holder{padding:30px 0 10px;}
.ced-product-section .product-holder .product-box{border-radius:15px; background:#fff; padding:15px; box-shadow:0 0 10px 10px #f1f1f1; transition:transform 0.3s ease, box-shadow 0.3s ease; margin-bottom:25px;}
.ced-product-section .product-holder .product-box:hover{transform: translateY(-5px);  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);}
.ced-product-section .product-holder .product-box img{width:100%; height:100%; object-fit:cover; border-radius:8px;}
.smooth-collapse {  max-height: 0;  opacity: 0;  overflow: hidden;  transition: all 0.5s ease;}
.smooth-collapse.show {  max-height: 1500px;  opacity: 1;}
.quality-table {
  width: 100%;
  border-collapse: collapse;  
  background:none;
}
.quality-table th,
.quality-table td {
  padding:8px 16px;
  border-bottom:2px solid #000;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  background:none !important;
}

.quality-table th {
  font-weight: bold;
}
/********industrila-paking-css*********/
.exp-box p{color:#fff; font-weight: 800; text-align:left;margin: 0;}
  .exp-box{background:#EB6422; position:absolute; left:0; bottom:0; z-index:9; padding:17px 8%}  
 .packaging-text-section{border-top:1px solid #E5A653;border-top:1px solid #E5A653; padding:50px 0 50px}
 .pp-box-slider-holder{padding:20px 0;}
 .pp-box-slider-holder .owl-item{padding:15px 0;}
 .pp-box-slider-holder .item{text-align:center; padding:20px 20%; border-radius:15px; box-shadow:0 0 7px 7px #f1f1f1; transition:all 0.3s; min-height:255px;}
 .pp-box-slider-holder .item:hover{background-color: #EB6422;}
 .pp-box-slider-holder .item:hover i{background:#fff; color:#fff;}
 .pp-box-slider-holder .item:hover i img{filter: invert(57%) sepia(68%) saturate(3154%) hue-rotate(349deg) brightness(95%) contrast(98%);}
 .pp-box-slider-holder .item:hover h3{ color:#fff;}
 .pp-box-slider-holder .item:hover p{ color:#fff;}
 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background:#EB6422;}
.pp-box-slider-holder .item p{font-size:15px; color:#000;}
.pp-box-slider-holder .item i{width:60px; height:60px; border-radius:12px; background:#EB6422; text-align:center; display:flex; align-items:center; justify-content:center; margin:15px auto;}
.pp-box-slider-holder .item i img{width:35px; height:auto;}
.pp-box-slider-holder .item h3{font-size:18px; color:#000; margin-bottom:15px; text-transform:capitalize;  font-weight: 700; }
.pp-box-slider-holder .owl-theme .owl-dots{display:block; text-align:center;position: absolute;  width: 100%; bottom:-45px;}
.irrigation-product-section{border-top:1px solid #E5A653;border-bottom:1px solid #E5A653; padding:50px 0; margin-bottom: 40px; }
.irrigation-product-tab{border-radius:14px;background:#FCF5F1; padding:20px; margin:35px 0 0;}
.irrigation-product-tab .tabs-container {display: flex;}
    .irrigation-product-tab .nav-tabs {flex-direction: column; width:30%;box-shadow:0 0 6px 6px #f3e6df;background:#fff; border-radius: 10px;padding: 12px 15px;}
    .irrigation-product-tab .nav-tabs .nav-link {border: none;border-radius: 5px;text-align: left; width: 100%;color: #000000; margin-bottom: 5px; text-transform:uppercase; font-size:16px; padding:15px 25px; font-weight: 500; }
    .irrigation-product-tab .nav-tabs .nav-link.active {background-color: #f26522;color: white;     font-weight: 600;    }
    .irrigation-product-tab .tab-content {flex-grow: 1; margin-left:3%; width:67%;   }
	.irrigation-product-tab .tab-content .thumb-pro{background:#fff; padding:10px;  height: 280px; border-radius:12px; margin-bottom:20px;}
	.irrigation-product-tab .tab-content .thumb-pro img{width:100%; height:100%; object-fit:contain;}
    .irrigation-product-tab .tab-pane h3 {font-weight:500;margin-bottom: 20px; color:#000;}
    .irrigation-product-tab .tag {display: inline-block;     background: #fce6dc; color: #000; padding: 5px 12px;border-radius: 12px;margin-right: 10px;margin-bottom: 10px;font-size: 14px;}
	.irrigation-product-tab ul {padding-left: 20px;}
    .irrigation-product-tab ul li {margin-bottom: 5px;}
	.irrigation-product-tab .pro-content{padding:0 15px 20px;}
	.certificate-section{padding:50px 0 0;}
	.view-certificate .cert-card {  background-color: #fff; border-radius: 16px;  transition: all 0.3s ease; padding:15px 15px 15px; box-shadow:0 0 7px 7px #f3f3f3; height: 100%; }
	.view-certificate .cert-card p { margin: 0; }
	.view-certificate .cert-card img{width:100%; height:auto;border-radius: 12px; margin-bottom:12px;}
.view-certificate .cert-card:hover {  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);}
.enquiry-section .enquiry-content {  background-color: #fef1ea; padding:25px;}
.btn-enquire {  background-color: #f26522;  color: #fff; padding: 10px 24px;  border-radius: 8px; font-weight: 500;  text-decoration: none; transition: background-color 0.3s ease;}
.btn-enquire:hover {  background-color: #d9551c;}
.planet-friendly-section{padding:50px 0;}
.planet-choice{padding:30px 0 0;}
.planet-friendly-section .eco-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 8px 8px #f1f1f1;
  transition: all 0.3s ease;
  height: 100%;
  padding:30px 22px;}

.planet-friendly-section .eco-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.planet-friendly-section .eco-card h6 { font-weight: 700; font-size: 18px; }
.planet-friendly-section .eco-icon {border:6px solid rgba(235, 102, 36, 0.2);  padding: 12px; border-radius: 20px;width:74px;	height:74px;  display: flex;  align-items: center;  justify-content: center;  background-color:#fff;
        flex-shrink: 0;}
.planet-friendly-section .eco-icon img {max-width: 30px;  height: auto;}
.idea-section{padding:50px 0;background: #ffffff;background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(253, 240, 233, 1) 100%);}


.idea-section .process-card {  border-radius: 16px;  padding: 20px 15px 5px;  transition: all 0.3s ease;}

.idea-section .icon-box {
  background: #d9551c;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  border:5px solid #fff;
}
.idea-section .process-card h5 {
	color: #000000;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}
.key-section{border-top:1px solid #E5A653; padding:50px 0;}
.key-slider-hold{padding-top:30px;}
.key-slider-hold .svg-icon {  width: 34px;  height: 34px; filter: brightness(0) invert(1);  transition: filter 0.3s ease;opacity: 0.8;}
.key-slider-hold .process-card h5 {  font-weight: 700;  color: #000;  margin-bottom: 8px;}
.key-slider-hold .process-card p {  font-size: 15px;  color: #333;  margin-bottom: 0;}
.key-slider-hold .process-card:hover .icon-box {  background:#fff;  border: 2px solid var(--orange);}

.key-slider-hold .process-card:hover .svg-icon {
  filter: invert(57%) sepia(68%) saturate(3154%) hue-rotate(349deg) brightness(95%) contrast(98%);
}
.key-section{padding:50px 0 70px;}
.key-slider-hold .custom-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 15px;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 222px;
}

.key-slider-hold .custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.key-slider-hold .custom-card-img img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.key-slider-hold .custom-card-content h5 {
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.key-slider-hold .custom-card-content p {
  margin: 0;
}
.key-slider-hold .item{padding:20px 8px;}
.key-slider-hold .owl-theme .owl-dots{display:block; text-align:center; width: 100%;}

.esd-produst-grid .product-grid {
 
  padding: 30px 0px 0;
}

.esd-produst-grid .product-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.esd-produst-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  border: 1px solid #f5ded1;
}

.esd-produst-grid .product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 10px;
}

.esd-produst-grid .product-card h6 {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
/********irrigation-css*********/
.intro-irrigation-section-top{border-bottom:1px solid #EB6422;}
.isi{border-top:1px solid;  border-image: linear-gradient(45deg, #333, #fff) 1; margin-top:20px; padding-top:15px;}
.isi img{width:70px; height:auto;}
.isi span{font-weight:600; color:#000;}
.intro-irrigation-section-top .intro-text{padding-top:40px;}
.mission-card {  background: #fff;  border-radius: 16px;  padding: 30px 70px 20px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  position: relative;  margin-top: 40px; }
.mission-icon { width:85px;  height:85px; background: #f37021; border:8px solid #fff;  border-radius: 50%; display: flex; align-items: center;  justify-content: center;  position: absolute;  top: -40px; left:49%; transform: translateX(-50%); }
.mission-icon img{width:34px; height:auto;}
.mission-title {  font-weight: bold;  margin-top: 40px;  margin-bottom: 15px;}
.mission-text {  font-size: 15px;  color: #444;  line-height: 1.6;}
.floting-tree{padding:0; width:100%;position: relative;bottom: 0;  height: 100%;  display: block;}
.floting-tree img{padding: 0;  width: 200%;  position: absolute; bottom: -75px;  left: -50%;  z-index: 99;}
.quote-section{padding: 55px 0;}
.comment-hnd{width:66%; margin:0 auto; position: relative; }
.comment-hnd:before { content:''; position: absolute;  left: -145px; top: -35px; width: 145px; height: 145px; 
background: url('../../images/testi-icon-left.svg') no-repeat; opacity: 0.1; }
.comment-hnd:after { content:''; position: absolute; right: -145px; top: -35px; width: 145px; height: 145px; 
background: url('../../images/testi-icon-right.svg') no-repeat;  opacity: 0.1; }
.comment-hnd h2{font-size:40px; font-weight:900; color:#000; text-align:center;}
.comment-hnd h2 span{color:#EB6422;}
.quote-section .container{background-image: url(images/quote (1).svg), url(images/quote (2).svg);
 background-position: left center, right top; background-repeat: no-repeat, no-repeat;}
.org-head h2{font-size:40px; font-weight:300; color:#000; text-align:center;}
.org-head h2 span{color:#EB6422;font-weight:700;}
.why-choose-pro-section{background: #ffffff; background: linear-gradient(0deg, rgba(255, 255, 255, 1) 8%, rgba(245, 245, 245, 1) 29%); padding:50px 0; }
.why-choose-slider-hold{padding:40px 0 50px;}
.why-choose-slider-hold .item{text-align:center; padding:0;}
.why-choose-slider-hold .item p{color:#000;}
.why-choose-slider-hold .item i{width:60px; height:60px; border-radius:12px; background:#EB6422; text-align:center; display:flex; align-items:center; justify-content:center; margin:15px auto;}
.why-choose-slider-hold .item i img{width:35px; height:auto;}
.why-choose-slider-hold .item h3{font-size:18px; color:#000; margin-bottom:15px; font-weight: 700; }
#why-choose-slider.owl-theme .owl-dots{display:block; text-align:center;position: absolute;  width: 100%; bottom:-45px;}
#why-choose-slider {background:#fff; padding:20px 25px 15px; border-radius:15px; box-shadow:0 0 7px 7px #f1f1f1;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background:#EB6422;}

.enquiry-section {  margin-bottom: 40px; }
.enquiry-section .enquiry-content {  background-color: #fef1ea; padding:25px;    border-radius: var(--bs-border-radius-xl) !important;}
.enquiry-description { color: #444444; font-size: 14px; }
.btn-enquire {  background-color: #f26522;  color: #fff; padding: 10px 24px;  border-radius: 8px; font-weight: 500;  text-decoration: none; transition: background-color 0.3s ease;}
.btn-enquire:hover {  background-color: #f26522; border: 1px solid #f26522; color: #fff; }
/*****************/
.inner-banner-black-text, .inner-banner-black-text img, .inner-banner-black-text.irrigation , .inner-banner-black-text.irrigation img,
.inner-banner-black-text.irrigation-ठिबक-सिंचन- , .inner-banner-black-text.irrigation-ठिबक-सिंचन- img,
.inner-banner-black-text.ced-coating-solutions , .inner-banner-black-text.ced-coating-solutions img {
	height: 350px !important;
}
.inner-banner-black-text .inner-banner-title , .inner-banner-black-text.irrigation .inner-banner-title , .inner-banner-black-text.irrigation-ठिबक-सिंचन- .inner-banner-title{
    top: 50%;
    transform: translateY(-50%);
}
.inner-banner-black-text .inner-banner-title p, .inner-banner-black-text.irrigation .inner-banner-title p , .inner-banner-black-text.irrigation-ठिबक-सिंचन- .inner-banner-title p {
    font-size: 24px;
}
.inner-banner-black-text.injection-molding, .inner-banner-black-text.injection-molding img {
        height: 460px !important;
    }
.inner-banner-black-text.liquid-painting, .inner-banner-black-text.liquid-painting img {
        height: 380px;
    }
	
.inner-banner-black-text.industrial-packaging- , .inner-banner-black-text.industrial-packaging- img{
	        height: 415px;
}
.about-teamslide {
	margin-bottom: 30px;
}
.about-teamslider img{
	height: 500px;
	object-fit: cover;
	object-position: top;
}
#modal .custom-form {
	padding: 0;
}
#modal .close{
	        position: absolute;
        right: 18px;
        top: 5px;
        font-size: 28px;
}