/* Feature Cards Styles */
.feature-card {
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    cursor: pointer;
    background: #28a74569;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Colors */
.bg-mint {
    background-color: #d1f2e6;
}

.bg-sand {
    background-color: #ffefd5;
}

.bg-lime {
    background-color: #e6f5d0;
}

.bg-lavender {
    background-color: #f5e6ff;
}

.healthFeedSec {
  background: linear-gradient(135deg, #f4f8f9 0%, #eaf3f3 100%);
}

.healthFeedSec-subheading {
  color: var(--lime-green);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.healthFeedSec-heading {
  color: var(--dark-green);
  font-weight: 700;
  font-size: 30px;
}

.healthFeedSec-text {
  color: #555;
  max-width: 600px;
  margin: 10px auto 40px;
}

/* Blog Card */
.healthFeedSec-blogCard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.healthFeedSec-blogCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.healthFeedSec-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.healthFeedSec-blogCard:hover .healthFeedSec-img img {
  transform: scale(1.08);
}

.healthFeedSec-content {
  padding: 20px;
}

.healthFeedSec-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.healthFeedSec-meta span{
color: #888;
  font-size: 12px;
}
.healthFeedSec-content h5 {
  color: var(--midnight-blue);
  font-weight: 600;
  font-size: var(--font-size-16);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.healthFeedSec-content p {
  color: var(--gray-darker);
  font-size: var(--font-size-14);
  line-height: 1.6;
  margin-bottom: 15px;
}

.healthFeedSec-btn {
  color: var(--lime-green);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.healthFeedSec-btn:hover {
  color: var(--dark-green);
}

@media (max-width: 767px) {
  .healthFeedSec-heading {
    font-size: 24px;
  }
}

/*---- healthFeedSec end ------*/

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C7744 100%);
  color: var(--white);
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-subheading {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cta-section .cta-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section .cta-description {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.cta-section .cta-button {
  display: inline-block;
  background-color: var(--lime-green);
  color: var(--midnight-blue);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cta-section .cta-button:hover {
  background-color: var(--golden-sun);
  color: var(--midnight-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }
  .cta-section .cta-heading {
    font-size: 26px;
  }
  .cta-section .cta-description {
    font-size: 14px;
  }
  .cta-section .cta-button {
    font-size: 14px;
    padding: 12px 28px;
  }
}


/* ===== Section Base ===== */
.consultation-workflow {
  background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C7744 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.workflow-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.workflow-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

/* ===== Workflow Steps ===== */
.workflow-container {
  display: flex;
  align-items: center;
  justify-content:space-between;
  flex-wrap: wrap;
  position: relative;
  gap: 24px;
}
@media (min-width:992px) {
    .workflow-container {
        gap: 16px;
    }
}
@media (min-width:1200px) {
    .workflow-container {
        gap: 24px;
    }
}
.workflow-step {
  background: var(--white);
  color: var(--gray-darker);
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  text-align: center;
  box-shadow: var(--box-shadow);
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
}
@media (min-width:768px) {
    .workflow-step{
        width: 40%;
    }
}
@media (min-width:992px) {
    .workflow-step{
        width: 20%;
    }
}

.workflow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Icon Circle */
.workflow-icon {
  background: linear-gradient(135deg, #6FD600 0%, #F4D279 100%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--midnight-blue);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.workflow-step h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.workflow-step p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* ===== Workflow Arrows ===== */
.workflow-arrow {
  color: var(--white);
  font-size: 28px;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}
@media (max-width:768px) {
    .workflow-arrow{
        width: 100%;
        text-align: center;
    }
}
.workflow-arrow i {
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ===== Responsive Layout ===== */
@media (max-width: 992px) {
  .workflow-arrow i {
    transform: rotate(90deg);
  }
}


.askQuestionSec {
  background: linear-gradient(135deg, #f5f9f6 0%, #ffffff 100%);
}

.askQuestionSec h2 {
  color: #1a1a1a;
  font-size: 2rem;
}

.askQuestionSec-accordion .accordion-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.askQuestionSec-accordion .accordion-button {
  background: #fff;
  color: #1a1a1a;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

.askQuestionSec-accordion .accordion-button:hover {
  background: #f0fdf4;
  color: #198754;
}

.askQuestionSec-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #52c234, #06b23e);
  color: #fff;
}

.askQuestionSec-accordion .accordion-button:focus {
  box-shadow: none;
}

.askQuestionSec-accordion .accordion-body {
  background: #fff;
  color: #444;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
}

.askQuestionSec .btn-success {
  background: linear-gradient(135deg, #52c234, #06b23e);
  border: none;
  font-weight: 600;
  box-shadow: rgba(16, 75, 31, 0.2) 0px 6px 12px;
}

.askQuestionSec .btn-success:hover {
  background: linear-gradient(135deg, #06b23e, #52c234);
}



.testimonials-sec {
  background: linear-gradient(135deg, #f4f9f6 0%, #ffffff 100%);
}

.testimonials-sec h2 {
  font-size: 2rem;
  color: #1b1b1b;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px;
}

.testimonial-img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 4px solid #06b23e;
  box-shadow: rgba(16, 75, 31, 0.2) 0px 4px 8px;
}

.testimonials-sec .stars {
  letter-spacing: 3px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #06b23e;
  transition: 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #52c234;
}

@media (max-width: 767px) {
  .testimonial-card {
    margin: 0 10px;
  }

  .testimonials-sec h2 {
    font-size: 1.6rem;
  }
}