/*

Theme Name: AIDAVIEW Theme

Author: WOW Infotech

Author URI: https://wowinfotech.com/

Description: This is custom theme for AIDAVIEW

Version: 1.0.0

*/

/* Container & Base Styling */
.img-sty-w35 {
  max-width: 100%;
  height: 350px !important;
  text-align: center;
}

.problem-section {
  background-color: #080b11;
  /* Deep rich dark background */
  color: #ffffff;
  padding: 80px 24px 80px;

  overflow: hidden;
  position: relative;
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Badge & Headline */
.problem-badge {
  display: inline-block;
  background: rgba(0, 210, 106, 0.1);
  color: #00d26a;
  /* AIDAVIEW Brand Green */
  border: 1px solid rgba(0, 210, 106, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.title-area11 {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.problem-headline {
  font-size: 39px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 35px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, #00d26a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Left Column: Metric Widget (Interactive-feel CSS graphic) */
.visual-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 8px;
  position: relative;
}

.visual-widget {
  background: rgb(255 255 255 / 0%);
  border: 1px solid rgb(255 255 255 / 0%);
  border-radius: 20px;
  padding: 8px;
  position: relative;
}

.glow-effect {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: #00d26a;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.widget-row {
  margin-bottom: 25px;
}

.widget-row:last-child {
  margin-bottom: 0;
}

.widget-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.active {
  background-color: #00d26a;
  box-shadow: 0 0 10px #00d26a;
  animation: pulse 2s infinite;
}

.status-dot.warning {
  background-color: #ef4444;
}

.widget-label {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
}

.bar-wrapper {
  background: rgba(255, 255, 255, 0.05);
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
}

.progress-bar.fast-track {
  width: 95%;
  background: linear-gradient(90deg, #00d26a, #00ffaa);
}

.progress-bar.slow-track {
  width: 35%;
  background: #4b5563;
}

.percentage {
  font-size: 12px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.neon-green {
  color: #00d26a;
}

.muted {
  color: #6b7280;
}

/* Right Column: Glassmorphism Content Cards */
.problem-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  flex-direction: column;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 210, 106, 0.3);
}

.card-icon {
  font-size: 24px;
  line-height: 1;
}

.glass-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
}

.glass-card p strong {
  color: #ffffff;
}

/* Bottom Highlight CTA box */
.aila-solution-box {
  background: linear-gradient(135deg,
      rgba(0, 210, 106, 0.07) 0%,
      rgba(0, 210, 106, 0.02) 100%);
  border: 1px dashed rgba(0, 210, 106, 0.4);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.aila-solution-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
}

.aila-solution-box p strong {
  color: #00d26a;
  font-weight: 700;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 210, 106, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 106, 0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .problem-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-section {
    padding: 70px 20px 50px;
  }

  .problem-headline {
    font-size: 21px;
  }
}

/* Base Container Framework */
.solutions-section {
  background-color: #05080d;
  color: #ffffff;
  padding: 77px 24px 80px;

  position: relative;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: #00d26a;
  top: 10%;
  left: -10%;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: #0088ff;
  bottom: 10%;
  right: -10%;
}

.solutions-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.solutions-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.solutions-badge {
  display: inline-block;
  background: rgba(0, 210, 106, 0.1);
  color: #00d26a;
  border: 1px solid rgba(0, 210, 106, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.solutions-headline {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #00d26a 30%, #00bcff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Styling inspired by your screenshot */
.product-card {
  background: linear-gradient(145deg,
      #0b0820 0%,
      #001303 100%);
  /* Deep purple-tinted base */
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Huge Translucent Step Numbers */
.card-step-number {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 60px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.05);
  /* Ghost visibility */
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease;
}

.product-card:hover .card-step-number {
  color: rgba(255, 255, 255, 0.09);
  /* Highlights slightly on hover */
}

/* Bottom Right Corner Accent Circle */
.product-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

/* Hover effect: Bottom Right Circle grows up by 30% and glows */
.product-card:hover::after {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.04);
}

/* Specific product color alignment on circle hover */
.product-card:hover:nth-child(1)::after {
  background: rgba(0, 136, 255, 0.06);
}

.product-card:hover:nth-child(2)::after {
  background: rgba(0, 210, 106, 0.06);
}

.product-card:hover:nth-child(3)::after {
  background: rgba(168, 85, 247, 0.06);
}

/* Internal Content Spaces */
.card-content {
  padding: 26px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  /* Sits cleanly over background animations */
}

/* Product Icons styling */
.product-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.product-icon svg {
  width: 26px;
  height: 26px;
}

.icon-blue {
  background: rgba(0, 136, 255, 0.1);
  color: #00d26a;
  border: 1px solid rgba(0, 136, 255, 0.2);
}

.icon-green {
  background: rgba(0, 210, 106, 0.1);
  color: #00d26a;
  border: 1px solid rgba(0, 210, 106, 0.2);
}

.icon-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #00d26a;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.product-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.product-description,
.product-description p {
  font-size: 15px;
  line-height: 1.6;
  color: #b4b6c4;
  /* High readability gray */
  margin-bottom: auto;
}

/* Best For Metadata Tags Layout */
.best-for-wrapper {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.best-for-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #bdbfd4;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 50px 20px 50px;
  }

  .solutions-headline {
    font-size: 22px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .card-content {
    padding: 30px;
  }
}

.the-sol-desc p {
  font-size: 18px;
  line-height: 1.6;
  color: #dfe4ea;
}

/* Container & Layout Styling */
.audience-section {
  background-color: #05080d;
  /* Matching deep dark aesthetic */
  color: #ffffff;
  padding: 100px 24px;

  position: relative;
  overflow: hidden;
}

/* Atmospheric subtle glow */
.audience-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(168, 85, 247, 0.08) 0%,
      rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.audience-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Elements */
.audience-header {
  text-align: center;
  margin-bottom: 40px;
}

.audience-badge {
  display: inline-block;
  background: rgba(0, 210, 106, 0.1);
  color: #00d26a;
  /* AIDAVIEW Neon Green */
  border: 1px solid rgba(0, 210, 106, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.audience-headline {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #2bb038 30%, #0573ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 5-Column Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Cards Design (Matches the previous steps layout) */
.audience-card {
  background: linear-gradient(145deg, #161233 0%, #092112 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Giant Ghost Numbers */
.audience-card .card-step-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 60px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease;
}

.audience-card:hover .card-step-number {
  color: rgba(255, 255, 255, 0.07);
}

/* Bottom Right Corner Accent Circle */
.audience-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

/* Hover: Circle scales up to reveal glow background */
.audience-card:hover::after {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.04);
}

/* Color matched corner glows */
.audience-card:hover:nth-child(1)::after,
.audience-card:hover:nth-child(4)::after {
  background: rgba(0, 136, 255, 0.05);
}

.audience-card:hover:nth-child(2)::after,
.audience-card:hover:nth-child(5)::after {
  background: rgba(0, 210, 106, 0.05);
}

.audience-card:hover:nth-child(3)::after {
  background: rgba(168, 85, 247, 0.05);
}

/* Card Content Structure */
.card-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Icons container */
.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.audience-icon svg {
  width: 22px;
  height: 22px;
}

.icon-blue {
  background: rgba(0, 136, 255, 0.08);
  color: #0088ff;
  border: 1px solid rgba(0, 136, 255, 0.15);
}

.icon-green {
  background: rgba(0, 210, 106, 0.08);
  color: #00d26a;
  border: 1px solid rgba(0, 210, 106, 0.15);
}

.icon-purple {
  background: rgba(168, 85, 247, 0.08);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.15);
}

/* Typography */
.audience-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.audience-description,
.audience-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #a3a6bd;
  margin: 0;
}

/* Tablet Layout (3 columns and then 2) */
@media (max-width: 1200px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

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

/* Mobile Devices */
@media (max-width: 600px) {
  .audience-section {
    padding: 70px 16px;
  }

  .audience-headline {
    font-size: 22px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-content {
    padding: 24px;
  }
}

:root {
  --bg-dark: #07090e;
  --card-bg: rgba(13, 18, 30, 0.45);
  --border-color: rgba(255, 255, 255, 0.08);
  --primary-accent: #2fc23e;
  /* Glowing Cyan */
  --secondary-accent: #4ffe92;
  /* Deep sky blue */
  --text-muted: #ffffff;
  --text-bright: #f1f5f9;
}

.aila-products-section {
  background-color: var(--bg-dark);
  padding: 70px 0 70px;
  color: var(--text-bright);
  position: relative;
  overflow: hidden;
}

.aila-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.aila-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-accent);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.aila-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aila-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Three Cards Grid */
.aila-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Premium Glassmorphic Card */
.aila-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.aila-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 254, 76, 0.3);
}

/* Interactive Inner Radial Glow Effect */
.aila-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 250px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 254, 63, 0.08), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.aila-card:hover .aila-card-glow {
  opacity: 1;
}

.aila-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card Metadata Header */
.card-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-number {
  font-size: 41px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.2;
}

.value-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 242, 254, 0.08);
  color: var(--primary-accent);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0, 254, 13, 0.15);
}

/* Card SVG Icons */
.card-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-accent);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.card-description,
.card-description p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Pills and Footer tags */
.card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.footer-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-bright);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.aila-card:hover .pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .aila-title {
    font-size: 32px;
  }
  .aila-products-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* background-color: #0b0f19; */
    color: #ffffff;
    padding: 70px 0 50px;
    overflow: hidden;
    position: relative;
}
}

