@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Nanum+Gothic&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
	padding: 0px;
	margin: 0px;
}





html{
	scroll-behavior: smooth;
	 
}

.container{
	max-width: 1350px!important;
}

h1, h2, h3, h4, h5{
	font-family: "Libre Baskerville", serif;
}

p, a, label{
	font-family: 'Inter', sans-serif;
}

ul{
	list-style: none;
	margin-bottom: 0px;
}


:root{
	--first-color:#cc9048;
	--second-color:#06BDDD;
	--white-color:#fff;
	--black-color:#000;
	--blue-color:#0047AB;
	--border-color:#E4E4E4;
}
.first-color{
	color: #FCB531!important;
}

.second-color{
	color: #06BDDD!important;
}

 
a:hover{
	color: #000;
	text-decoration: none;
}
/*@font-face {
  font-family: myFirstFont;
  src: url(sansation_light.woff);
}
*/

p{
	font-size: 15px;
}


.common-section{
	padding: 100px 0px;
	position: relative;
}
/*--------start-header-here---------*/








/*---------top-header-here----------*/

.header-section {
    background-color: var(--first-color);
    z-index: 99;
    position: relative;
    padding: 15px 0px;
}

.d-flex-common {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-box .items .box-phone i {
    width: 35px;
    height: 35px;
    background-color: var(--white-color);
    color: var(--blue-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-icon a i{
	width: 35px;
	height: 35px;
	background-color: #5a5a9df5;
	color: var(--white-color);
	border-radius: 100px;
	display: flex;
	transition: 0.3s ease;
	align-items: center;
	justify-content: center;
}

.social-media-icon a i:hover{
	background-color: var(--blue-color);
	color: var(--white-color);
	transform: rotate(360deg);
}
.social-media-icon{
	display: flex;
	gap: 10px;
	justify-content: right;
}
/*---------------End-header-here-----------*/


.header{
	background-color: var(--white-color);
	padding: 9px 0px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.fixed-header{
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
	z-index: 99;
	animation: header 1s 1 alternate;
}

@keyframes header{
	0% {
    transform: translateY(-100%);
	}
	100% {
	    transform: translateY(0%);
	}
}


.dropdown-toggle::after{
	display: none;
}
.dropdown-menu{
	padding: 11px;
	min-width: 230px!important;
	top: 14px!important;
	border: 1px solid var(--first-color);
}

.hamburger{
	margin-left: 20px;
}


.hamburger .line{
  width: 30px;
  height: 2px;
  background-color: var(--first-color);
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}


#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}


.menu-list-link{
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 35px;
}
.menu-list-link .item a{
	font-size: 14px;
	transition: 0.4s ease;
	position: relative;
	color: var(--black-color);
}
.menu-list-link .item.active a,
.menu-list-link .item a:hover{
	color: var(--first-color);
}

.mobile-menu.menu-list-link{
	flex-direction: column;
	    gap: 10px;
	    align-items: inherit;
}

.menu-list-link .item .dropdown-menu-box{
	width: 200px;
	padding-top: 15px;
	position: absolute;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
}

.menu-list-link .item:hover .dropdown-menu-box{
	 opacity: 1;
	 visibility: visible;
}

.menu-list-link .item .dropdown-menu-box .inner-box-dropdown{
	background-color: #fff;
	border-radius: 0px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	width: 100%;
	height: 100%;
}
.dropdown-menu-list .item .link{
	padding: 10px 10px;
	display: block;
	border-bottom: 1px solid #cccc;
}
.dropdown-menu-list .item .link:hover{
	background-color: #cc9048;
	color: #fff;
}


/*---------------End-stores-details-section-banner-here------------*/





/*------------------mobile-menu-box-menu-box------*/

.mobile-menu-box{
	position: fixed;
	width: 100%;
	height: 100%;
	left: -100%;
	top: 0px;
	background-color: #0000009c;
	z-index: 9999;
	transition: 0.3s ease;
}

.mobile-menu-box-active{
	left: 0%;
	transition: 0.3s ease;
}

.mobile-menu-box .inner-box{
	width: 75%;
	background-color: var(--white-color);
	height: 100%;
	padding: 20px 10px;
	position: relative;
	z-index: 999;
}
.mobile-menu-box .overlay-box{
	width: 100%;
	position: absolute;
	z-index: -1;
	height: 100%;
}
.mobile-menu-box .main-box{
	width: 150px;
}
.mobile-menu-box .inner-box .logo-box {
	justify-content: center;
}
.mobile-menu-box .inner-box .logo-box .close-box i{
	color: var(--first-color);
	cursor: pointer;
	font-size: 18px;
}
.phone-menu-list{
	height: 400px;
	overflow: auto;
}
.submenu-mobile{
	margin-left: 7px;
}
/*-------------End-mobile-menu-box-here-----------*/









/*------------Start-banner-section-here--------*/
.common-bc{
	background-image: url(../img/banner-img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 500px;
	display: flex;
	align-items: center;
}
.color-red{
	color: var(--blue-color)!important;
}
.banner-content h1{
	font-weight: 800;
	font-size: 48px;
}

.banner-content p{
	font-size: 18px;
}

.common-btn .btn {
  background-color: var(--blue-color);
  border-radius: 100px;
  padding: 12px 30px;
  border-radius: 100px;
  font-size: 16px;
  color: var(--white-color);
}

.common-btn .btn:hover{
	background-color: var(--first-color);
	color: var(--white-color);
}

/*------------End-banner-section-here------------*/


/*-------------Start-service-section-here--------------*/
.service-section{
	background-color: var(--border-color);
	min-height: auto;
}


.main-heading {
    font-weight: 900;
    font-size: 47px;
}

.service-box{
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 20px;
  position: relative;
	margin-top: 30px;
	transition: 0.5s ease;
	text-align: center;
	z-index: 11;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.service-box:hover{
	background-color: var(--first-color);
	margin-top: -1px;
}
.service-box:hover h5{
	color: var(--white-color);
}

.service-box h5{
	font-size: 13px;
  height: 28px;
}

.service-box:hover .service-icon-box{
	border-color: var(--blue-color);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}

 

.service-box .service-icon-box{
	width: 100px;
	height: 100px;
	border-radius: 100px;
	transition: 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white-color);
	margin: 0px auto;
	border: 5px solid var(--first-color);
}

/*------------ENd-service-section-here----------------*/


/*-------------Start-Capabilities-box-here------------*/
.Capabilities-box{
	background-color: #fff;
	border-radius: 15px;
	padding: 14px;
	height: 80%;
	padding-top: 30px;
	margin-top: 50px;
	box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
	border-bottom: 5px solid var(--first-color);
	transition: 0.5s ease;
}



.Capabilities-box:hover{
	border-bottom: 5px solid var(--blue-color);
}
.Capabilities-box .img-box-Capabilities{
	background-color: var(--white-color);
	margin-bottom: 20px;
}

.Capabilities-box .img-box-Capabilities img{
	border-radius: 10px;
}
.Capabilities-box h5{
	font-size: 15px;
}
.Capabilities-box p{
	font-size: 13px;
}
.Industrial-Services{
	height: inherit;
	padding-top: 15px;
}



/*--------------ENd-Capabilities-box-here-------------*/


/*-------------Start-Manufacturing and Workshop Services-here-----------*/
.Workshop-Services{
	background-image: url(../img/workshop-services-img.jpg);
	min-height: auto;
}/*
.Workshop-Services-box{
	background-color: var(--white-color);
	border-radius: 100px;
	padding: 5px;
	margin-top: 30px;
	display: flex;
	height: 64px;
	gap: 10px;
	align-items: center;
}

.Workshop-Services-box i{
	width: 50px;
	height: 50px;
	text-align: center;
	color: var(--white-color);
	background-color: var(--blue-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	font-size: 20px;
	justify-content: center;
}
.Workshop-Services-box p{
	font-size: 13px;
}*/

/*----------------ENd-Manufacturing and Workshop Services-here-----------*/

/*----------------Start-valves-Services-here---------------*/
.valves-Services{
	background-image: url(../img/valves-img-bc.jpg);
	min-height: auto;
}
/*
.valves-box{
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 10px;
	border: 4px solid transparent;
	transition: 0.3s ease;
	margin-top: 30px;
	height: 90%;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.valves-box img{
	height: 110px;
}

.valves-box:hover{
	border-color: var(--first-color);
}

.valves-box h4{
	font-weight: 700;
	color: var(--first-color);
	margin-left: 10px;
	margin-bottom: 20px;
}
*/
/*.point-list .items{
	display: flex;
	align-items: center;
	margin-top: 10px;
	gap: 10px;
}

.point-list .items span i{
	color: var(--first-color);
}*/
/*.Reverse-engineering-section .service-box{
	height: 130px;
	border-bottom: 5px solid transparent;
	margin-top: 68px;
}
.Reverse-engineering-section .service-box:hover{
	background-color: var(--white-color);
	margin-top: 68px;
	border-bottom: 5px solid var(--blue-color);
}

.Reverse-engineering-section .service-box:hover h5{
	color: var(--black-color);
}

.Reverse-engineering-section .service-icon-box{
	margin-top: -68px;
	padding: 51px;
}
.Reverse-engineering-section .service-icon-box img{
	border-radius: 100px;
}*/

.Recondition-content h2{
	font-weight: 700;
	color: var(--first-color);
}

.gear-box-right-img img{
	border-radius: 30px;
}

.turn-key-partner .inner-box{
	background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px 20px;
  border-bottom: 6px solid var(--first-color);
  border-right: 6px solid var(--first-color);
  transition: 0.3sease;
  margin-top: 30px;
  height: 90%;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.turn-key-partner .inner-box h1{
	color: var(--first-color);
	font-weight: 700;
	font-size: 20px;
}

.image-box-innner{
	background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px 10px;
  transition: 0.3sease;
  margin-top: 30px;
  height: 90%;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}


.main-heading .partner-text{
	display: block;
	font-size: 80px;
	font-weight: 800;
}


.full-turnkey-box{
	 box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.full-turnkey-box .right-icon{
	width: 50px;
  height: 50px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 100px;
  display: flex;
  margin-bottom: 0px;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  justify-content: center;
}


.contact-box{
	background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px 10px;
  transition: 0.3sease;
  margin-top: 30px;
  height: 90%;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.contact-box i{
	width: 100px;
	height: 100px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin: 0px auto;
	background-color: #F0F4F5;
}

.contact-box .active{
	background-color: var(--first-color);
	color: var(--white-color);
}

.form-box-inner{
	background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px 10px;
  transition: 0.3sease;
  margin-top: 30px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.form-control:focus{
	box-shadow: none!important;
	border-color: var(--first-color);
}

.form-control{
	border-radius: 10px;
	height: 50px;
	margin-top: 20px;
}

textarea{
	height: 150px!important;
}

.copyright-box{
	background-color: var(--first-color);
	padding: 20px 20px;
}
.mechanical-section{
	overflow: hidden;
}
/*----------------End-valves-Services-here------------------*/


.Vision-box-black{
	  background: #1f2d30 none repeat scroll 0 0;
    padding: 60px 26px 22px;
    height: 93%;
    margin-top: 30px;
}

.golden-box-vision{
	background-color: var(--first-color);
	margin-top: 5px;
	height: 100%;
}


.small-btn .btn{
	padding: 10px 25px;
  font-size: 13px;
}


/*--------------start-banner-section-inner-here-----------*/
.banner-section-inner{
	background-image: url(../img/metaline-surface-protection/Untitled-design7.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 70px 00px; 
	position: relative;
}

.banner-section-inner:after{
	content: '';
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.banner-section-inner .col-12{
	position: relative;
	z-index: 9;
}
.blue-color{
	color: var(--blue-color);
}

.feature-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
    border-top: 5px solid #0066b3;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item .icon {
    font-size: 2rem;
    color: #0066b3;
    margin-right: 1.5rem;
    min-width: 3rem;
    text-align: center;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
}

.commitment-item {
    background-color: #fff;
    padding: 1.5rem;
    height: 100%;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #6acf64;
}

.commitment-item .icon {
    font-size: 2rem;
    color: #6acf64;
    margin-bottom: 1rem;
}

.application-item .icon {
    font-size: 2rem;
    color: #0066b3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
     height: 80%;
    display: flex;
    align-items: center;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #ffdd00;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 221, 0, 0.2);
    border-left: 4px solid #000000;
}

.benefit-icon {
    color: #ffdd00;
    background-color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}


.Why-Choose-Metaline-section .Capabilities-box{
	height: 90%;
}

.Before-After-Transformation img{
	border-radius: 30px;
	border: 3px solid var(--first-color);
}

.product-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    margin-top: 30px;
}

.product-image {
    height: 220px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

.product-details {
    padding: 25px;
    background-color: #f4f3f3;
    height: 100%;
}

.product-title {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.product-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFD700;
}
.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.product-specs li {
    padding: 8px 0;
    color: #333333;
    font-size: 1.1rem;
    border-bottom: 1px solid #eaeaea;
    font-weight: 500;
}

.product-specs li span {
    font-weight: 700;
    color: #000000;
}

.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: #FFD700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.benefit ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1em;
}

.benefit ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #000000;
}
.benefit ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0px;
    color: #ffcc00;
    font-size: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}
.Chesterton-Products .product-card{
	height: 90%;
}

.mobile-menu-list .item .link{
	border-bottom: 0px;
}

/*----------------End-banner-section-inner-here-------------*/



.usage-section {
      background: linear-gradient(to right, #1e3c72, #2a5298);
      padding: 80px 30px;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
      }
      .usage-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 60px;
      padding: 10px 20px;
      display: inline-block;
      border: 3px solid #7B7BFF;
      border-radius: 6px;
      }
      .usage-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      }
      .usage-box {
      flex: 1 1 400px;
      padding: 30px 25px;
      border-radius: 10px;
      background-color: #fff;
      color: #000;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }
      .marine-sector {
      border-top: 10px solid #007ACC;
      }
      .industrial-sector {
      border-top: 10px solid #FF6C00;
      }
      .usage-box h2 {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 25px;
      text-align: center;
      text-transform: uppercase;
      }
      .usage-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .usage-box ul li {
      font-size: 1.1rem;
      line-height: 2;
      position: relative;
      padding-left: 20px;
      }
      .marine-sector ul li::before {
      content: "»";
      position: absolute;
      left: 0;
      color: #007ACC;
      }
      .industrial-sector ul li::before {
      content: "»";
      position: absolute;
      left: 0;
      color: #FF6C00;
      }
      @media (max-width: 768px) {
      .usage-title {
      font-size: 2rem;
      }
      .usage-box h2 {
      font-size: 1.5rem;
      }
      .usage-box ul li {
      font-size: 1rem;
      }
      }

.golden-color{
	color: var(--first-color);
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.compassion-gallery{
    width: 100%;
    margin-top: 30px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fff;
}


.Centek-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: white;
    width: 100%;
}

.Centek-section video {
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    object-fit: cover;
    border: none;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.Centek-section .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.Centek-section .container{
	position: absolute;
	top: 0px;
	left: 0px;
}

.info-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    max-width: 400px;
    border-radius: 20px;
    color: #fff;
    margin: 20px;
    flex: 1;
    min-width: 280px;
}

.info-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}


.info-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}


.Ventilation-section .white-box{
	background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.Ventilation-section .white-box img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-section{
	background-color: #f3f5f7;
}


.slider-section .slide img {
    width: 50%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}


.simply-water-section .main-heading{
	font-size:80px;
}
.banner-section-inner {
	display: flex;
    align-items: center;

}

.common-btn .white-btn{
	background-color:#fff;
	 color: #000;
}
.common-btn .white-btn:hover{
	background-color:#000;
	 color: #fff;
}