/* styles.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

.contact-btn {
  background: #d86911;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  margin-left: 20px;
}

.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero .highlight {
  color: #f58220;
  font-style: italic;
}

.hero-buttons .btn {
  margin: 10px;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background-color: #f58220;
  color: white;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
}

.btn.link {
  color: #0074d9;
  text-decoration: none;
  font-weight: 500;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  text-align: center;
}

.stats h2 {
  font-size: 2rem;
  color: #000;
}

.services .tabs {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.tab {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 5px;
  cursor: pointer;
}

.tab.active {
  background: #a34700;
  color: white;
}

.tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.service-box {
  flex: 1 1 300px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.products {
  background: #cc5500;
  color: white;
  text-align: center;
}

.products .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.product-grid div {
  width: 200px;
  background: white;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.product-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.cta-left {
  flex: 1;
}

.cta-right {
  flex: 1;
  display: grid;
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 10px;
}

.card.light {
  background: #f2f2f2;
}

.card.medium {
  background: #cc5500;
  color: white;
}

.card.dark {
  background: #331a00;
  color: white;
}

.footer {
  background: #111;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo img {
  height: 50px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

html {
  scroll-behavior: smooth;
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }
}

.navbar .logo img {
  height: 40px;
}

.navbar nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
