/* ==========================
   General Reset
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/* ==========================
   Header
========================== */
header {
  background-color: #003366;
  color: #fff;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================
   Hero Section
========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.logo-brands {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.brand-logo {
  height: 50px;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.brand-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ==========================
   Button
========================== */
.btn {
  background: #ff6600;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e65c00;
}

/* ==========================
   Services
========================== */
.services {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 8px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card:hover h3 {
  color: #ff6600;
}

.card h3 {
  color: #003366;
  margin-bottom: 10px;
}

/* ==========================
   About Section
========================== */
.about {
  background: #fff;
  padding: 80px 20px;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 50px;
}

.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-values {
  flex: 1;
  background: #003366;
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.values-list {
  list-style: none;
}

.values-list li {
  margin: 15px 0;
  padding-left: 25px;
  position: relative;
}

.values-list span {
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: bold;
}

.about-highlight, .mission, .vision {
  background: #f4f4f4;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-vision {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.company-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.info-card {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 8px;
  text-align: center;
}

/* ==========================
   Contact Section
========================== */
.contact {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

/* ==========================
   Gallery Section (Clean)
========================== */
.gallery-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.slides-wrapper {
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  max-height: 70vh;
  transition: transform 0.3s;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 16px;
  z-index: 10;
  border-radius: 50%;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* ==========================
   Footer
========================== */
.footer {
  background: #1e1e1e;
  color: white;
  font-family: 'Arial', sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-section p, .footer-section li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 10px;
}

.logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #003366;
    right: 20px;
    top: 70px;
    width: 200px;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about-content,
  .mission-vision {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .brand-logo {
    height: 40px;
  }
}
.product-table-container {
  overflow-x: auto;
  margin-top: 30px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  color: #333;
  font-size: 14px;
  border: 1px solid #ddd;
}

.product-table th,
.product-table td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: left;
}

.product-table th {
  background-color: #004080;
  color: white;
}

.product-table tr:nth-child(even) {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  .product-table-container {
    font-size: 13px;
  }

  .product-table th,
  .product-table td {
    padding: 10px;
  }
}
.product-table-container {
  overflow-x: auto;
  margin-top: 30px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  color: #333;
  font-size: 14px;
  border: 1px solid #ddd;
}

.product-table th,
.product-table td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: left;
}

.product-table th {
  background-color: #004080;
  color: white;
}

.product-table tr:nth-child(even) {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  .product-table-container {
    font-size: 13px;
  }

  .product-table th,
  .product-table td {
    padding: 10px;
  }
}
.product-table-container {
  overflow-x: auto;
  margin-top: 30px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  color: #333;
  font-size: 14px;
  border: 1px solid #ddd;
}

.product-table th,
.product-table td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: left;
}

.product-table th {
  background-color: #004080;
  color: white;
}

.product-table tr:nth-child(even) {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  .product-table-container {
    font-size: 13px;
  }

  .product-table th,
  .product-table td {
    padding: 10px;
  }
}
