/* Contract Manufacturing Page Styles */

#Company {
  background: #fff;
}

#cmpny-top {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, #56770e 0%, #7ba428 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

#cmpny-top-txt {
  flex: 1;
  text-align: left;
}

#cmpny-top h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#cmpny-top h1 {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}

#cmpny-top-img {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cmpny-top-img img {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#cmpny-top-img img:hover {
  transform: translateY(-5px);
}

#since {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: -5px;
  color: rgba(255, 255, 255, 0.8);
}

#s2007 {
  display: block;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

/* Company Text Section */
#company-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background: white;
}

#company-text > p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

#Business-pholosophy,
#manufacturing-capabilities {
  margin-top: 60px;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid #56770e;
}

#Business-pholosophy h2,
#manufacturing-capabilities h2 {
  color: #56770e;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}

#Business-pholosophy p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #555;
  font-size: 1rem;
}

#Business-pholosophy p i {
  color: #56770e;
  margin-right: 12px;
  font-size: 1rem;
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

#manufacturing-capabilities p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Our Team Section */
#Our-team {
  background: linear-gradient(
      135deg,
      rgba(86, 119, 14, 0.9),
      rgba(123, 164, 40, 0.9)
    ),
    url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3")
      center/cover;
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
}

#Our-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(86, 119, 14, 0.8);
}

#Our-team-text {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

#Our-team-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#Our-team-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Manufacturing Choose Us Section */
#manufacturing-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

#manufacturing,
#choose-us {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

#manufacturing h2,
#choose-us h2 {
  color: #56770e;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

#manufacturing h2 i,
#choose-us h2 i {
  margin-right: 15px;
  font-size: 1.5rem;
}

#manufacturing p,
#choose-us > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Accordion Styles */
.accordion-cnt {
  margin-top: 30px;
}

.accordion {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: #56770e;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.accordion.active {
  background: #56770e;
  color: white;
}

.accordion::after {
  content: "\002B";
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion.active::after {
  content: "\2212";
  transform: rotate(180deg);
}

.panel {
  padding: 0 20px;
  background: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-left: 3px solid #56770e;
  margin-bottom: 10px;
}

.panel.active {
  max-height: 200px;
  padding: 20px;
}

.panel p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  #cmpny-top {
    padding: 40px 5% 30px;
  }

  #cmpny-top h1 {
    font-size: 2.2rem;
  }

  #cmpny-top h2 {
    font-size: 1.1rem;
  }

  #cmpny-top-img img {
    width: 250px;
    height: 250px;
  }

  #since {
    font-size: 1.2rem;
  }

  #s2007 {
    font-size: 2.5rem;
  }

  #company-text {
    margin-top: -20px;
    padding: 40px 15px;
  }

  #manufacturing-choose-us {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px auto;
  }

  #manufacturing,
  #choose-us {
    padding: 30px 20px;
  }

  #Our-team {
    padding: 60px 0;
  }

  #Our-team-text h2 {
    font-size: 2rem;
  }

  #Our-team-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #cmpny-top h1 {
    font-size: 1.8rem;
  }

  #cmpny-top h2 {
    font-size: 1rem;
  }

  #cmpny-top-img img {
    width: 200px;
    height: 200px;
  }

  #company-text {
    padding: 30px 15px;
  }

  #Business-pholosophy h2,
  #manufacturing-capabilities h2 {
    font-size: 1.5rem;
  }

  #manufacturing h2,
  #choose-us h2 {
    font-size: 1.4rem;
  }
}

/* Respon
sive Design */
@media (max-width: 768px) {
  #cmpny-top {
    flex-direction: column;
    text-align: center;
    padding: 60px 5% 40px;
    gap: 40px;
  }

  #cmpny-top-txt {
    text-align: center;
  }

  #cmpny-top h1 {
    font-size: 2.2rem;
  }

  #cmpny-top h2 {
    font-size: 1.1rem;
  }

  #cmpny-top-img {
    flex: none;
  }

  #cmpny-top-img img {
    width: 250px;
    height: 250px;
  }

  #since {
    font-size: 1rem;
  }

  #s2007 {
    font-size: 2rem;
  }

  #company-text {
    padding: 60px 15px;
  }

  #Business-pholosophy,
  #manufacturing-capabilities {
    padding: 30px 20px;
    margin-top: 40px;
  }

  #manufacturing-choose-us {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px auto;
  }

  #manufacturing,
  #choose-us {
    padding: 30px 20px;
  }

  #Our-team {
    padding: 60px 0;
  }

  #Our-team-text h2 {
    font-size: 2rem;
  }

  #Our-team-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #cmpny-top {
    padding: 40px 5% 30px;
  }

  #cmpny-top h1 {
    font-size: 1.8rem;
  }

  #cmpny-top h2 {
    font-size: 1rem;
  }

  #cmpny-top-img img {
    width: 200px;
    height: 200px;
  }

  #company-text {
    padding: 40px 15px;
  }

  #Business-pholosophy,
  #manufacturing-capabilities {
    padding: 25px 15px;
  }

  #Business-pholosophy h2,
  #manufacturing-capabilities h2 {
    font-size: 1.5rem;
  }

  #manufacturing h2,
  #choose-us h2 {
    font-size: 1.4rem;
  }
}
