/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
	scroll-behavior:smooth;
}
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
}
.logo{
	font-size:28px;
	font-weight:bold;
	color: #00bfff;
}
nav{
	display:flex;
	background-color:#1C2833;
	height:80px;
	width:100%;
	justify-content:space-between;
	align-items:center;
	padding:0px 50px 0px 80px;
	position:fixed;
	z-index:99;
}


nav ul{
	display:flex;
} 
nav ul li{
	list-style-type:none;
	margin:0 8px;
} 
nav ul li a{
	text-decoration:none;
	font-size:18px;
	font-weight:500;
	color: white; 
	padding:7px 13px;
	border-radius:4px;
	transition:0.5s;
} 
nav ul li a:hover,nav ul li a.active{
	background-color:#566573;
	color:#00bfff;
} 
.menu-btn{
	color:white;
	font-size:22px;
	cursor:pointer;
	display:none;
}
#click{
	display:none;
}

@media only screen and (max-width:940px) {
.menu-btn{
	display:block;
}
  nav ul {
    position:fixed;
	top:80px;
	left:-100%;
    background-color:#1C2833 ;
	height:100vh;
	width:100%;
	padding:20px;
	flex-direction:column;
	text-align:center;
	transition:all 0.5s ease;
  } 
  #click:checked ~ .menu-btn i::before{
	  content:"\f00d";
	  }
  #click:checked ~ ul{
	  left:0%;
	  }
 nav ul li{
	 margin:30px 0;
	 }
	 nav ul li a{
		font-size:22px; 
		 } 
	nav ul li a:hover,nav ul li a.active{
		background:none;
		color:#00bfff;
		}

} 

/* Hero Section */
.hero-section {
  height: 100vh;
  background: url('image/bg-1.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.hero-btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.primary-btn {
  background-color: #00bfff;
  color: #fff;
}

.primary-btn:hover {
  background-color: #008fcf;
}

.secondary-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #00bfff;
}

.secondary-btn:hover {
  background-color: #00bfff;
  color: #fff;
}
/* About Section */
.about-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Text content */
.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* Stats grid */
.about-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.stat-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1 1 150px;
}

.stat-box h3 {
  font-size: 2rem;
  color: #007BFF;
}

.stat-box p {
  font-size: 0.95rem;
  color: #333;
}

/* Image */
.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}
/* Products Section */
.products-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.products-container {
  max-width: 1200px;
  margin: auto;
}

.products-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card h3 {
  font-size: 1.1rem;
  padding: 15px 0;
  background-color: #fff;
  color: #333;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
/* Why Choose Us Section */
.why-choose-section {
  background-color: #f0f2f5;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-container {
  max-width: 1200px;
  margin: auto;
}

.why-choose-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.usp-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.usp-card img {
  width: 150px;
  margin-bottom: 15px;
}

.usp-card h3 {
  font-size: 1.2rem;
  color: #007BFF;
  margin-bottom: 10px;
}

.usp-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
/* Certifications Section */
.certifications-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.certifications-container {
  max-width: 1200px;
  margin: auto;
}

.certifications-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.certification-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.cert-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  width: 180px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
}

.cert-card img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .cert-card {
    width: 45%;
  }
}
/* Testimonials Section */
.testimonials-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.testimonials-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  margin: 40px 0;
}

.logo-grid img {
  max-height: 40px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.logo-grid h3{
	font-size:30px;
	color:#222;
}
.logo-grid img:hover {
  filter: grayscale(0%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border-left: 4px solid #007BFF;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  color: #555;
}
/* Factory Overview Section */
.factory-section {
  background-color: #fff;
  padding: 80px 20px;
}

.factory-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.factory-text {
  flex: 1 1 500px;
}

.factory-text h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.factory-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.factory-list {
  list-style: none;
  padding-left: 0;
}

.factory-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.factory-video {
  flex: 1 1 500px;
  text-align: center;
}

.factory-video iframe {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .factory-container {
    flex-direction: column;
  }

  .factory-video iframe {
    height: 220px;
  }
}
/* Contact Section */
.contact-section {
  background-color: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Optional Map */
.map-container {
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }
}
/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #00bfff;
}

.footer-logo p {
  color: #ccc;
  font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00bfff;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-links ul {
    display: inline-block;
  }
}
