  h2.section-title {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    display: inline-block;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  }

  .tool-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 18px;
    overflow: hidden;
  }

  .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
  }

  .icon-circle {
    font-size: 2.5rem;
    border-radius: 50%;
    padding: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    animation: flicker 2s infinite alternate;
  }

  @keyframes flicker {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.1);
      opacity: 0.85;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .btn-tool {
    border-radius: 25px;
    padding: 6px 20px;
    font-weight: bold;
  }

  .home-languages-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e0e7ff 100%);
  }

   

  @media (max-width: 768px) {
    .language-block {
      padding: 22px;
    }

    .language-content {
      text-align: center;
    }

    .language-content .d-flex {
      justify-content: center;
    }
  }
  .home-tools-section {
    background: #f8fafc;
  }

  .home-tools-badge {
    display: inline-flex;
    align-items: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 999px;
    padding: 6px 13px;
    font-weight: 700;
    font-size: 0.92rem;
  }

  .home-tools-intro {
    max-width: 920px;
  }

  .home-tool-card {
    height: 100%;
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    text-align: center;
    text-decoration: none;
    color: #374151;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .home-tool-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(249,115,22,0.06));
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .home-tool-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 16px 36px rgba(37,99,235,0.14);
    color: #374151;
  }

  .home-tool-card:hover::before {
    opacity: 1;
  }

  .home-tool-card > * {
    position: relative;
    z-index: 1;
  }

  .home-tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  }

  .home-tool-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
  }

  .home-tool-card p {
    color: #6b7280;
    font-size: 0.96rem;
    margin-bottom: 16px;
  }

  .home-tool-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 800;
    font-size: 0.95rem;
  }

  .home-tool-card-featured {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #ffffff;
  }

  .home-tool-card-featured h3,
  .home-tool-card-featured p,
  .home-tool-card-featured .home-tool-link {
    color: #ffffff;
  }

  .home-tool-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
  }

  .home-tool-blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
  }

  .home-tool-orange {
    background: linear-gradient(135deg, #f97316, #facc15);
  }

  .home-tool-sky {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
  }

  .home-tool-pink {
    background: linear-gradient(135deg, #db2777, #fb7185);
  }

  .home-tool-yellow {
    background: linear-gradient(135deg, #ca8a04, #facc15);
  }

  .home-tool-purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
  }

  .home-tool-red {
    background: linear-gradient(135deg, #dc2626, #fb7185);
  }

  .home-tool-rose {
    background: linear-gradient(135deg, #be123c, #f43f5e);
  }

  .home-tool-dark {
    background: linear-gradient(135deg, #111827, #4b5563);
  }

  .home-tool-emerald {
    background: linear-gradient(135deg, #059669, #34d399);
  }

  .home-tool-primary {
    background: linear-gradient(135deg, #f97316, #facc15);
  }

  @media (max-width: 576px) {
    .home-tool-card {
      padding: 22px;
    }

    .home-tool-icon {
      width: 58px;
      height: 58px;
      font-size: 1.55rem;
    }
  }

  .home-why-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  }

  .home-why-badge {
    display: inline-flex;
    align-items: center;
    background: #fff7ed;
    color: #f97316;
    border-radius: 999px;
    padding: 6px 13px;
    font-weight: 700;
    font-size: 0.92rem;
  }

  .home-why-intro {
    max-width: 900px;
  }

  .home-why-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
  }

  .home-why-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 16px 36px rgba(37,99,235,0.14);
  }

  .home-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  }

  .home-why-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
  }

  .home-why-card p {
    color: #6b7280;
    font-size: 0.96rem;
    margin-bottom: 0;
  }

  .home-why-blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
  }

  .home-why-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
  }

  .home-why-orange {
    background: linear-gradient(135deg, #f97316, #facc15);
  }

  .home-why-purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
  }
  
/* ================================
   Final CTA Section - Fixed
================================ */

.home-final-cta-section {
  background: #f8fafc !important;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.home-final-cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
  position: relative;
  overflow: hidden;
}

.home-final-cta-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  z-index: 0;
}

.home-final-cta-box::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.home-final-cta-box .row {
  position: relative;
  z-index: 2;
}

.home-final-cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 6px 13px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.home-final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.home-final-cta-box p {
  color: #e5e7eb !important;
  font-size: 1.08rem;
  margin-bottom: 0;
  max-width: 720px;
}

.home-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.home-final-cta-btn {
  display: block !important;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.home-final-cta-btn-primary {
  background: #ffffff !important;
  color: #1d4ed8 !important;
  border: 1px solid #ffffff !important;
}

.home-final-cta-btn-primary:hover {
  background: #f8fafc !important;
  color: #1e40af !important;
  transform: translateY(-2px);
}

.home-final-cta-btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  color: #ffffff !important;
}

.home-final-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.home-final-cta-btn i {
  color: inherit !important;
}

@media (max-width: 991px) {
  .home-final-cta-actions {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-final-cta-box {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .home-final-cta-box {
    padding: 30px 20px;
  }

  .home-final-cta-btn {
    width: 100%;
  }
}
