@charset "UTF-8";
/* CSS Document */
*{
	box-sizing: border-box;
}

body{
	font-family: Arial, sans-serif;
}	
	
ul{
	list-style: none;
}
	
a{
	text-decoration: none;
}
	
header{
  text-align: center;
  padding: 24px 16px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
	position: relative;
}

header img {
  max-height: 100px;
}
	
header h1 {
  margin-bottom: 4px;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 14px;
}

.lang-switch a {
  color: black;
  font-weight: 600;
}	
	
.lang-switch a:hover {
	color: teal;
	transform: scale(1.1);
	transition: .5s;
}

.lang-switch:hover {
	color: teal;
	transform: scale(1.1);
	transition: .5s;
}

.hero-image {
  display: flex;
  justify-content: center;
  padding: 40px 16px 60px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.hero-image img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
	
@media (max-width: 768px) {
  .hero img {
    height: auto;
    object-fit: contain;
  }
}

section{
	max-width: 100%;
  	text-align: left;
  	position: relative;
  	margin-bottom: 20px;   /* small controlled spacing */
	}
	
h1{
	margin-top: 2px;
	padding-bottom: 10px;
}
	
.nav-links {
	flex: 2;
	background-color: #333;
	margin-bottom: 8px;
}
	
.nav-links > ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
	
.nav-link{
	position: relative;	
}	
	
.nav-link > a{
	line-height: 3rem;
	color: #fff;
	padding: 0 3rem;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: .5s;
	}
	
.nav-link > a > i{
	margin-left: .2rem;
	}
	
.nav-link:hover > a{
	transform: scale(1.1);
	color: teal;
}
	
.dropdown{
	position: absolute;
	top: 101%;
	left: -3rem;
	width: 15rem;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	transition: .5s;
	z-index: 1000;
}	

.dropdown ul{
	position: relative;
}
	
.dropdown-link > a{
	display: flex;
	background-color: #333;
	color: white;
	padding: .9rem 1rem;
	font-size: .9rem;
	align-items: center;
	justify-content: space-between;
	transition: .3s;
}

.dropdown-link:hover > a{
	background-color: teal;
}
	
.dropdown-link i{
	transform: rotate(-90deg);		
}

.arrow{
	position: absolute;
	width: 11px;
	height: 11px;
	top: -5.5px;
	left: 130px;
	background-color: #333;
	transform: rotate(45deg);
	cursor: pointer;
	transition: .3s;
	z-index: -1;
}
	
.dropdown-link:not(:nth-last-child(2)){
	border-bottom: 1px solid black;
}
	
.dropdown-link:first-child:hover ~ .arrow{
	background-color: teal;
}
	
.dropdown-link{
	position: relative;
}
	
.dropdown.second{
	top: 0;
	left: 80%;
	padding-left: .8rem;
	cursor: pointer;
	transform: translateX(5px);
}
	
.dropdown.second .arrow{
	top: 17px;
	left: 34px;
	background-color: #333;
	position: absolute;
	transform: rotate(45deg);
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
	transform: translate(0, 0);
	opacity: 1;
	pointer-events: auto;
	}
	
@media (max-width: 768px) {

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link > a {
    padding: 16px;
    justify-content: space-between;
  }

  .nav-link {
    width: 100%;
  }

  /* Disable hover dropdown on mobile */
  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    opacity: 0;
    pointer-events: none;
  }

  /* Mobile dropdown default hidden */
  .dropdown {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .dropdown-link > a {
    padding: 14px 18px;
  }

  /* When active (JS adds this) */
  .nav-link.active > .dropdown,
  .dropdown-link.active > .dropdown {
    display: block;
  }
}
	
h2{
  max-width: 750px;
  margin: 40px auto 0;
  padding: 0px;
}

.cta {
  background: linear-gradient(to right, #0ea5a4, #0891b2);
  padding: 40px 16px;
  text-align: center;
  margin-top: 40px;
}

.cta-box {
  max-width: 900px;
  margin: auto;
  color: white;
}

.cta-box h2 {
  font-size: 34px;
  margin-bottom: 5px;
}

.cta-box p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.inquiry-btn {
  display: inline-block;
  margin: 12px auto 0;
  padding: 8px 16px;
  border: 1px solid #0ea5a4;
  color: #0ea5a4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.company-overview {
  padding: 100px 0;
  background: #f6f8fa;
}

.company-overview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.overview-text h1 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #0c1c23;
}

.overview-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0c1c23;
}

.overview-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #3a4b55;
  margin-bottom: 16px;
}

.overview-visual img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .company-overview {
    padding: 70px 0;
  }
}


.map{
	position: absolute;
	top: 6px;
	right: 7px;
	color: white;
}
	
.map:hover{
	color: teal;
	transform: scale(1.1);
	transition: .5s;
}
	
/* Product grid */
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-card div {
  padding: 16px;
  text-align: center;
  font-weight: 600;
}

	
div.footer {
	font-family: Arial, sans-serif;
	background: #333;
	color: white;
	text-align: left;
	font-size: 14px;
	padding: 16px;
	padding-left: 30px;
	position: relative;
	left: 0;
	width: 100%;
	margin-top: 10px;
	min-height: calc(10vh - 25px);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
	
.pdf {
	color: black;
}	

.mySlides {
  display: none;
  position: relative;
}

/* Trust icons */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  text-align: center;
}

.feature {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
}

.feature img {
  height: 48px;
  margin-bottom: 10px;
}
	
.feature svg {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}	

.icon {
  background: #ecfeff;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mini-contact {
  background: linear-gradient(to right, #f0fdfa, #ecfeff);
  padding: 80px 16px;
  margin-top: 80px;
}

.mini-contact-box {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.mini-contact-text h2 {
  font-size: 32px;
  color: #0f766e;
  margin-bottom: 12px;
}

.mini-contact-text p {
  color: #374151;
  font-size: 16px;
  max-width: 520px;
}

.contact-points {
  margin-top: 16px;
  padding-left: 0;
}

.contact-points li {
  margin-bottom: 8px;
  color: #1f2933;
  font-weight: 500;
}

.mini-form {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ea5a4;
  box-shadow: 0 0 0 2px rgba(14,165,164,0.15);
}

.form-btn {
  width: 100%;
  background: #0ea5a4;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}

.form-btn:hover {
  background: #0891b2;
}

@media (max-width: 768px) {
  .mini-contact-box {
    grid-template-columns: 1fr;
  }
}

.product-categories {
  padding: 20px 0;
  background: #ffffff;
}

.product-categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  background: #f9fbfc;
  border: 1px solid #e3e8ee;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-box {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #0ea5a4, #0c7f80);
  margin: 0 auto 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0c1c23;
}

.product-card p {
  font-size: 15px;
  color: #546371;
  line-height: 1.5;
  margin-bottom: 22px;
}

.card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background: #0ea5a4;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0c7f80;
}

.btn-outline {
  border: 1px solid #0ea5a4;
  color: #0ea5a4;
}

.btn-outline:hover {
  background: #0ea5a4;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .product-categories {
    padding: 70px 0;
  }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
	
  .section-head h2 {
    font-size: 28px;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.industries {
  padding: 90px 0;
  background: linear-gradient(to right, #f8fafc, #ffffff);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.industries .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
}

.industry-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0ea5a4, #0c7f80);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0c1c23;
}

.industry-card p {
  font-size: 14px;
  color: #5b6b78;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .industries {
    padding: 60px 0;
  }
}
