  *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --background: hsl(210, 25%, 97%);
      --foreground: hsl(222, 47%, 11%);
      --card: hsl(0, 0%, 100%);
      --card-foreground: hsl(222, 47%, 11%);
      --primary: hsl(215, 80%, 35%);
      --primary-foreground: hsl(210, 40%, 98%);
      --secondary: hsl(38, 92%, 95%);
      --secondary-foreground: hsl(38, 80%, 25%);
      --muted: hsl(210, 20%, 94%);
      --muted-foreground: hsl(215, 16%, 47%);
      --accent: hsl(38, 92%, 50%);
      --accent-foreground: hsl(222, 47%, 11%);
      --border: hsl(214, 32%, 91%);
      --radius: 0.75rem;
      --shadow-card: 0 4px 20px -4px hsla(215, 80%, 35%, 0.1);
      --shadow-card-hover: 0 8px 30px -4px hsla(215, 80%, 35%, 0.15);
      --gradient-solar: linear-gradient(135deg, hsl(210, 100%, 50%) 0%, hsl(200, 85%, 55%) 100%);
      --gradient-warm: linear-gradient(135deg, hsl(38, 92%, 50%) 0%, hsl(25, 95%, 53%) 100%);
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* Section Container */
    .solara_asha_section-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    @media (min-width: 1024px) {
      .solara_asha_section-container {
        padding: 6rem 1.5rem;
      }
    }

    /* Section Badge */
    .solara_asha_solar-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      background: linear-gradient(135deg, hsla(38, 92%, 50%, 0.15) 0%, hsla(25, 95%, 53%, 0.15) 100%);
      color: var(--accent-foreground);
      border: 1px solid hsla(38, 92%, 50%, 0.3);
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    /* Section Title */
    .solara_asha_section-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 2rem;
      background: var(--gradient-solar);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease 0.1s forwards;
    }

    @media (min-width: 768px) {
      .solara_asha_section-title {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .solara_asha_section-title {
        font-size: 3rem;
      }
    }

    /* Grid Layout */
    .solara_asha_grid-container {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .solara_asha_grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    /* Cards */
    .solara_asha_solar-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 1.5rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      opacity: 0;
      transform: translateX(-40px);
      animation: slideInLeft 0.7s ease forwards;
    }

    .solara_asha_solar-card:hover {
      box-shadow: var(--shadow-card-hover);
    }

    .solara_asha_solar-card.solara_asha_accent-border-left {
      border-left: 4px solid var(--accent);
      padding-left: 1rem;
    }

    .solara_asha_solar-card.solara_asha_slide-right {
      transform: translateX(40px);
      animation: slideInRight 0.7s ease 0.2s forwards;
    }

    .solara_asha_card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .solara_asha_card-title {
        font-size: 1.5rem;
      }
    }

    .solara_asha_card-subtitle {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .solara_asha_card-text {
      color: var(--muted-foreground);
      line-height: 1.7;
    }

    /* Feature List */
    .solara_asha_feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .solara_asha_feature-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: var(--muted-foreground);
    }

    .solara_asha_feature-item::before {
      content: '•';
      color: var(--accent);
      font-weight: 700;
      font-size: 1.125rem;
      line-height: 1.5;
    }

    /* Tagline */
    .solara_asha_tagline {
      font-size: 1.125rem;
      font-weight: 600;
      font-style: italic;
      margin-top: 1.5rem;
      background: var(--gradient-warm);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Slider */
    .solara_asha_slider-card {
      padding: 1rem;
    }

    .solara_asha_slider-container {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .solara_asha_slider-wrapper {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

    .solara_asha_slider-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .solara_asha_slider-image.solara_asha_active {
      opacity: 1;
      transform: scale(1);
    }

    .solara_asha_slider-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 1px solid hsla(214, 32%, 91%, 0.5);
      background: var(--gradient-solar);
      color: var(--primary-foreground);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 15px hsla(215, 80%, 35%, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      z-index: 10;
    }

    .solara_asha_slider-nav-btn:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 4px 20px hsla(215, 80%, 35%, 0.4);
    }

    .solara_asha_slider-nav-btn.solara_asha_prev {
      left: 1rem;
    }

    .solara_asha_slider-nav-btn.solara_asha_next {
      right: 1rem;
    }

    .solara_asha_slider-nav-btn svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .solara_asha_slider-dots {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 10;
    }

    .solara_asha_slider-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background: hsla(215, 80%, 35%, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .solara_asha_slider-dot.solara_asha_active {
      width: 1.5rem;
      background: var(--gradient-solar);
    }

    /* Modules Section Background */
    .solara_asha_modules-section {
      position: relative;
      overflow: hidden;
    }

    .solara_asha_modules-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 24rem;
      height: 24rem;
      background: hsla(215, 80%, 35%, 0.05);
      border-radius: 50%;
      filter: blur(60px);
      z-index: -1;
    }

    .solara_asha_modules-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24rem;
      height: 24rem;
      background: hsla(38, 92%, 50%, 0.1);
      border-radius: 50%;
      filter: blur(60px);
      z-index: -1;
    }

    /* Animations */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Animation delays */
    .solara_asha_delay-1 { animation-delay: 0.1s; }
    .solara_asha_delay-2 { animation-delay: 0.2s; }
    .solara_asha_delay-3 { animation-delay: 0.3s; }
    .solara_asha_delay-4 { animation-delay: 0.4s; }

    .solara_asha_content-column {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }



     /* ========================================
       CSS with applications_asha_ prefix
       ======================================== */
    
    /* Reset & Base */
    .applications_asha_container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .applications_asha_container {
      --applications_asha_background: 210 25% 97%;
      --applications_asha_foreground: 222 47% 11%;
      --applications_asha_card: 0 0% 100%;
      --applications_asha_card_foreground: 222 47% 11%;
      --applications_asha_primary: 207 97% 51%;
      --applications_asha_primary_foreground: 210 40% 98%;
      --applications_asha_muted: 210 20% 94%;
      --applications_asha_muted_foreground: 215 16% 47%;
      --applications_asha_border: 214 32% 91%;
      --applications_asha_hover_color: #0889fc;
      --applications_asha_shadow_card: 0 4px 20px -4px rgba(8, 137, 252, 0.1);
      --applications_asha_shadow_hover: 0 25px 50px -12px rgba(8, 137, 252, 0.25);
      
      font-family: 'Inter', system-ui, sans-serif;
      background-color: hsl(var(--applications_asha_background));
      color: hsl(var(--applications_asha_foreground));
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* Main Section */
    .applications_asha_section {
      padding: 80px 24px;
      max-width: 1280px;
      margin: 0 auto;
    }

    /* Header */
    .applications_asha_header {
      text-align: center;
      margin-bottom: 64px;
      opacity: 0;
      transform: translateY(-30px);
      animation: applications_asha_fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .applications_asha_title {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 800;
      color: hsl(var(--applications_asha_foreground));
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .applications_asha_subtitle {
      font-size: 1.125rem;
      color: hsl(var(--applications_asha_muted_foreground));
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(20px);
      animation: applications_asha_fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

    /* Grid */
    .applications_asha_grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
    }

    @media (min-width: 768px) {
      .applications_asha_grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .applications_asha_grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* Card */
    .applications_asha_card {
      position: relative;
      background-color: hsl(var(--applications_asha_card));
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--applications_asha_shadow_card);
      border: 1px solid hsl(var(--applications_asha_border) / 0.5);
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }

    .applications_asha_card:nth-child(1) {
      animation: applications_asha_cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    }
    .applications_asha_card:nth-child(2) {
      animation: applications_asha_cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    }
    .applications_asha_card:nth-child(3) {
      animation: applications_asha_cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    .applications_asha_card:nth-child(4) {
      animation: applications_asha_cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
    }

    .applications_asha_card:hover {
      background-color: rgba(8, 137, 252, 0.1);
      box-shadow: var(--applications_asha_shadow_hover);
      transform: translateY(0) scale(1.02);
    }

    /* Card Image Container */
    .applications_asha_image_container {
      position: relative;
      overflow: hidden;
      padding: 16px;
      padding-bottom: 0;
    }

    .applications_asha_image_wrapper {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
    }

    .applications_asha_image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .applications_asha_card:hover .applications_asha_image {
      transform: scale(1.1);
    }

    .applications_asha_image_overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(30, 41, 59, 0.2), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .applications_asha_card:hover .applications_asha_image_overlay {
      opacity: 1;
    }

    /* Card Content */
    .applications_asha_content {
      padding: 20px;
    }

    .applications_asha_card_title {
      font-size: 1.125rem;
      font-weight: 700;
      color: hsl(var(--applications_asha_foreground));
      margin-bottom: 8px;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .applications_asha_card:hover .applications_asha_card_title {
      color: var(--applications_asha_hover_color);
    }

    .applications_asha_card_description {
      font-size: 0.875rem;
      color: hsl(var(--applications_asha_muted_foreground));
      line-height: 1.6;
    }

    /* Accent Line */
    .applications_asha_accent_line {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #0889fc, #40a9ff, #0889fc);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .applications_asha_card:hover .applications_asha_accent_line {
      transform: scaleX(1);
    }

    /* CTA Section */
    .applications_asha_cta {
      text-align: center;
      margin-top: 64px;
      opacity: 0;
      transform: translateY(30px);
      animation: applications_asha_fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    }

    .applications_asha_cta_text {
      color: hsl(var(--applications_asha_muted_foreground));
      margin-bottom: 24px;
      font-size: 1rem;
    }

    .applications_asha_cta_button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background-color: var(--applications_asha_hover_color);
      color: white;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      border-radius: 9999px;
      cursor: pointer;
      box-shadow: 0 10px 30px -10px rgba(8, 137, 252, 0.4);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .applications_asha_cta_button:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 40px -10px rgba(8, 137, 252, 0.5);
    }

    .applications_asha_cta_button:active {
      transform: scale(0.98);
    }

    /* Keyframe Animations */
    @keyframes applications_asha_fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @keyframes applications_asha_cardReveal {
      from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }