/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f6f8;
  color: #333;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header */
.header {
  background: teal;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.logo img {
  height: 60px;
}

.company-name {
  flex: 1;
}
.company-name h1
{
color: blue;
font-family: 'Times New Roman', Times, serif;
}
.tagline
{
  color:lightgreen;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.nav a {
  color: white;
  margin-left: 20px;
  font-weight: 500;
}

.nav a:hover {
  background: #fff;
  color: teal;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Hero Slider */
.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* About & Chairman Sections */
.about, .chairman {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.chairman {
  background: #f1f1f1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.chairman-photo {
  max-width: 200px;
  border-radius: 8px;
}

.chairman-message {
  max-width: 600px;
  text-align: left;
}

/* Footer */
.footer {
  background: #1a4d2e;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    margin-top: 10px;
  }

  .chairman {
    flex-direction: column;
    text-align: center;
  }

  .chairman-message {
    text-align: center;
  }
}


/* products css */
/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header */
.header {
  background-color: teal;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.nav a {
  color: white;
  margin-left: 20px;
  font-weight: 500;
}

.nav a:hover {
  background: #fff;
  color: teal;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Product Page */
.products-page {
  padding: 40px 20px;
}

/* Product Thumbnails */
.product-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
    width:500px;
  height: 500px;
}

.product {
  cursor: pointer;
  text-align: center;
}

.product img {
  width: 200px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product h3 {
  margin-top: 10px;
  color: #1a4d2e;
}

/* Product Info */
.product-info {
  display: none;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.product-info h3 {
  margin-top: 0;
}

.pdf-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #1a4d2e;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.pdf-link:hover {
  background-color: #145232;
}

/* Footer */
.footer {
  background: #1a4d2e;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .product-images {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    margin-top: 10px;
  }
}
