/* Base Styles */
:root {
  --primary-color: #4a7c59;
  --primary-dark: #3a6247;
  --primary-light: #6a9c79;
  --secondary-color: #a4b494;
  --accent-color: #f4a259;
  --text-color: #333;
  --text-light: #666;
  --background-color: #fff;
  --background-alt: #f9f9f9;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --box_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: var(--background-color);
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: #94a484;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

/* Header Styles */
header {
  background-color: var(--background-color);
  box-shadow: var(--box_shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-right: 15px;
  animation: float 3s ease-in-out infinite;
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 0;
  right: 0;
  opacity: 0.7;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 5px;
  line-height: 1;
}

.tagline {
  color: var(--text-light);
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  background-color: rgba(74, 124, 89, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease-out;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 30px;
  min-width: 180px;
}

.hero-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-graphic {
  position: absolute;
  font-size: 12rem;
  opacity: 0.1;
  color: white;
}

.hero-graphic-left {
  left: -3%;
  top: 20%;
  animation: float 5s ease-in-out infinite;
}

.hero-graphic-right {
  right: -3%;
  bottom: 15%;
  animation: float 7s ease-in-out infinite 1s;
}

/* Mission Section */
.mission {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a7c59' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.mission-text {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.mission-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
}

.mission-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.ceo-image {
  flex: 1;
  text-align: center;
}

.ceo-image img {
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 8px solid white;
  max-width: 90%;
}

.caption {
  margin-top: 15px;
  font-style: italic;
  color: var(--text-light);
  background-color: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.featured-products h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2rem;
}

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

.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box_shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

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

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-info {
  padding: 15px;
  background-color: var(--background-color);
}

.product-info h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.product-category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Company Highlights Section */
.company-highlights {
  padding: 80px 0;
}

.company-highlights h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2rem;
}

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

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

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.highlight-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo h2 {
  color: white;
  margin-bottom: 10px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  color: white;
}

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

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Banner */
.page-banner {
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

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

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

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.page-banner p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Custom banners for each page */
.products-banner {
  background-image: url("https://images.unsplash.com/photo-1620706857370-e1b9770e8bb1?q=80&w=1200&auto=format&fit=crop");
}

.about-banner {
  background-image: url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?q=80&w=1200&auto=format&fit=crop");
}

.contact-banner {
  background-image: url("https://images.unsplash.com/photo-1574943320219-5630bb4c2e01?q=80&w=1200&auto=format&fit=crop");
}

/* Products Page */
.products-section {
  padding: 60px 0;
}

.category-filter {
  margin-bottom: 40px;
}

.category-filter h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

#category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-btn {
  background-color: var(--background-alt);
  border: 1px solid var(--border-color);
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.products-container h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* About Page */
.about-section {
  padding: 60px 0;
}

.about-content {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

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

.values-list {
  list-style: disc;
  padding-left: 20px;
}

.values-list li {
  margin-bottom: 10px;
}

.about-image {
  flex: 1;
  text-align: center;
}

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

.team-section {
  padding: 60px 0;
  background-color: var(--background-alt);
}

.team-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

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

.team-member:hover {
  transform: translateY(-5px);
}

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

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

.member-info {
  padding: 20px;
}

.member-info h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.member-position {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
}

.member-contact {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.member-contact i {
  color: var(--primary-color);
  margin-right: 10px;
}

.achievements-section {
  padding: 60px 0;
}

.achievements-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2rem;
}

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

.achievement-card {
  display: flex;
  align-items: center;
  background-color: var(--background-alt);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--box_shadow);
}

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

.achievement-content h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

.contact-content {
  margin-bottom: 60px;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--background-alt);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box_shadow);
  margin-bottom: 40px;
}

.location-map {
  height: 300px;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.location-details {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.regional-offices h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

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

.office-card {
  background-color: var(--background-alt);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--box_shadow);
}

.office-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.office-card p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.office-card i {
  margin-right: 10px;
  color: var(--primary-color);
}

.contact-form-section {
  padding: 60px 0;
  background-color: var(--background-alt);
}

.contact-form-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2rem;
}

.form-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.full-width {
  grid-column: span 2;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-message {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
  display: block;
}

.form-message.error {
  background-color: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
  display: block;
}

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

.modal-content {
  background-color: var(--background-color);
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-product {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-product-image {
  text-align: center;
}

.modal-product-image img {
  max-height: 400px;
  border-radius: 8px;
}

.modal-product-info h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.modal-product-category {
  color: var(--text-light);
  margin-bottom: 15px;
}

.modal-product-description {
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .mission-content,
  .about-content {
    flex-direction: column;
  }

  .ceo-image,
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }

  .modal-content {
    width: 95%;
  }
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--background-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

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

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

  .location-details {
    grid-template-columns: 1fr;
  }

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

  .full-width {
    grid-column: span 1;
  }

  .modal-product {
    flex-direction: column;
  }

  .hero-graphic {
    font-size: 8rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .logo-icon {
    font-size: 1.8rem;
    margin-right: 10px;
  }

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

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

  .hero p {
    font-size: 1.1rem;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .page-banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .logo-icon {
    font-size: 1.5rem;
    margin-right: 8px;
  }

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

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

  .hero-content {
    padding: 20px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .page-banner {
    padding: 60px 0;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }
}

/* After the existing CSS, add these animations and enhanced styles */

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Add a subtle background pattern to the body */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a7c59' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.6;
}

/* Enhanced Navigation */
.nav-menu a {
  position: relative;
  overflow: hidden;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
  left: 0;
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease-out;
}

.hero h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Enhanced Mission Section */
.mission-content {
  position: relative;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.mission-text {
  animation: slideInLeft 1s ease-out;
}

.ceo-image {
  animation: slideInRight 1s ease-out;
}

.ceo-image img {
  transition: transform 0.5s ease;
  border: 5px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ceo-image:hover img {
  transform: scale(1.02);
}

/* Enhanced Product Cards */
.product-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

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

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.product-info {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
  transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
  color: var(--primary-color);
}

.product-category {
  display: inline-block;
  background-color: rgba(74, 124, 89, 0.1);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.product-description {
  line-height: 1.6;
  color: var(--text-color);
}

/* Enhanced Company Highlights */
.highlight-card {
  position: relative;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: -1;
}

.highlight-card i {
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

.highlight-card:hover i {
  color: var(--accent-color);
  transform: scale(1.2);
}

.highlight-card h3 {
  position: relative;
  display: inline-block;
}

.highlight-card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-light);
  transition: width 0.3s ease;
}

.highlight-card:hover h3::after {
  width: 100%;
}

/* Enhanced Modal */
.modal-content {
  animation: fadeIn 0.4s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
}

.modal-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.modal-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-product-image img {
  transition: transform 0.6s ease;
  transform-origin: center;
}

.modal-product-image:hover img {
  transform: scale(1.03);
}

.modal-product-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.modal-product-category {
  display: inline-block;
  background-color: rgba(74, 124, 89, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.modal-product-description {
  line-height: 1.8;
  color: var(--text-color);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-light);
}

.close-modal {
  transition: all 0.3s ease;
  opacity: 0.6;
}

.close-modal:hover {
  transform: rotate(90deg);
  opacity: 1;
}

/* Enhanced Footer */
.footer-content {
  position: relative;
}

.footer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

.social-icons a {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
  transform: translateY(-5px) rotate(10deg);
}

/* Media Queries Adjustments */
@media (max-width: 992px) {
  .modal-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-card:hover {
    transform: translateY(-5px);
  }
}

/* Add these styles for enhanced section headers */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 700;
}

.section-header-line {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 0 auto 20px;
}

.section-subheading {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Add this for the featured products and company highlights sections */
.featured-products,
.company-highlights {
  position: relative;
  overflow: hidden;
}

.featured-products::before,
.company-highlights::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: -150px;
  left: -150px;
  z-index: -1;
}

.featured-products::after,
.company-highlights::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 180, 148, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -100px;
  right: -100px;
  z-index: -1;
}

/* Enhanced call-to-action button */
.center-btn {
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.center-btn .btn {
  position: relative;
  z-index: 2;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.center-btn .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.center-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.3));
  top: 50%;
  left: calc(50% - 150px);
  transform: translateY(-50%);
}

.center-btn::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 124, 89, 0.3), transparent);
  top: 50%;
  right: calc(50% - 150px);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .center-btn::before,
  .center-btn::after {
    width: 60px;
    left: calc(50% - 110px);
    right: calc(50% - 110px);
  }
}