/* --- PREMIUM PRODUCT SECTION STYLES --- */
.aila-products-section {
  font-family: 'Plus Jakarta Sans', sans-serif;
  /* background-color: #0b0f19; */
  /* Deep premium space blue/black background */
  color: #ffffff;
  padding: 70px 0 70px;
  overflow: hidden;
  position: relative;
}

.section-subtitle11 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Badge styling */
.premium-badge {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

/* Header Text */
.section-title {
  font-weight: 600;
  font-size: 2.8rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 16px;
  color: #ededed;
  font-weight: 400;
  line-height: 1.6;
}

/* Premium Pills & Tab Navigation */
.custom-tab-group {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 100px;
}

.custom-tab-group .nav-link {
  color: #d2d8e1;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  padding: 12px 24px;
  border: none !important;
  background: transparent !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-tab-group .nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #22ab37 0%, #198754 100%) !important;
  box-shadow: 0 4px 20px rgb(99 241 135 / 35%);
}

.custom-tab-group .nav-link:hover:not(.active) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Big Interactive Card Box */
.product-showcase-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 30px 50px 50px 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-brand-tag {
  color: #22ab37;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.product-headline {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.product-description-ps,
.product-description-ps p {
  color: #dde0e4;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Badges for Target Audiences */
.audience-label {
  font-weight: 600;
  font-size: 13px;
  color: #cbd5e1;
  margin-right: 10px;
}

.audience-badge {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  border-radius: 8px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Key Capabilities Check List */
.cap-title {
  font-weight: 700;
  font-size: 15px;
  color: #f1f5f9;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cap-list {
  list-style: none;
  padding-left: 0;
}

.cap-list li {
  color: #ffffff;
  font-size: 14.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.text-primary-glow {
  color: #22ab37;
  text-shadow: 0 0 10px rgb(129 248 194 / 40%);
}

/* Interactive Mockup Visual Pane */
.product-visual-pane {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.product-visual-pane:hover {
  transform: translateY(-8px);
}

.product-mockup-img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

/* Soft color highlight glow underneath the mockup image */
.visual-decor-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* Tab Transition Smoothness */
.tab-content .tab-pane {
  transition: opacity 0.35s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .product-showcase-card {
    padding: 30px;
  }

  .product-headline {
    font-size: 22px;
    font-weight: 500;
  }

  .product-mockup-img {
    height: 280px;
  }

  .section-title {
    font-weight: 600;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -0.03em;
  }

  .bannerpoints .col {
    cursor: pointer;
    /* font-family: 'Inter', sans-serif; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    text-align: center;
    opacity: 0.7;
    border: 1px solid;
    border-radius: 50px;
    padding: 5px 11px;
    font-size: 10px;
    line-height: 14px;
  }
}

.card-description-pro,
.card-description-pro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0px;
  flex-grow: 1;
}

.about-checklist {
  /* max-width: 650px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
  flex-direction: row;
}

.checklist.list-two-column ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  width: 755px;
  grid-auto-flow: column;
}

@media (max-width: 768px) {
  /* .checklist.list-two-column ul {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 16px 20px;
    width: 755px;
    grid-auto-flow: row;
  } */
   .checklist.list-two-column ul {
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px 20px;
    width: 755px;
    grid-auto-flow: row;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
}

.hero-style10 {
  padding: 135px 0 27px 0;
  text-align: center;
  position: relative;
  z-index: 99;
}

@media (max-width: 768px) {
  .aila-products-section {
    padding: 50px 0 50px;
}
.custom-tab-group {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 20px;
    border-radius: 50px;
    display: block;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.custom-tab-group .nav-link {
    color: #d2d8e1;
    font-weight: 600;
    font-size: 14px;
    border-radius: 100px;
    padding: 12px 24px;
    /* border: none !important; */
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid #1e9c439e;
    margin-bottom: 10px; */
}
}
.aila-tab-trigger:hover{
  cursor: pointer;
}