/* Tifola homepage — website theme (green + orange) */

.page-home {
  padding-bottom: 72px;
}

.tifola-hero {
  background: linear-gradient(135deg, #2d6502 0%, #3d7a0f 45%, #e76318 100%);
  color: #fff;
  padding: 3rem 1rem 3.5rem;
  text-align: center;
}

.tifola-hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.tifola-hero .lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 720px;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
  line-height: 1.55;
}

.tifola-hero .tifola-hero-pincode {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 1.25rem;
}

.tifola-hero .tifola-hero-pincode input[type="text"] {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
}

.tifola-hero .tifola-hero-pincode button {
  padding: 0.65rem 1.25rem;
  background: #fff;
  color: #2d6502;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.tifola-hero .tifola-hero-pincode button:hover {
  background: #f5f5f5;
}

.tifola-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.6rem;
  margin-bottom: 1.5rem;
}

.tifola-hero-tags span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.tifola-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tifola-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.tifola-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.tifola-btn-call {
  background: #fff;
  color: #2d6502 !important;
  border-color: #fff;
}

.tifola-btn-download {
  background: #e76318;
  color: #fff !important;
  border-color: #e76318;
}

.tifola-btn-outline {
  background: transparent;
  color: #2d6502 !important;
  border-color: #2d6502;
}

.tifola-section {
  padding: 2.5rem 1rem;
}

.tifola-section-title {
  text-align: center;
  color: #2d6502;
  font-weight: 700;
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.tifola-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e76318;
  margin: 10px auto 1.25rem;
  border-radius: 4px;
}

.tifola-section-sub {
  text-align: center;
  color: #555;
  max-width: 640px;
  margin: -0.5rem auto 1.75rem;
  font-size: 1rem;
}

/* Service cards */
.tifola-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.tifola-service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(31, 45, 61, 0.1);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tifola-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 101, 2, 0.15);
}

.tifola-service-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8f0;
  padding: 0.75rem;
}

.tifola-service-card-img img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  content-visibility: auto;
}

.tifola-service-card-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tifola-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.35rem;
}

.tifola-service-card .tagline {
  font-size: 0.8rem;
  color: #e76318;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tifola-service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.45;
  margin-bottom: 1rem;
  flex: 1;
}

.tifola-service-card .tifola-btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
}

.tifola-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2d6502;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.tifola-badge-new {
  background: #e76318;
}

.tifola-service-card-wrap {
  position: relative;
}

.tifola-service-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  height: 100%;
}

.tifola-card-more {
  display: inline-block;
  color: #2d6502;
  font-weight: 700;
  font-size: 0.9rem;
}

.tifola-service-card-link:hover .tifola-card-more {
  color: #e76318;
}

/* Why + features */
.tifola-why {
  background: #f9f9f9;
}

.tifola-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tifola-why-item {
  background: #fff;
  border-left: 4px solid #e76318;
  padding: 1rem 1.15rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tifola-why-item h4 {
  color: #2d6502;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.tifola-features .feature-box-1 {
  padding: 1.5rem;
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  margin: 0;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  transition: ease all 0.35s;
  background: #fff;
  height: 100%;
}

.tifola-features .feature-box-1 h5 {
  color: #2d6502;
  font-weight: 600;
}

.tifola-features .feature-box-1 p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.tifola-features .feature-box-1:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 101, 2, 0.12);
}

/* Steps */
.tifola-steps .instruct1 {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  margin-bottom: 1rem;
}

.tifola-steps .instruct1 i {
  font-size: 2.5rem;
  color: #e76318;
  margin-bottom: 0.75rem;
}

.tifola-steps .instruct1 p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* Testimonials — reuse existing carousel container */
.tifola-testimonials {
  background: #fff;
}

.tifola-testimonials .ti-lapbox__wrap {
  padding: 1.5rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tifola-testimonials .heading.white-heading {
  color: #2d6502;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial4_slide {
  padding: 1rem 2rem 2rem;
}

.testimonial4_slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.testimonial4_slide .fa-star.checked {
  color: #e76318;
  font-size: 0.85rem;
}

.testimonial4_slide h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.testimonial4_slide p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* FAQ */
.tifola-faq .card-header .collapsed {
  color: #2d6502 !important;
  cursor: pointer;
}

/* Bottom CTA band */
.tifola-cta-band {
  background: linear-gradient(90deg, #2d6502, #3d7a0f);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.tifola-cta-band h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Sticky mobile + desktop helper */
.tifola-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #1a1a1a;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.page-home .tifola-sticky-cta {
  display: flex;
}

.page-home .position_absolute_for_mobile1 {
  display: none !important;
}

.tifola-sticky-cta .tifola-btn {
  flex: 1;
  padding: 0.7rem 0.5rem;
  font-size: 0.9rem;
}

.tifola-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
}

.tifola-nav-cta .tifola-btn {
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .tifola-nav-cta {
    display: none;
  }
}

@media (min-width: 768px) {
  .page-home {
    padding-bottom: 0;
  }

  .tifola-sticky-cta {
    display: none !important;
  }
}
