/* Base Styles */
:root {
  --primary-color: #ffb300;
  --secondary-color: #ff8f00;
  --accent-color: #ff6d00;
  --dark-color: #333;
  --light-color: #fff;
  --gray-color: #f5f5f5;
  --text-color: #333;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: var(--dark-color);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Base Header Styles */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #504d4d;
  transition: all 0.3s ease-in-out;
  /* padding: 10px 0; */
  font-size: 1rem;
}

/* Header style when scrolled (shrink effect) */
header.shrink {
  padding: 0px 0;
  /* font-size: 0.9rem; */
}

/* Add this class when scrolling */
header.scrolled {
  background-color: #fff;
  transform: translateY(0);
}

/* Push the content below the fixed header */
body {
  padding-top: 0px;
  /* adjust based on your header height */
}


/* Header Styles */

.top-bar {
  background-color: #262936;
  color: white;
  font-size: 14px;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

.contact-info i,
.social-icons i {
  margin-right: 5px;
}

.contact-info a,
.social-icons a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover,
.social-icons a:hover {
  color: #00d084;
  /* Light green for hover effect */
}

.social-icons a {
  margin-left: 10px;
  font-size: 16px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-info,
  .social-icons {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .contact-info span {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .social-icons a {
    margin-right: 10px;
  }
}

/* .top-bar {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 4px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 5px;
}

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

.social-icons a {
  color: var(--light-color);
  font-size: 1rem;
} */

.social-icons a:hover {
  color: var(--primary-color);
}

.main-nav {
  background-color: var(--light-color);
  padding: 9px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--dark-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  display: block;
  color: var(--dark-color);
}

.dropdown-menu a:hover {
  color: var(--primary-color);
}

.dropdown-menu a::after {
  display: none;
}


/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.slide-content {
  position: relative;
  z-index: 1;
  color: var(--light-color);
  max-width: 600px;
  padding: 100px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content h2 span {
  color: var(--primary-color);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.slider-controls {
  position: absolute;
  bottom: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(50%);
  z-index: 2;
}

.slider-controls button {
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--light-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-controls button:hover {
  background-color: var(--primary-color);
}

.slide {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}


/* Featured Products */
.featured-products {
  padding: 80px 0;
}

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

.product-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-info p {
  margin-bottom: 20px;
  color: #666;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background-color: var(--gray-color);
}

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

.feature {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature p {
  color: #666;
}

/* Call to Action */
.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--dark-color);
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.cta .btn {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.cta .btn:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  margin-top: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: var(--dark-color);
  border: none;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-social a {
  color: var(--light-color);
  font-size: 1.2rem;
}

.footer-social a:hover {
  color: var(--primary-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow: auto;
}

.modal-content {
  background-color: var(--light-color);
  margin: 50px auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal h2 {
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

/* .form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
} */

.form-group textarea {
  resize: vertical;
}

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

/* Page Banner */
.page-banner {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 1rem;
}

.breadcrumb a {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--light-color);
}

/* About Page */
.our-story,
.our-mission {
  padding: 80px 0;
}

.story-content,
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text,
.mission-text {
  padding-right: 20px;
}

.story-text h2,
.mission-text h2 {
  text-align: left;
  margin-bottom: 30px;
}

.story-text h2::after,
.mission-text h2::after {
  margin-left: 0;
}

.story-text p,
.mission-text p {
  margin-bottom: 20px;
}

.story-image img,
.mission-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission-box {
  background-color: var(--gray-color);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.mission-box h3 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.mission-box h3 i {
  color: var(--primary-color);
  margin-right: 10px;
}

.mission-box ul {
  padding-left: 20px;
}

.mission-box ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.mission-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.our-team {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.member-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.member-bio {
  margin-bottom: 15px;
  color: #666;
}

.member-social {
  display: flex;
  gap: 10px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--gray-color);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* Contact Page */
.contact-info-section {
  padding: 80px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* .contact-form-section {
  padding: 80px 0;
  background-color: var(--gray-color);
} */

.contact-form-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

/* .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
} */

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

/* .contact-form-container {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
} */

.contact-form-container,
.contact-map {
  flex: 1 1 45%;
  min-width: 300px;
}

/* .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
} */

.form-row {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* .form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
} */

/* .map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
} */

/* Production Page */
.production-process {
  padding: 80px 0;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

.process-step {
  position: relative;
  margin-bottom: 50px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}

.step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-top: 25px;
}

.step-image img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.step-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.step-features {
  margin-top: 15px;
  padding-left: 20px;
}

.step-features li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.step-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.quality-control {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.quality-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-features {
  margin-top: 30px;
}

.quality-feature {
  display: flex;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

/* Location Page */
.main-locations {
  padding: 80px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-image {
  height: 100%;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-info {
  padding: 30px;
}

.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.location-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.location-details {
  margin: 20px 0;
}

.location-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.location-details i {
  margin-right: 10px;
  margin-top: 5px;
}

.location-btn {
  display: inline-block;
}

.location-maps {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.map-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  background-color: var(--light-color);
  border: none;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.map-container {
  display: none;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container.active {
  display: block;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .story-content,
  .mission-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-text,
  .mission-text {
    padding: 0;
  }

  .slide-content {
    padding: 50px 20px;
  }

  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .logo-text h1 {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--light-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: block;
  }

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

  .slider-controls {
    bottom: 10px;
    transform: translateY(0);
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  .product-info p {
    font-size: 0.95rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 6px 10px;
    text-align: center;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .top-bar {
    display: none !important;
    font-size: 0.75rem;
    padding: 6px 10px;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .hero {
    height: 400px;
  }

  .product-image {
    height: 150px;
  }

  .member-image {
    height: 200px;
  }

  .section-description {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 99;
  }

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

  .menu-toggle {
    display: block;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: var(--shadow);
  }

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

  .nav-links li {
    width: 100%;
    margin: 10px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Makes image responsive and fills container */
    object-position: center;
  }

  .slide-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 100%;
    color: white;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slider-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
  }

  .slider-controls button {
    width: 40px;
    height: 40px;
  }

  .products-grid,
  .features-grid,
  .contact-info-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-social {
    justify-content: center;
  }
}



@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    flex: 1 1 100%;
  }

  .btn {
    width: 100%;
  }
}