* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  color: #2c3e50;
  z-index: 4;
  width: 55px;
}

.logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  max-height: 50px;
}

.logo span {
  color: #e74c3c;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e74c3c;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/index.jpeg");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #c0392b;
}

.features {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  color: #e74c3c;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

footer {
  background: #2c3e50;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #e74c3c;
}

.footer-column p,
.footer-column a {
  color: #bdc3c7;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-column a:hover {
  color: #e74c3c;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
  font-size: 14px;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.services {
  padding: 50px 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  background: #ecf0f1;
  border: none;
  margin: 0 10px 10px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

.tab-btn.active {
  background: #e74c3c;
  color: #fff;
}

.tab-btn:hover:not(.active) {
  background: #d6dbdf;
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/cta.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  padding: 50px 0;
}

.about-content .container > div {
  background: #fff;
  border-radius: 5px;
  /* padding: 15px; */
}

.about-text {
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 20px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.mission-box,
.vision-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
  border-top: 3px solid #e74c3c;
}

.mission-box h3,
.vision-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.team {
  padding: 50px 0;
  text-align: center;
}

.contact-section {
  padding: 50px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #e74c3c;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #c0392b;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 24px;
  color: #e74c3c;
  margin-right: 20px;
  margin-top: 5px;
}

.info-content h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.info-content p,
.info-content a {
  color: #7f8c8d;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.info-content a:hover {
  color: #e74c3c;
}

.map-container {
  height: 300px;
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.hours-table {
  width: 100%;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table td {
  padding: 10px 0;
  color: #7f8c8d;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #2c3e50;
}

.products-list {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.products-list h4 {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}

.product-item p {
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.product-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.product-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}

.product-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #27ae60;
}

.product-btn {
  display: block;
  background: #e74c3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  text-align: center;
  margin: auto auto 0;
  width: fit-content;
  align-self: center;
}

.product-btn:hover {
  background: #c0392b;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: calc(80px + 2em);
    padding-bottom: 2em;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 2;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 4;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2c3e50;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}
