/* Background with soft gradient */
.quality-policy {
  background: linear-gradient(135deg, #e9f9f2, #d7ecff);
}

/* Text box */
.quality-text {
  background: #fff;
  border-left: 6px solid #2c86b8;
}

/* List with nice icons */
.quality-text ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

/* Image hover zoom */
.img-wrapper {
  border-radius: 15px;
}
.zoom-effect {
  transition: transform 0.4s ease;
}
.zoom-effect:hover {
  transform: scale(1.05);
}

.about-section {
  background: #f0fdf4; /* soft green */
  border-radius: 20px;
  padding: 60px 20px;
}

.contact-h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.text-green {
  color: #28a745; /* pharma green */
}

.text-blue {
  color: #0077b6; /* pharma blue */
}

.about-img-container img {
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img-container img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.about-section {
  background: #f9fcff; /* light pharma blue background */
  border-radius: 25px;
  padding: 60px 20px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 15px;
  background: #fff;
  border-left: 4px solid #2c86b8; /* blue accent bar */
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-section p:hover {
  transform: translateY(-5px);
}

.about-img {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.faq-icon {
  color: #006f97;
  font-size: 1.1rem;
}

.faq-toggle-icon::before {
  content: "+";
  font-size: 1.2rem;
  margin-left: auto;
}
.accordion-button:not(.collapsed) .faq-toggle-icon::before {
  content: "-";
}

/* FAQ Section Styling */
.faq-section {
  background: #f9fbfc;
}
.faq-card {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  color: #333;
  border: none;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: #006f97;
  color: #fff;
}
.accordion-button:not(.collapsed) .faq-icon {
  color: #fff !important;
}
.accordion-body {
  background: #fff;
  padding: 15px 20px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
.faq-icon {
  color: #006f97;
  font-size: 1.2rem;
}
.faq-toggle-icon::before {
  content: "+";
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 8px;
}
.accordion-button:not(.collapsed) .faq-toggle-icon::before {
  content: "-";
}

.timeline {
  position: relative;
  margin: 20px 0;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #dcdcdc;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  background: #4a90e2;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

.timeline-item p {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  max-width: 90%;
}

.process-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin: 40px 0;
}

.process-step {
  flex: 1 1 20%;
  text-align: center;
  position: relative;
  padding: 20px 15px;
  min-width: 200px;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  height: 4px;
  width: 100%;
  background: #ccc;
  z-index: -1;
  transform: translateX(-50%);
}

.process-step:first-child::before {
  display: none;
}

.process-icon {
  width: 50px;
  height: 50px;
  background: #4a90e2;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-step p {
  font-size: 14px;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}