/* ===================================
   Income Tax Consultant & Tax Lawyer CSS
   Version: 20260121_FINAL
   =================================== */

/* ============= CONTENT WRAPPER ============= */
.income-tax-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  font-family: 'Open Sans', sans-serif;
  color: #2c3e50;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper {
    padding: 0 1.5rem 2rem;
  }
}

/* ============= INTRO SECTION ============= */
.income-tax-content-wrapper .intro-section {
  text-align: center;
  margin-bottom: 3rem;
}

.income-tax-content-wrapper .intro-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: center;
}

.income-tax-content-wrapper .intro-section p {
  font-size: 1.1rem;
  color: #34495e;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .intro-section h2 {
    font-size: 1.6rem;
  }

  .income-tax-content-wrapper .intro-section p {
    font-size: 1rem;
  }
}

/* ============= SERVICES NAVIGATOR ============= */
.income-tax-content-wrapper .services-navigator-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .services-navigator-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .services-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.income-tax-content-wrapper .service-nav-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #3498db;
  position: relative;
  overflow: hidden;
}

.income-tax-content-wrapper .service-nav-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
  opacity: 0;
}

.income-tax-content-wrapper .service-nav-card:hover::before {
  opacity: 1;
  top: -25%;
  right: -25%;
}

.income-tax-content-wrapper .service-nav-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.25);
  border-top-color: #2980b9;
}

.income-tax-content-wrapper .service-nav-card .nav-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .service-nav-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .service-nav-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .service-nav-card li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  font-size: 0.95rem;
  color: #555;
  position: relative;
  line-height: 1.6;
}

.income-tax-content-wrapper .service-nav-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.income-tax-content-wrapper .service-nav-card .nav-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .service-nav-card .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .services-nav-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============= WHO WE SERVE SECTION ============= */
.income-tax-content-wrapper .who-we-serve-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .who-we-serve-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .client-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.income-tax-content-wrapper .client-type-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.income-tax-content-wrapper .client-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
  border-left-color: #2980b9;
}

.income-tax-content-wrapper .client-type-card .client-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.income-tax-content-wrapper .client-type-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 0 0 1rem 0;
}

.income-tax-content-wrapper .client-type-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.income-tax-content-wrapper .client-type-card li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.income-tax-content-wrapper .client-type-card .client-cta {
  display: inline-block;
  margin-top: 1rem;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.income-tax-content-wrapper .client-type-card .client-cta:hover {
  color: #2980b9;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .client-type-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============= WHY CHOOSE SECTION ============= */
.income-tax-content-wrapper .why-choose-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .why-choose-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.income-tax-content-wrapper .why-choose-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.income-tax-content-wrapper .why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
  border-color: #3498db;
}

.income-tax-content-wrapper .why-choose-card .icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1rem;
  display: block;
}

.income-tax-content-wrapper .why-choose-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.income-tax-content-wrapper .why-choose-card p {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
}

/* ============= ITR FORMS TABLE ============= */
.income-tax-content-wrapper .itr-forms-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .itr-forms-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .itr-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.income-tax-content-wrapper .itr-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.income-tax-content-wrapper .itr-table thead {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
}

.income-tax-content-wrapper .itr-table th {
  padding: 1.2rem 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid #2980b9;
}

.income-tax-content-wrapper .itr-table td {
  padding: 1rem;
  border-bottom: 1px solid #ecf0f1;
  color: #2c3e50;
  font-size: 0.95rem;
}

.income-tax-content-wrapper .itr-table tbody tr:hover {
  background: #f8f9fa;
}

.income-tax-content-wrapper .itr-table tbody tr:last-child td {
  border-bottom: none;
}

.income-tax-content-wrapper .itr-table .highlight {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  font-weight: 600;
  color: #1e8449;
}

.income-tax-content-wrapper .itr-table .price-cell {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #27ae60;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .itr-table {
    font-size: 0.85rem;
  }

  .income-tax-content-wrapper .itr-table th,
  .income-tax-content-wrapper .itr-table td {
    padding: 0.8rem 0.6rem;
  }
}

