/* ------------------------------------------------------------------
General Styles
------------------------------------------------------------------- */

html, body {height: 100%;}

body {
	font-family: "Roboto Slab", sans-serif;
	color:#666666;
}

p {font-size:16px; margin:0; padding:0; line-height:25px;}
h1 {font-family: "Roboto Slab", serif; font-size:58px; padding:0; font-weight: 700; line-height:1.2; color:#222;}
h2 {font-family: "Roboto Slab", serif; font-size:45px; margin:0; padding:0; font-weight: 700; line-height:1.1; color:#222;}
h3 {font-size:36px; margin:0; padding:0; font-weight: 700; line-height:1.2; color:#222;}
h4 {font-size:24px; margin:0; padding:0; font-weight: 700; line-height:1.4; margin-bottom: 5px; color:#222;}
h5 {font-family: "Roboto Slab", serif; font-size:14px; color:#e51a29; text-transform: uppercase; margin-bottom:15px; padding:0; letter-spacing: 1px; font-weight: 700;}

.small-text {font-size:14px; line-height:20px;}
.bold-text {font-weight: 700;}
.reg-text {font-weight: 400;}
.white-text {color:#fff}
.black-text {color:#222;}
.lightblue-text {color:#3ca2ff}
.fadeblue-text {color:#cad9e6}

.v-pad {padding-top:15px; padding-bottom:15px;}

.btn {
	height:50px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 13px;
	font-size: 15px;
	text-align: center;
  background-color: #e51a29;
	color:#fff;
	box-sizing: border-box;
	transition: 0.3s;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
}

.btn:hover {
  background-color: #0a4479; 
	color: #fff;
}

.blue-btn {
	background-color: #0a4479; 
}

.blue-btn:hover {
	background-color: #e51a29;
}

.white-btn {
	background-color: transparent;
	border:1px solid #fff;
	color: #fff;
}

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

a:hover {text-decoration:none;}
a:focus {outline: none !important; text-decoration:none;}
a, a:hover {color:inherit;}

section {padding:90px 0;}

img {max-width:100%;}

footer {
	background: url(img/bg-footer-100-middle.webp) center no-repeat;
	background-size: cover;
	padding-top:60px;
	padding-bottom: 110px;
}

footer #logo {
	width: 130px;
	height: 50px;
	float: none;
}

footer p {color: #222; font-size: 14px; line-height: 20px;}

.footer-links p {margin-bottom: 10px;}
.footer-links a:hover {color:#0a4479;}

.footer-bottom {
	height: 50px;
	line-height: 50px;
	text-align: center;
	position: relative;
	margin-top: -50px;
	color: #fff;
	font-size: 14px;
	background: rgba(0, 0, 0, 0.6);
}

.cta {
	background: url(img/bg-cta-topright.jpg) top right no-repeat;
	background-color: #0a4479;
	background-size: contain;
	color:#fff;
}

.cta h2, .cta h4 {color:#fff}

.cta .btn {margin-right: 15px; margin-bottom: 15px;}

ul.social {padding-left: 0;}

ul.social li {
  display: inline-block;
	margin-right:20px;
}

ul.social li a {
	color: #e51a29;
  font-size: 20px;
  display: inline-block;
	transition: 0.3s;
}

ul.social li a:hover {
	color:#0a4479;
}

input[type=text] {
	width: 100%;
	height: 50px;
	background:#fff;
	margin:10px 0;
	border: none;
	font-size: 14px;
	padding: 15px;
}

textarea {
	width: 100%;
	background:#fff;
	height: 150px;
	margin:10px 0;
	border: none;
	font-size: 14px;
	padding:15px;
}

.contact-form button {
	height: 50px;
	line-height: 50px;
	text-align: center;
	background:#e51a29;
	color:#fff;
	border: none;
	cursor: pointer;
	transition: 0.3s;
	margin-top: 10px;
	float: right;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding-left: 40px;
	padding-right: 40px;
}

.contact-form button:hover {
	background:#0a4479; 
}

.fa-ul > li {
  padding-bottom: 10px;
}

.fa-li {
  left: -35px;
	width: auto;
	color:#e51a29;
}


/* ------------------------------------------------------------------
Navigation
------------------------------------------------------------------- */

header {
	width: 100%;
	height: 90px;
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 1000;
	padding:0 50px;
}

#logo {
	width:170px;
	height: 69px;
	margin-top: 10px;
	float:left;
	transition:0.8s;
	background: url(img/logo.png) no-repeat;
	background-size: contain;
}

ul#menu {
	margin:0px; padding:0px;
	box-sizing:border-box;
	float: right;
	font-family: "Roboto Slab", serif;
	font-weight: 700;
}

ul#menu li {
  display: inline-block;
	margin-left:30px;
}

ul#menu li a {
	color: #6c7c8a;
  font-size: 16px;
  padding-top: 25px;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  border-top: 5px solid transparent;
	transition: 0.3s;
}

ul#menu li a:hover, ul#menu li a.active {
	color:#0a4479;
	border-top: 5px solid #e51a29;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown:hover a {
	color:#9e1c74;
}

.dropdown-content {
  display: none;
	position: absolute;
  background-color: #fff;
	min-width: 260px;
	z-index: 1;
}

.dropdown-content a {
  padding: 15px 20px !important;
  font-size: 14px !important;
  text-decoration: none;
	display: block !important;
	color:#6c7c8a;
	text-transform: none;
	border: none !important;
	border-top: 1px solid #eee !important;
}

.dropdown-content a:nth-child(1) {
	border-top: 1px solid transparent !important;
}

.dropdown-content a:hover {
	border: none !important;
	border-top: 1px solid #eee !important;
	background:#e51a29;
	color: #fff !important;
}

.dropdown:hover .dropdown-content a:before {content: none !important;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown-content a.sub-menu {
		padding:5px 0 !important;
		padding-left: 40px !important;
		font-size: 13px !important;
		border-top: none !important;
}

.dropdown-content a.dead-link:hover {
	background: #fff;
	color:#6c7c8a !important;
}

.dropdown-inv {
	height: 36px;
	width:100%;
	opacity: 0;
}

.dropbtn i {
	position: relative;
	bottom:2px;
	left: 2px;
	font-size: 10px;
	color:#423F3F;
	transition: 0.3s;
}

.dropbtn:hover i {rotate: 180deg; transition: 0.3s;}

nav i {
	position: relative;
	bottom:3px;
}

.nav-dropdown {
	display: block;
		padding: 20px 0 20px 33px;
		font-size: 15px;
		color:#6c7c8a;
	cursor: pointer;
	font-weight: 500;
	border-top: 1px solid #eee;
}


.toggle,
   [id^=drop] {
    	display: none;
	}

div.drop-content {
	display: none;
	background-color: #fff;
	width: 100%;
	font-weight: 500;
	letter-spacing: 0;
}

.drop-content p {line-height: 20px; font-size: 15px;}

.drop-content>p>a {
	display: block;
	padding: 10px 0;
	padding-left: 43px;
	padding-right: 10px;
	color:#6c7c8a;
}

.drop-content>p>a:focus,
.drop-content>p>a:hover {
	color:#fff;
	background:#e51a29;
}

.nav-dropdown-2 {
	padding:10px 0; 
	padding-left: 43px; 
	font-size: 15px;
	border:none;
}

.drop-content-2>p>a {
	padding-left: 60px;
	font-size: 13px;
}

nav i {
	font-size: 10px;
	top: 0px;
}

nav label {margin-bottom: 0px;}

nav a.btn {
	color:#fff;
	box-sizing: border-box;
	border-radius: 8px;
	border: none;
	transition: 0.3s;
	font-weight: 600;
	width: 160px;
  padding: 0;
  padding-top: 0px;
  padding-top: 12px;
  margin-left: 30px;
  margin-top: 30px;
	-webkit-transition: background-color .4s,-webkit-box-shadow .4s;
  transition: background-color .4s,-webkit-box-shadow .4s;
  -o-transition: background-color .4s,box-shadow .4s;
  transition: background-color .4s,box-shadow .4s;
  transition: background-color .4s,box-shadow .4s,-webkit-box-shadow .4s;
}

nav a.btn:hover {color:#fff}

/* ------------------------------------------------------------------
Home & content
------------------------------------------------------------------- */

#home {
	width:100%; 
	height: 900px;
	position: relative;
}

#home h1 {color:#fff;}

#home .flexslider ul.slides li {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#home .flex-container, #home .flexslider, #home ul.slides li {height: 100%;}

#home .flexslider .slides {height: 100%;}

.main-banner {
	width: 100%;
	height: 900px;
	background-position: center;
	background-size: cover;position: relative;
}

.main-title-wrapper {
	width: 100%;
	position: absolute;
	bottom: 90px;
}

.main-title {
	width: 720px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.shareprice-sec {
	background-image: linear-gradient(to right, #0a4479, #0078e6);
	padding:30px 0;
}

.shareprice-sec h4, .shareprice-sec h3, .shareprice-sec p {color: #fff;}

.shareprice-sec h4 {font-weight: 400;}

ul.shareprice {
	margin:0px; padding:0px;
	box-sizing:border-box;
}

ul.shareprice li {
  display: inline-block;
	margin-right:30px;
}

.sharestats {
	text-align: right;
	float: right;
}

.home-about-fullcol {
  height: 650px;
  width: 50%;
  float: right;
	padding:60px;
}

.bg-topright-white {
	background: url(img/bg-topright-white.jpg) top right no-repeat;
	background-color: #fff;
	background-size: 50%;
}

.about-video {
	display: flex;
  justify-content: center;
  align-items: center;
	background: url(img/video.webp) bottom center no-repeat;
	background-size: cover;
	position: relative;
	padding:0;
}

.video-vpa {
  display: flex;
  justify-content: center;
  align-items: center;
	background: url(img/video-2.jpg) center no-repeat;
	background-size: cover;
	position: relative;
	padding:0;
}

.vpa-wrapper {text-align: center;}

.bg-blue-topright {
	background: url(img/bg-blue-topright.webp) top right no-repeat;
	background-color: #0a4479;
	text-align: center;
	background-size: contain;
}

.bg-blue-topright h4, .bg-blue-topright p {color:#fff}

.bg-mission {
	background: url(img/bg-cover-bottom.webp) center bottom no-repeat;
	background-size: cover;
}

.mission-col {
	width: 50%;
	height: 520px;
	float: left;
}

.mission-thumb {
	background-position: center;
 	background-size: cover;
 	background-repeat: no-repeat;
}

.mission-detail {
	background: #fff;
	padding:30px;
	position: relative;
}

.red-border {
	height: 10px;
	background:#e51a29;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.mission-pad {margin-bottom: 5px;}

.project-col {
	width: 50%;
	height: 550px;
	float: left;
}

.bg-stainless {
	background: url(img/bg-stainless-cover.jpg) center bottom no-repeat;
	background-size: cover;
}

.product-item {
	width: 100%;
	height: 370px;
	background: #fff;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	text-align: center;
}

.product-link {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 30px;
}

.product-item a {
	display: inline-block;
	border-bottom: 2px solid #e51a29;
	color:#222;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	transition: 0.3s;
}

.product-item a:hover {
	border-bottom: 2px solid #0a4479;
}

.bg-lightgrey {
	background: url(img/bg-topright-lightgrey.webp) top right no-repeat;
	background-size: contain;
	background-color: #eeeeee;
	text-align: center;
}

.awards-thumb {
	width: 100%;
	height: 160px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg-blue2-topright {
	background: url(img/bg-blue2-topright.webp) top right no-repeat;
	background-color: #0a4479;
	background-size: contain;
}

.bg-blue2-topright h2, .bg-blue2-topright h3, .bg-blue2-topright p {color:#fff;}

.bg-stainless-top {
	background: url(img/bg-stainless-cover-top.jpg) top center no-repeat;
	background-size: 100%;
	background-color: #f1f1f1;
}

.news-thumb {
	width: 100%;
	height: 350px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 20px;
}

.news-sec h5 {text-transform: none; font-weight: 400; letter-spacing: 0;}

button#open-popup, button#open-popup2 {
	background: none;
  border: none;
  cursor: pointer;
}

.popup-container {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0,0,0,0.7); /* Black background with opacity */
  justify-content: center;
  align-items: center;
}

.popup-content {
  border-radius: 5px;
  max-width: 80%;
  position: relative;
}

video {
  width: 100%;
  height: auto;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
	z-index: 10;
}

.close-btn:hover,
.close-btn:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* Class to show the popup */
.show {
  display: flex;
}


/* ------------------------------------------------------------------
Inner pages
------------------------------------------------------------------- */

.inner-banner {
	width:100%; 
	height: 400px;
	margin-top: 90px;
	display: flex;
  justify-content: center;
  align-items: center;
	text-align: center;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.inner-banner h1 {color:#fff}

.title-wrapper {
	width: 720px;
	margin: 0 auto;
}

.about-bg {background-image: url(img/bannerpage-about-center.webp);}
.product-bg {background-image: url(img/bannerpage-product.webp);}
.exp-bg {background-image: url(img/bannerpage-experience.jpg);}
.contact-bg {background-image: url(img/bannerpage-contact-middle.jpg);}
.news-bg {background-image: url(img/bannerpage-news.jpg);}
.privacy-bg {background-image: url(img/bannerpage-privacypolicy.jpeg);}

.about-fullcol {
  height: 500px;
  width: 50%;
  float: left;
	padding:60px;
}

.about-img {
	background: url(img/img-about-center.webp) center no-repeat;
	background-size: cover;
}

.about-team {
	text-align: center;
	margin-left: 0;
	margin-right: 0;
}

.about-team img {
	margin-bottom: 15px;
	width: 100%;
  max-width: 400px;
  padding: 0 40px;
}
.about-team .v-pad {padding-top:30px; padding-bottom: 30px;}

.about-team p {color:#cad9e6}

.about-mission-col {
  height: 370px;
  width: 50%;
  float: left;
	padding:90px;
}

.about-vision {
	background: url(img/bg-vision-middle.webp) center no-repeat;
	background-size: cover;
}

.about-mission {
	background: url(img/bg-mission-middle.webp) center no-repeat;
	background-size: cover;
}

.corevalues-col {
	width: 50%;
	float: left;
	height: 300px;
	padding:40px;
	border: 1px solid #ddd;
	text-align: center;
	background: rgba(255, 255, 255, 0.7);
}

.corevalues-transparent {
	background: rgba(255, 255, 255, 0.3);
}

.product-links {
	border:1px solid #eee;
	position: sticky;
  top: 90px;
}

.product-links a {
	display: block;
	background: #fff;
	width: 100%;
	font-weight: 500;
	letter-spacing: 0;
	padding: 15px 0;
	padding-left: 30px;
	color:#222;
	font-family: "Roboto Slab", serif;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	border-top: 1px solid #eee;
	letter-spacing: 1px;
}

.product-links a:hover, .product-links a.active {
	color:#fff;
	background:#e51a29;
}

.accordion {
  color: #222;
	background-color: #fff;
  cursor: pointer;
  padding: 15px 0;
	padding-left: 30px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: "Roboto Slab", serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.4s;
	-webkit-tap-highlight-color: transparent;
}

button.accordion:focus {
	outline: none;
  box-shadow: none;
}

.accordion i {
	float: right;
	transform: rotate(0deg);
  transition: all 0.3s;
	position: relative;
	top:3px;
	right: 15px;
}

.acc-active i {
  transform: rotate(-90deg);
  transition: all 0.3s;
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel a {
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0;
	padding: 5px 30px;
  border: none;
}

ul.vpalist {padding-left: 15px; text-align: left;}
ul.vpalist li {color: #e51a29;}
ul.vpalist li p {color:#666;}

.bg-blue2-topright p {color: #fff !important;}

.product-dropdown {
  position: relative;
  display: none;
	width: 260px;
  margin-left: auto;
  margin-right: auto;
	margin-bottom: 20px;
}

.product-dropdown a.dropbtn {
	padding: 15px 20px;
	font-size: 14px;
	font-family: "Roboto Slab", serif;
  text-decoration: none;
	color:#222;
	background: #fff;
	text-transform: uppercase;
	border: 1px solid #ddd;
	min-width: 260px;
	display: block;
	letter-spacing: 1px;
	position: relative;
}

.product-dropdown a.dropbtn:hover {
	color: #222;
}

.product-dropdown .dropbtn {cursor: pointer;}
.product-dropdown .dropbtn:hover i {rotate: 0deg;}
.product-dropdown i {font-size: 14px;}

.product-dropdown .arrow-down {
	position: absolute; 
	right: 20px;
  top: 15px;
}

.product-dropdown .product-links {
  display: none;
	position: absolute;
	top: 52px;
  background-color: #fff;
	min-width: 260px;
	z-index: 1;
	border: 1px solid #eee;
	border-top: none;
}

.product-dropdown .product-links a {
  padding: 15px 20px !important;
  font-size: 14px !important;
	font-family: "Roboto Slab", serif;
  text-decoration: none;
	display: block !important;
	color:#222 !important;
	text-transform: uppercase;
	font-weight: 700;
	border-bottom: 1px solid #eee !important;
	letter-spacing: 1px;
}

.product-dropdown .product-links a:hover {
	border: none !important;
	border-bottom: 1px solid #eee !important;
	background:#e51a29;
	color: #fff !important;
}

.product-dropdown:hover .product-links a:before {content: none !important;}
.product-dropdown:hover .product-links {display: block;}

.product-border {
	height: 3px; 
	width: 100%;
	background:#e51a29;
	margin-top:20px;
	margin-bottom: 50px;
}

.experience-col {
	background: #fff;
	border-bottom: 10px solid #e51a29;
	margin-top:15px;
	margin-bottom: 15px;
}

.experience-detail {
	padding:30px;
	min-height: 340px;
}

.download-list {
	width:600px;
	margin:0 auto
}

.download-list img {width:100%; max-width: 289px;}

.download-btn {padding-top: 50px;}

.project-thumb {
	width: 100%;
	height: 210px;	
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.big-thumb {
	height: 420px;
}

.contact-col {
	width: 50%;
	height: 450px;
	float: left;
}

.contact-detail {
	background: #fff;
	padding:30px;
	position: relative;
}

.news-sec .v-pad {padding-top:30px; padding-bottom: 30px;}


.back-to-top {
    position: fixed;  
		width: 40px;
		height: 40px; 
		text-align: center;   /* Fixes the button relative to the viewport */
    bottom: 20px;         /* Position from the bottom */
    right: 20px;    
		font-size: 20px;      /* Position from the right */
    background-color: #0a4479; /* Button background color */
    color: white;         /* Text color */  /* Spacing inside the button */
    border-radius: 20px;   /* Rounded corners */
    text-decoration: none; /* Removes underline from the link */
    display: block;       /* Ensures padding works correctly */
    z-index: 1000;        /* Ensures the button is above other content */
    /* Add hover effects for better user experience */
    transition: 0.3s;
		padding-top: 4px;
		opacity: 0;
}

.back-to-top:hover {
	background-color: #e51a29; /* Button background color */
  color: white;   
}

.back-to-top.scrollChange {
	opacity: 1;
	transition: 0.3s;
}
