/* style.css */

/* Smooth scrolling & fixed-header offset */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

/* General */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 150px;
  width: 150px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .logo {
    height: 100px;
    width: 100px;
  }
}

/* Navigation */
.nav {
  flex: 1;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.nav-links a:hover {
  color: #000;
  text-decoration: underline;
}

/* Hamburger Menu & Mobile Overlay */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 300px;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
  }
}

/* Hero */
.hero {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.cta-btn {
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.cta-btn:hover {
  background: #000;
  color: #fff;
}

/* Products Section */
.services {
  padding: 2rem 0;
  text-align: center;
}
.service-boxes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-icon {
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
}
.service h3 {
  color: #000;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .service-boxes {
    flex-direction: row;
  }
  .service {
    flex: 1;
  }
}

/* About Section */
.about {
  background: #f5f5f5;
  text-align: center;
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.about-block {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.about-block h3 {
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .about-block {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

/* Contact Section */
.contact {
  background: #fff;
  text-align: center;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button {
  padding: 0.75rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #333;
}

/* Footer */
footer {
  background: #f5f5f5;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
}
.footer-container .follow-us {
  margin-left: 1rem;
}
.footer-container .follow-us a {
  color: inherit;
  text-decoration: none;
  margin-left: 0.5rem;
  font-size: 24px;
}
.footer-container .follow-us a:hover {
  color: #000;
}
@media (max-width: 767px) {
  .footer-container .follow-us {
    display: block;
    margin-top: 0.5rem;
  }
}
