body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #002f36;
  height: 100vh; /* full viewport height */
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */

 }
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  color: white;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-size:14px;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, #006170, #0A798A);
  color: white;
}
.villainbox {
	width:90%;
	margin:0 auto;
	padding:5px;
	border-radius:10px;
	border:3px dashed #ccc;
	justify-content:center;
	display:flex;
}
.villainimg {
  width:300px;
  height:250px;
  margin:0 30px 0 30px;
  display:inline-block;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: orange;
  color: #333;
  border-radius: 5px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  width:200px;
}
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: white;
}
.feature {
  flex: 1 1 300px;
  max-width: 300px;
  margin: 10px;
  text-align: center;
}


.text-page {
  padding: 40px 20px;
  background-color: white;
  max-width: 900px;
  margin: auto;
}
.contact-form label {
  display: block;
  margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
  font-size: 16px;
}
.contact-form button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.foot {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  color: #999;
  margin-top: 40px;
}



h1 {font-size:40px;line-height:48px;}

.splink1 {
  color: #007880;           /* fixed color */
  text-decoration: none;    /* no underline by default */
 }

.splink1:visited {
  color: #007880;           /* same color when visited */
}

.splink1:hover {
  text-decoration: underline; /* underline only on hover */
}

.splink1:active {
  color: #007880;           /* same color when clicked */
}


.hoverhighlight{background:#fff;}
.hoverhighlight:hover{background:#eee;}

.featureimg {width:300px;height:250px;}
.maintext {font-size:11px;}
.red {color:#ff3300;font-weight:bold;}


.bodystyle {width:1000px;text-align:center;display:block;padding:20px;border-radius:0px 0px 15px 15px;background:#eee;margin:0 auto 0 auto;border-right:5px dashed #ccc;border-left:5px dashed #ccc;border-bottom:5px dashed #ccc;}
.details {width:87%;display:block;font-size:14px;color:#555;border:1px solid #ccc;padding:5px;margin:7px auto 35px auto;border-radius:3px;}

.space5{width:100%;height:5px;}
.space15{width:100%;height:15px;}
.space45{width:100%;height:45px;}

.bannerimg {width:1050px;height:300px;margin:10px auto 0 auto;}
.bannerimg2 {width:950px;height:271px;margin:10px auto 0 auto;}
.pidimg {width:200px;height:200px;margin:15px;border-radius:10px;}
.mkpimg {width:100px;display:inline-block;margin:10px 30px 10px 30px;}

.clearBoth { clear:both; }
.pidhead {font-size:25px;}
.mini3 {width:33%;display:inline-block;}

.image-container {
	width:1050px;
	margin:0 auto 0 auto;
  text-align:center;
  position: relative; /* makes positioning inside possible */
}
.top-right-link {
  position: absolute;
  top: 10px;     /* distance from top */
  right: 3px;   /* distance from right */
  color: #999;  /* make it visible over the image */
  text-decoration: none;
  font-size:13px;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
.top-right-link {
	font-size:15px;
top:6px;
right:15px;
}
.image-container {
	width:95%;
}
  .mkpimg {width:70px;height:auto;margin:5px;}
  .pidhead {font-size:20px;}
  .details {width:95%;}
  .bannerimg {margin-top:15px;width:95%;height:auto;max-width:450px;}
  .bannerimg2 {width:95%;height:auto;}
  .bodystyle {width:80%;}
  .pidimg {width:40%;height:auto;}
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  nav.show {
    display: flex;
  }

  nav a {
    margin: 5px 0;
  }

  .hero {
    padding: 40px 20px;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
 .villainbox {
	display:block;
	margin:0px 0px 0px 0px;
	padding:0px;
	border:0px;
	background:#eee;
 } 
.villainimg {
	display:block;
}
}