/* Base Styles */
:root {
  --primary-color: #2e7d32; /* Dark green */
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary-color: #ff9800;
  --dark-color: #263238;
  --light-color: #f5f5f5;
  --text-color: #333;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  padding-top: 80px; /* Space for fixed header */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 25px;
  position: relative;
}

.navbar ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.navbar ul li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.navbar ul li a:hover:before,
.navbar ul li a.active:before {
  width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--secondary-color);
}

/* Page Banner */
.page-banner {
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.page-banner h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--light-color);
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Company */
.about-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-company-content {
  padding-right: 30px;
}

.about-company-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.about-company-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-company-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.about-company-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-company-image:hover img {
  transform: scale(1.05);
}

.mission-vision {
  margin-top: 30px;
}

.mission, .vision {
  background-color: var(--white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.mission:hover, .vision:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mission h3, .vision h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 20px;
}

.mission i, .vision i {
  margin-right: 10px;
  font-size: 24px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.footer-about {
  margin-bottom: 20px;
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social 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: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #aaa;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.newsletter {
  margin-top: 20px;
}

.newsletter h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--white);
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 0 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-light);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #444;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-company {
    grid-template-columns: 1fr;
  }
  
  .about-company-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .navbar {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--primary-dark);
    transition: var(--transition);
    padding: 20px;
    z-index: 999;
  }
  
  .navbar.active {
    left: 0;
  }
  
  .navbar ul {
    flex-direction: column;
  }
  
  .navbar ul li {
    margin: 15px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-cta {
    display: inline-block !important;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 32px;
  }
  
  .page-banner p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .mission, .vision {
    padding: 20px;
  }
  
  .cta-content h2 {
    font-size: 30px;
  }
  
  .cta-content p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
  
  .header {
    padding: 10px 0;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .logo-text {
    font-size: 12px;
  }
  
  .page-banner {
    height: 250px;
    margin-bottom: 40px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .value-card {
    padding: 20px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}