/* ============= SERVICES GRID ============= */
.income-tax-content-wrapper .all-services-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .all-services-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.income-tax-content-wrapper .service-item-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.income-tax-content-wrapper .service-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3498db 0%, #2980b9 100%);
}

.income-tax-content-wrapper .service-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.income-tax-content-wrapper .service-item-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.income-tax-content-wrapper .service-item-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.income-tax-content-wrapper .service-item-card p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .all-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= PROCESS SECTION ============= */
.income-tax-content-wrapper .process-section {
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2.5rem;
  border-radius: 12px;
}

.income-tax-content-wrapper .process-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.income-tax-content-wrapper .process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.income-tax-content-wrapper .process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.income-tax-content-wrapper .process-step:last-child {
  margin-bottom: 0;
}

.income-tax-content-wrapper .process-step::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 80px;
  width: 2px;
  height: calc(100% + 20px);
  background: linear-gradient(180deg, #3498db 0%, #2980b9 100%);
}

.income-tax-content-wrapper .process-step:last-child::before {
  display: none;
}

.income-tax-content-wrapper .step-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .step-content {
  flex: 1;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.income-tax-content-wrapper .step-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 0 0 0.75rem 0;
}

.income-tax-content-wrapper .step-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.income-tax-content-wrapper .process-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #dee2e6;
}

.income-tax-content-wrapper .stat-box {
  text-align: center;
}

.income-tax-content-wrapper .stat-box .stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #3498db;
  display: block;
  margin-bottom: 0.5rem;
}

.income-tax-content-wrapper .stat-box .stat-label {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .process-section {
    padding: 2rem 1.5rem;
  }

  .income-tax-content-wrapper .process-step {
    gap: 1rem;
  }

  .income-tax-content-wrapper .process-step::before {
    left: 27px;
  }

  .income-tax-content-wrapper .step-number {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }

  .income-tax-content-wrapper .process-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============= PRICING SECTION ============= */
.income-tax-content-wrapper .pricing-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .pricing-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.income-tax-content-wrapper .pricing-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #3498db;
  position: relative;
}

.income-tax-content-wrapper .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.25);
}

.income-tax-content-wrapper .pricing-card.featured {
  border-top-color: #27ae60;
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}

.income-tax-content-wrapper .pricing-card .plan-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.income-tax-content-wrapper .pricing-card .plan-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 0.5rem;
}

.income-tax-content-wrapper .pricing-card .plan-price .currency {
  font-size: 1.5rem;
}

.income-tax-content-wrapper .pricing-card .plan-price .period {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: 400;
}

.income-tax-content-wrapper .pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.income-tax-content-wrapper .pricing-card .plan-features li {
  padding: 0.75rem 0 0.75rem 2rem;
  font-size: 0.95rem;
  color: #555;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.income-tax-content-wrapper .pricing-card .plan-features li:last-child {
  border-bottom: none;
}

.income-tax-content-wrapper .pricing-card .plan-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
  font-size: 1.2rem;
}

.income-tax-content-wrapper .pricing-card .plan-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.income-tax-content-wrapper .pricing-card .plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.income-tax-content-wrapper .pricing-card.featured .plan-btn {
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.income-tax-content-wrapper .pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.05rem;
  color: #555;
}

.income-tax-content-wrapper .pricing-note a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
}

.income-tax-content-wrapper .pricing-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============= DOCUMENTS SECTION WITH TABS ============= */
.income-tax-content-wrapper .documents-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .documents-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .doc-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.income-tax-content-wrapper .doc-tab-btn {
  padding: 0.8rem 1.5rem;
  background: #ecf0f1;
  border: 2px solid #bdc3c7;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #7f8c8d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.income-tax-content-wrapper .doc-tab-btn:hover {
  background: #d5dbdb;
}

.income-tax-content-wrapper .doc-tab-btn.active {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  border-color: #2980b9;
}

