/* Global Reset */
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Logo */
.logo {
  height: 42px;
  width: auto;
}

/* Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  color: #333;
  transition: all 0.25s ease;
}

/* Hover effect */
.nav-links a:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}

/* Active page highlight */
.nav-links a.active {
  background: #333;
  color: #fff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
}
.hero-img {
  width: 100%;
  max-width: 2000px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

.description {
  max-width: 20000px;
  margin: 0 auto;
  color: #444;
  line-height: 1.7;
}

/* Product Header */
.product_header {
  width: 100%;
  max-width: 2000px;
  height: 400px;
  background: #444;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  font-size: 24px;
  border-radius: 10px;
}

/* Product Section */
.product-section {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 32%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.product-img {
  width: 80%;
  height: 200px;
  background: #ccc;
  object-fit: cover;
  border-radius: 8px;
}

/* Service Card */
.service-card {
  text-align: left;
  max-width: 700px;
  margin: 10px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  line-height: 1.7;
}

/* Contact Page Layout */
.contact-container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
}

.contact-info {
  width: 35%;
  line-height: 1.7;
}

.contact-info h1 {
  margin-bottom: 20px;
}

.contact-info h2 {
  margin-top: 30px;
}

/* Right side: Map + Form */
.contact-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-map {
  width: 100%;
  height: 350px;
  background: #ccc;
  border-radius: 10px;
  overflow: hidden;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form button {
  margin-top: 18px;
  padding: 12px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.25s ease;
}

.contact-form button:hover {
  background: #555;
  transform: translateY(-2px);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .product-section {
    flex-direction: column;
  }

  .product-card {
    width: 100%;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-right {
    width: 100%;
  }
}
.description {
  font-size: 22px;
  line-height: 1.8;
  color: #444;
  width: 900px;
  margin: 20px auto;
  text-align: left;
}
