
@media (max-width: 480px) {
  .hero-image img{
    height: auto;
    width: 100%;
    border-radius: 10px;
  }
  .btn-primary{
    font-size: 14px;
    width: 150px;
    height: 60px;
    padding: 10px 10px 10px 10px;
  }
  .hero-content .hero-text{
    text-align: left;
  }
  .btn-primary{
    text-align: left;
    font-size: 15px;
    padding: 20px 10px;
  }
  .ai-card-b.btn-secondary1{
    font-size: 16px;
    height: 50px;
    background: linear-gradient(135deg, #62cff4, #2c67f2);
    width: 200px;
  }
  .section-cta .btn-primary{
    background: linear-gradient(135deg, #62cff4, #2c67f2);
    color: white;
  }
  .featured-badge{
    width: 100%;
  }
  .highlight-badge{
    width: 100%;
  }
  .hero-cta{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-cta a{
    width: 100%;
  }
  .business-hero{
    padding-top: 150px !important;
    padding-bottom: 50px !important;
  }
}
.business-hero p{
  color: white;
}
.business-hero{
  height: auto;
  background: linear-gradient(135deg, #007bff, #d9f5ff);
  padding-top: 200px;
  padding-bottom: 100px;
}
.business-hero h1{
  color: white;
}
.business-hero h1 span{
  color: #024b98;
}
.feature-item span{
  color: white;
}
.feature-item i{
  color:#007bff;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  position: relative;
  padding-left: 60px;
}

.step-number {
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--lighter-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
}
.flex-div{
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-dark);
}

/* ===============================
   SERVICE CATEGORIES GRID
================================ */

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;

  /* Ensures equal height cards */
  align-items: stretch;
}

/* ===============================
   SERVICE CATEGORY CARD
================================ */

.service-category {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 32px;

  display: flex;
  flex-direction: column;
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: calc(var(--space-xl) + 5px);
}

.service-category.highlighted {
  border-color: #62cff4;
  padding-bottom: calc(var(--space-xl) + 5px);
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-category.highlighted:hover {
  transform: translateY(-5px);
}

/* ===============================
   ICON & TEXT
================================ */

.category-icon {
  font-size: var(--text-3xl);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.service-category h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

/* ===============================
   LIST
================================ */

.service-category ul {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.service-category ul li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.service-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* ===============================
   BUTTON ALIGNMENT (IMPORTANT)
================================ */

/* Targets button / link inside card */
.service-category a,
.service-category button {
  margin-top: auto;
  margin-bottom: 12px; /* 🔥 THIS is the visual fix */
  text-align: center;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
}
.service-category .highlight-badge {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 30px;

  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;

  padding: 6px 0;
  border-radius: 0 0 12px 12px;
}
.verification-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.verification-step {
  text-align: center;
  padding: var(--space-lg);
  background: var(--lighter-color);
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: var(--text-2xl);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.verification-step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.comparison-table {
  overflow-x: auto;
  margin: var(--space-2xl) 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--lighter-color);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  color: black;
}

.comparison-table th, 
.comparison-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: var(--lighter-color);
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(255,255,255,0.1);
}

.comparison-table tr:hover {
  background-color: var(--primary-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--rounded-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: var(--lighter-color);
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question i {
  transition: var(--transition-fast);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  padding: var(--space-md);
  max-height: 500px;
}
.why-choose-us {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-description {
  color: #6b7280;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.adv-card1,
.adv-card2,
.adv-card3,
.adv-card4 {
  border: none;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid #62cff4;
  padding: 40px 0px;
  background: white;
}
.adv-card2{
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.adv-card2 .featured-badge{
  margin-top: auto;  
  top: 23px;
  border-radius: 0px;
}
.advantage-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
  flex-shrink: 0;
}

/* INNER SHARED ICON WRAPPER (CRITICAL FIX) */
.icon-wrapper {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon i,
.advantage-icon svg {
  font-size: 22px;    /* or width/height for svg */
  display: block;
}
.advantage-content h3{
  font-size: 18px;
}
.advantage-content p{
  padding: 0px 30px;
}
.para{
  color: white;
}
/* Make advantage links always visible */
.advantage-hover {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  position: static !important;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* Optional: subtle hover polish */
.advantage-card:hover .advantage-hover {
  transform: none;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.btn-text:hover {
  gap: 8px;
  color: #1e40af;
}

.featured-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 32px;
  width: 100%;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 12px 12px;
}
/* ===============================
   AI SOLUTIONS SECTION
================================ */

.ai-section {
  padding: var(--space-3xl) 0;
  background-color: var(--lighter-color);
  position: relative;
  overflow: hidden;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* ===============================
   AI CARD (STABLE)
================================ */

.ai-card-b {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Highlighted card */
.ai-card-b.highlighted {
  border-color: #3699da;
}

/* Hover lift ONLY (no size change) */
.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ai-card.highlighted:hover {
  transform: translateY(-5px);
}

/* ===============================
   CONTENT
================================ */

.ai-card-description {
  color: var(--gray-color);
  margin-bottom: var(--space-lg);
}

.ai-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 64px; /* 🔥 PERMANENT reserved space */
}

.ai-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.ai-benefits i{
  color: #62cff4;
}
/* ===============================
   FOOTER (OVERLAY, NO LAYOUT IMPACT)
================================ */

/* Always show AI card CTA */
.ai-card-b .ai-card-footer {
  opacity: 1 !important;
  pointer-events: auto !important;
  display: flex;
  justify-content: center;
  bottom: 50px;
  
}
.ai-card-footer a{
  text-align: center;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
}
/* Show button on hover */
.ai-card:hover .ai-card-footer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===============================
   BUTTON
================================ */

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  height: auto;
}
.btn-primary{
  background:  white;
  color: #007bff;
}
/* ===============================
   BADGE
================================ */

.highlight-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 0 12px 12px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .process-step {
    padding-left: 50px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: var(--text-md);
  }
  
  .service-categories {
    grid-template-columns: 1fr;
  }
  
  .verification-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .verification-steps {
    grid-template-columns: 1fr;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: var(--space-sm);
    font-size: var(--text-sm);
  }
}