.income-tax-content-wrapper .doc-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.income-tax-content-wrapper .doc-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.income-tax-content-wrapper .doc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.income-tax-content-wrapper .doc-item {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.income-tax-content-wrapper .doc-item:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 12px rgba(52, 152, 219, 0.15);
}

.income-tax-content-wrapper .doc-item .doc-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.income-tax-content-wrapper .doc-item .doc-name {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
  line-height: 1.5;
}

.income-tax-content-wrapper .doc-download-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
  text-align: center;
}

.income-tax-content-wrapper .doc-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* ============= RELATED SERVICES GRID ============= */
.income-tax-content-wrapper .related-services-section {
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 2.5rem;
  border-radius: 12px;
}

.income-tax-content-wrapper .related-services-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0f2027;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.income-tax-content-wrapper .related-service-card {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
  display: flex;
  flex-direction: column;
}

.income-tax-content-wrapper .related-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
  border-left-color: #2980b9;
}

.income-tax-content-wrapper .related-service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.income-tax-content-wrapper .related-service-card p {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}

.income-tax-content-wrapper .related-service-card .service-link {
  display: inline-block;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.income-tax-content-wrapper .related-service-card .service-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .related-services-section {
    padding: 2rem 1.5rem;
  }

  .income-tax-content-wrapper .related-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= TESTIMONIAL SECTION ============= */
.income-tax-content-wrapper .testimonial-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .testimonial-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.income-tax-content-wrapper .testimonial-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  text-align: center;
}

.income-tax-content-wrapper .testimonial-header p {
  font-size: 1.1rem;
  color: #555;
}

.income-tax-content-wrapper .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.income-tax-content-wrapper .testimonial-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.income-tax-content-wrapper .testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 15px;
  font-size: 100px;
  color: #3498db;
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}

.income-tax-content-wrapper .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.income-tax-content-wrapper .testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.income-tax-content-wrapper .testimonial-rating .stars {
  color: #ffc107;
  font-size: 1rem;
}

.income-tax-content-wrapper .testimonial-rating .rating-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #3498db;
  font-size: 1rem;
}

.income-tax-content-wrapper .testimonial-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.income-tax-content-wrapper .author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.income-tax-content-wrapper .author-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2c3e50;
  margin: 0 0 0.25rem 0;
}

.income-tax-content-wrapper .author-info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 0.25rem 0;
}

.income-tax-content-wrapper .verified-badge {
  font-size: 0.85rem;
  color: #11998e;
  font-weight: 600;
}

.income-tax-content-wrapper .testimonial-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #dee2e6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.income-tax-content-wrapper .stat-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  border-right: 2px solid #3498db;
  min-width: 0;
}

.income-tax-content-wrapper .stat-item:last-child {
  border-right: none;
}

.income-tax-content-wrapper .stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3498db;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.income-tax-content-wrapper .stat-label {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .testimonial-section {
    padding: 2rem 1.5rem;
  }

  .income-tax-content-wrapper .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .income-tax-content-wrapper .testimonial-stats {
    flex-wrap: wrap;
  }

  .income-tax-content-wrapper .stat-item {
    flex: 1 1 50%;
    border-right: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
    padding: 1.25rem;
  }

  .income-tax-content-wrapper .stat-item:nth-child(2n) {
    border-right: none;
  }

  .income-tax-content-wrapper .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .income-tax-content-wrapper .stat-number {
    font-size: 2rem;
  }
}

/* ============= FAQ SECTION ============= */
.income-tax-content-wrapper .faq-section {
  margin-bottom: 4rem;
}

.income-tax-content-wrapper .faq-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}

.income-tax-content-wrapper .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.income-tax-content-wrapper .faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.income-tax-content-wrapper .faq-accordion-item:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.income-tax-content-wrapper .faq-accordion-item.active {
  border-color: #3498db;
}

.income-tax-content-wrapper .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.income-tax-content-wrapper .faq-question:hover {
  background: #f9fafb;
}

