
.container{
    max-width: 1400px;
}
/* FAQ's Section */
.faq-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1e293b;
  position: relative;
}

.faq-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.why-choose-us-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop */
  gap: 20px;
}


@media (max-width: 1050px) {
  .why-choose-us-section {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 640px) {
  .why-choose-us-section {
    grid-template-columns: 1fr;
  }
}


.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  letter-spacing: -0.5px;
}

.faq-section .section-title i {
  color: #3a57a1;
  font-size: 2.5rem;
}

.faq-section .section-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: #ffffff;
  border-color: #3a57a1;
  color: #3a57a1;
  transform: translateY(-2px);
}
.category-btn.farming-category-btn:hover {
  background: #ffffff;
  border-color: #428533;
  color: #428533;
  transform: translateY(-2px);
}

.category-btn.active {
  background: linear-gradient(135deg, #3a57a1, #667eea);
  color: white;
  border-color: #3a57a1;
  box-shadow: 0 8px 20px rgba(58, 87, 161, 0.2);
}
.category-btn.farming-category-btn.active {
        background: #428533;
    color: white;
    border-color: rgba(34, 197, 94, 0.3);
}

.category-btn i {
  font-size: 1.1rem;
}

.faq-accordion {
  margin-bottom: 4rem;
}

.faq-group {
  margin-bottom: 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  display: none;
  opacity: 0;
   transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  
}
.faq-group {
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.faq-group:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.group-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3a57a1, #667eea);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.faq-group[data-category="farming"] .group-icon {
  background: #428533;
}

.faq-group[data-category="general"] .group-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.group-title {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.group-count {
  background: #e2e8f0;
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-items {
  padding: 0.5rem;
}

.faq-item {
  margin: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #3a57a1;
  box-shadow: 0 5px 15px rgba(58, 87, 161, 0.1);
}
.farming-section-faq .faq-item.active {
  border-color: #428533 !important;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.1) ;
 
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.question-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.question-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a57a1;
  background: rgba(58, 87, 161, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.farming-section-faq .question-number {
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.1) !important;
  color: #428533 !important;
  border-color: rgba(34, 197, 94, 0.2) !important;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  flex: 1;
}

.question-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item.active .question-toggle {
  background: #3a57a1;
  color: white;
  transform: rotate(45deg);
}
.farming-section-faq .faq-item.active .question-toggle {
  background: #428533;;
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-answer ol,
.faq-answer ul {
  color: #475569;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer strong {
  color: #1e293b;
}

.answer-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  background: rgba(58, 87, 161, 0.1);
  color: #3a57a1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.farming-section-faq .tag  {
 

   background: rgba(34, 197, 94, 0.1) !important;
   color: #428533 !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 640px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.payment-method i {
  color: #3a57a1;
  font-size: 1.25rem;
  width: 24px;
}

.payment-method span {
  font-weight: 500;
  color: #475569;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 640px) {
  .product-categories {
    grid-template-columns: 1fr;
  }
}

.product-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.product-category i {
  color: #22c55e;
  font-size: 1.25rem;
  width: 24px;
}

.product-category span {
  font-weight: 500;
  color: #475569;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 640px) {
  .support-channels {
    grid-template-columns: 1fr;
  }
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.channel i {
  color: #3a57a1;
  font-size: 1.25rem;
  width: 24px;
}

.channel div {
  flex: 1;
}

.channel strong {
  color: #1e293b;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    /* flex-direction: column; */
    gap: 0.5rem;
  }

  .section-title i {
    font-size: 2rem;
  }

  .search-container {
    flex-direction: column;
    padding: 1rem;
  }

  .search-input {
    width: 100%;
    margin-bottom: 1rem;
  }

  .search-button {
    width: 100%;
  }

  .faq-categories {
    gap: 1rem;
  }

  .category-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .group-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .faq-bottom-cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .faq-question {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 1rem;
  }

  .question-text {
    width: 100%;
  }

  .question-toggle {
    align-self: flex-end;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

.faq-group {
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* who is it for  */
.audience-section {
  padding: 4rem 0 0 0;
  /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
  color: #1e293b;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  /* margin-bottom: 4rem; */
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  /* color: #0f172a; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  letter-spacing: -0.5px;
}

.title-icon {
  font-size: 2.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.section-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.platforms-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

@media (max-width: 992px) {
  .platforms-overview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.platform-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem ;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.platform-header {
  text-align: center;
  margin-bottom: 2rem;
}

.platform-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3a57a1, #667eea);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 10px 20px rgba(58, 87, 161, 0.2);
}

.farming-platform .platform-icon {
  background: #428533;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.platform-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.platform-tagline {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.platform-description {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.platform-description p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Audience List */
.audience-list {
  margin-bottom: 2.5rem;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.audience-item:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.audience-icon {
  width: 50px;
  height: 50px;
  background: rgba(58, 87, 161, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a57a1;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.farming-platform .audience-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #428533;;
}

.audience-content {
  flex: 1;
}

.audience-content h4 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.audience-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.audience-count {
  background: #3a57a1;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 70px;
  text-align: center;
}

.farming-platform .audience-count {
  background: #22c55e;
}

/* CTA Buttons */
.platform-cta {
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.medical-cta {
  background: linear-gradient(135deg, #3a57a1, #667eea);
  color: white;
  box-shadow: 0 10px 25px rgba(58, 87, 161, 0.2);
}

.medical-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 87, 161, 0.3);
}

.farming-cta {
  background: #428533;
  color: white;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.farming-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.cta-button i {
  font-size: 1.1rem;
}

/* Identification Tool */
.identification-tool {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.tool-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tool-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.tool-header h3 i {
  color: #3a57a1;
}

.tool-header p {
  color: #64748b;
  font-size: 1.05rem;
  margin: 0;
}

/* Quiz Container */
.quiz-container {
  max-width: 600px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-step h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-options {
  display: grid;
  gap: 1rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.quiz-option:hover {
  background: #ffffff;
  border-color: #3a57a1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.quiz-option i {
  color: #3a57a1;
  font-size: 1.25rem;
  width: 24px;
}

.quiz-option span {
  flex: 1;
}

/* Quiz Result */
.quiz-result {
  display: none;
  animation: fadeIn 0.5s ease;
}

.quiz-result.show {
  display: block;
}

.result-content {
  text-align: center;
  padding: 2rem;
}

.result-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  font-size: 2rem;
}

.result-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.result-text {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.platform-recommendation {
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.recommendation-icon {
  width: 60px;
  height: 60px;
  background: #3a57a1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
}

.platform-recommendation h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.platform-recommendation p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

.result-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3a57a1, #667eea);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.result-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 87, 161, 0.3);
}

/* Stats Section */
.stats-section {
  margin-top: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #3a57a1;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(58, 87, 161, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a57a1;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #3a57a1, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    /* flex-direction: column; */
    gap: 0.5rem;
  }

  .title-icon {
    font-size: 2rem;
  }

  .platform-card {
    padding: 2rem;
  }

  .identification-tool {
    padding: 2rem;
  }

  .audience-icon {
    margin: 0 auto 1rem auto;
  }

  .audience-count {
    margin-top: 0.5rem;
    order: 3;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .platform-name {
    font-size: 1.5rem;
  }

  .quiz-option {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .quiz-option i {
    margin-bottom: 0.5rem;
  }

  .stats-section {
    margin-top: 3rem;
  }
}

@media (max-width: 498px) {
  .audience-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* useful css */
.medical-pharma .app-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 0.8rem 1.5rem; */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #475569;
  border-radius: 10px;
  /* color: #e2e8f0; */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.medical-pharma .app-button:hover {
  /* background: #1c2359;
  color: white;
  border-color: #3a57a1; */
    background: none !important;
  border: none !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.medical-pharma .app-button i {
  font-size: 1.25rem;
}

.farming-app .app-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 0.8rem 1.5rem; */

  border-radius: 10px;
  color: #3aa14fff;
  border: 2px solid #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  
}

.farming-app .app-button:hover {
  /* background-color: #3aa14fff;
  border-color: #3aa14fff;
  color: white; */
  background: none !important;
  border: none !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.farming-app .app-button i {
  font-size: 1.25rem;
}

/* app tabs section css */
.app-showcase-section.light-mode {
  padding: 6rem 0 0 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.container {
 max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  /* margin-bottom: 4rem; */
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  /* color: #0f172a; */
  letter-spacing: -0.5px;
}

.section-title .highlight {
  color: #428533;
  position: relative;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.app-tabs {
  /* background: #ffffff; */
  border-radius: 24px;
  padding: 2.5rem;
  /* border: 1px solid #e2e8f0; */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
  margin-bottom: 3rem;
}

.tabs-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0.5rem;
  /* background: #f1f5f9; */
  border-radius: 16px;
  position: relative;
  /* overflow: hidden; */
  width: fit-content;
  margin: 0 auto 3rem auto;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tab-btn:hover {
  color: #475569;
  background: rgba(255, 255, 255, 0.5);
}


.tab-btn.medical-pharma-tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #3a57a1, #667eea);
  box-shadow: 0 8px 20px rgba(58, 87, 161, 0.2);
}


.tab-btn.farming-tab-btn.active {
  background: #428533;
  color: white;
  border-color: rgba(34, 197, 94, 0.3);
}


.tab-btn i {
  font-size: 1.1rem;
}

/* .tab-indicator {
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #3a57a1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .tab-btn.active .tab-indicator {
        opacity: 1;
    } */

/* Tab Content */
.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .tab-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.app-image-container {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1); */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.image-frame:hover {
  transform: translateY(-10px);
}

.app-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.medical-app-image {
  border-bottom: 4px solid #3a57a1;
}

/* .farming-app-image {
  border-bottom: 4px solid #22c55e;
} */

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
  height: 350px;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.phone-mockup-overlay {
  width: 100%;
  height: 100%;
  background: #1a202c;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.phone-screen-overlay {
  width: 100%;
  height: 100%;
  position: relative;
}

.screen-image {
  /* width: 350px; */
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a57a1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(58, 87, 161, 0.2);
}
#farming-tab .image-badge{
  color: #428533 !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(82, 161, 58, 0.2) !important;

}

.image-caption {
  margin-top: 4rem;
  text-align: center;
}

.image-caption p {
  color: #64748b;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

/* .app-info {
  padding-left: 1rem;
} */

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.medical-badge {
  background: rgba(58, 87, 161, 0.1);
  color: #3a57a1;
  border-color: rgba(58, 87, 161, 0.2);
}

.farming-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #428533;;
  border-color: rgba(34, 197, 94, 0.2);
}

.app-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #3a57a1;
  line-height: 1.2;
}

.farming-wrapper .app-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #428533;;
  line-height: 1.2;
}

.app-description {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-right: 1rem;
}



.feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: #ffffff;
  border-color: #e2e8f0;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(58, 87, 161, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a57a1;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.farming-wrapper .feature-icon {
  background: rgba(34, 197, 94, 0.1) !important;
  color: #428533 !important;
  border-color: rgba(34, 197, 94, 0.2) !important;
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.feature-text p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* App Stats */
.app-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #3a57a1;
  margin-bottom: 0.25rem;
}

.farming-wrapper .stat-number {
  color: #428533;;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* CTA Buttons */
.app-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
 
}
.medical-pharma{
    margin-top:30px;
}

.medical-cta {
  background: linear-gradient(135deg, #3a57a1, #667eea);
  color: white;
  box-shadow: 0 10px 25px rgba(58, 87, 161, 0.2);
  
}

.medical-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 87, 161, 0.3);
  color: white;
}

.farming-cta {
  background: linear-gradient(135deg, #428533, #22c55e);
  color: white;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.farming-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
  color: white;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: #475569;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.farming-wrapper .cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: #4e6947ff;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.cta-outline:hover {
  border-color: #3a57a1;
  color: #3a57a1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.farming-wrapper .cta-outline:hover {
  border-color: #3aa14fff;
  color: #3aa13dff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.cta-button i,
.cta-outline i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }

  .app-tabs {
    padding: 1.5rem;
  }

  .tabs-header {
    width: 100%;
    justify-content: center;
  }

  .tab-btn {
    padding: 12px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
  }

  .app-image {
    height: 300px;
  }

  .image-overlay {
    width: 120px;
    height: 230px;
    top: 15px;
    right: 15px;
  }

  .app-title {
    font-size: 1.75rem;
  }

  .app-cta {
    flex-direction: column;
    width: 100%;
  }

  .cta-button,
  .cta-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 1rem;
  }

  .app-image {
    height: 250px;
  }

  .image-overlay {
    width: 100px;
    height: 190px;
    top: 10px;
    right: 10px;
  }

  .app-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}

@media (max-width:420px){
     .tab-btn {
    padding: 8px;
    font-size: 13px;
    font-weight: 400;
    white-space: wrap;
  }

    .section-title {
        font-size: 23px;
        white-space: nowrap;
    }
}