.income-tax-content-wrapper .faq-accordion-item.active .faq-question {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.income-tax-content-wrapper .faq-question span:first-child {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #2c3e50;
  line-height: 1.5;
  flex: 1;
  padding-right: 1rem;
}

.income-tax-content-wrapper .faq-icon {
  font-size: 1.5rem;
  color: #3498db;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.income-tax-content-wrapper .faq-accordion-item.active .faq-icon {
  transform: rotate(45deg);
}

.income-tax-content-wrapper .faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.income-tax-content-wrapper .faq-accordion-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.income-tax-content-wrapper .faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .faq-section h2 {
    font-size: 1.6rem;
  }

  .income-tax-content-wrapper .faq-question {
    padding: 1rem 1.25rem;
  }

  .income-tax-content-wrapper .faq-question span:first-child {
    font-size: 1rem;
  }

  .income-tax-content-wrapper .faq-answer {
    padding: 0 1.25rem;
  }

  .income-tax-content-wrapper .faq-accordion-item.active .faq-answer {
    padding: 0 1.25rem 1rem;
  }
}

/* ============= CTA SECTION ============= */
.income-tax-content-wrapper .cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 6px 30px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
}

.income-tax-content-wrapper .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 45%);
  z-index: 0;
}

.income-tax-content-wrapper .cta-content {
  position: relative;
  z-index: 1;
}

.income-tax-content-wrapper .cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
}

.income-tax-content-wrapper .cta-content > p {
  font-size: 1.15rem;
  margin: 0 0 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.income-tax-content-wrapper .cta-buttons-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.income-tax-content-wrapper .cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 200px;
}

.income-tax-content-wrapper .cta-btn.primary {
  background: #ffffff;
  color: #3498db;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.income-tax-content-wrapper .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.income-tax-content-wrapper .cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.income-tax-content-wrapper .cta-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.income-tax-content-wrapper .cta-trust {
  font-size: 1rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .income-tax-content-wrapper .cta-section {
    padding: 2rem 1.5rem;
  }

  .income-tax-content-wrapper .cta-content h2 {
    font-size: 1.8rem;
  }

  .income-tax-content-wrapper .cta-content > p {
    font-size: 1rem;
  }

  .income-tax-content-wrapper .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }

  .income-tax-content-wrapper .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==================================================
   BOTTOM STICKY CTA (Mobile/Tablet)
   ================================================== */

.income-tax-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.12);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

.income-tax-bottom-cta .cta-actions {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 0 0.4rem;
}

@media (min-width: 768px) {
  .income-tax-bottom-cta .cta-actions {
    max-width: 440px;
  }
}

.income-tax-bottom-cta .cta-btn {
  flex: 1;
  min-width: 0;
  max-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  color: #ffffff;
  transition: all 0.15s ease;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.22),
    0 8px 18px rgba(0,0,0,0.18);
}

.income-tax-bottom-cta .cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.income-tax-bottom-cta .cta-btn:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.25),
    0 4px 10px rgba(0,0,0,0.22);
}

.income-tax-bottom-cta .cta-btn.call {
  background: linear-gradient(145deg, #f97316, #ea580c);
  border: 1px solid #ea580c;
}

.income-tax-bottom-cta .cta-btn.whatsapp {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  border: 1px solid #15803d;
}

.income-tax-bottom-cta .cta-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 360px) {
  .income-tax-bottom-cta {
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  }

  .income-tax-bottom-cta .cta-actions {
    gap: 0.6rem;
  }

  .income-tax-bottom-cta .cta-btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }

  .income-tax-bottom-cta .cta-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 1025px) {
  .income-tax-bottom-cta {
    display: none !important;
  }
}
/* ADD THESE 3 LINES */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

/* ============= SCROLL ANIMATIONS ============= */
.income-tax-content-wrapper .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.income-tax-content-wrapper .scroll-animate.animate-visible {
  opacity: 1;
  transform: translateY(0);
}