.elementor-280 .elementor-element.elementor-element-89e96b3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3e4fc51 *//* ============================================
       Liquid Glass Design System - Industry Theme
       ============================================ */
    :root {
      --lg-bg: rgba(255, 255, 255, 0.06);
      --lg-bg-strong: rgba(255, 255, 255, 0.1);
      --lg-border: rgba(255, 255, 255, 0.14);
      --lg-border-accent: rgba(79, 195, 247, 0.4); /* Blue accent for industry/tech */
      --lg-blur: 28px;
      --lg-radius: 22px;
      --liquid-ease: cubic-bezier(0.34, 1.2, 0.64, 1);
      --accent: #4fc3f7; /* Tech Blue */
      --accent-glow: rgba(79, 195, 247, 0.3);
      --accent-dim: rgba(79, 195, 247, 0.12);
      --specular: rgba(255, 255, 255, 0.18);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Outfit', 'Varela Round', sans-serif;
      background: #0d0d0d;
      color: white;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      direction: ltr;
      line-height: 1.6;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: 
        radial-gradient(ellipse 100% 100% at 0% 0%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 100% 100%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    /* ============================================
       Navigation
       ============================================ */
    .review-breadcrumb {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 40px 0;
      font-size: 13px;
      position: relative;
      z-index: 1;
    }
    .review-breadcrumb__container { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); }
    .review-breadcrumb__link { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .review-breadcrumb__link:hover { color: var(--accent); }
    .review-breadcrumb__sep { font-size: 10px; opacity: 0.5; }
    .review-breadcrumb__current { color: rgba(255,255,255,0.8); font-weight: 500; }

    /* ============================================
       Page Header
       ============================================ */
    .page-hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 40px 60px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .page-hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(79, 195, 247, 0.1);
      border: 1px solid var(--lg-border-accent);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .page-hero__title {
      font-size: 56px;
      font-weight: 700;
      margin-bottom: 24px;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #ffffff 0%, #4fc3f7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-hero__desc {
      font-size: 19px;
      color: rgba(255, 255, 255, 0.65);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* ============================================
       Content Sections
       ============================================ */
    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 60px;
      position: relative;
      z-index: 1;
    }

    .section-block {
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-title svg {
      width: 28px;
      height: 28px;
      stroke: var(--accent);
    }

    .section-text {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .section-text strong {
      color: #fff;
      font-weight: 600;
    }

    /* Card Grids */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .info-card {
      padding: 28px;
      border-radius: var(--lg-radius);
      background: var(--lg-bg);
      backdrop-filter: blur(var(--lg-blur));
      border: 1px solid var(--lg-border);
      transition: all 0.4s var(--liquid-ease);
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
    }

    .info-card:hover {
      transform: translateY(-6px);
      border-color: var(--lg-border-accent);
      background: var(--lg-bg-strong);
      box-shadow: 0 0 0 1px rgba(79, 195, 247, 0.1), 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    }

    .info-card__icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(79, 195, 247, 0.1);
      border-radius: 14px;
      margin-bottom: 18px;
    }

    .info-card__icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--accent);
    }

    .info-card__title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .info-card__desc {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
    }

    /* Company List Style */
    .company-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .company-card {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 24px;
      border-radius: var(--lg-radius);
      background: var(--lg-bg);
      border: 1px solid var(--lg-border);
      transition: all 0.4s var(--liquid-ease);
    }

    .company-card:hover {
      border-color: var(--lg-border-accent);
      transform: translateX(8px);
      background: var(--lg-bg-strong);
    }

    .company-card__logo-box {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      background: rgba(255,255,255,0.05);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 700;
      color: var(--accent);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .company-card__content {
      flex: 1;
    }

    .company-card__name {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .company-card__role {
      display: inline-block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      background: rgba(79, 195, 247, 0.15);
      color: var(--accent);
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .company-card__desc {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    /* Core Team */
    .core-team {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 80px;
      position: relative;
      z-index: 1;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .team-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      border-radius: var(--lg-radius);
      background: var(--lg-bg);
      border: 1px solid var(--lg-border);
    }

    .team-card__img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(79, 195, 247, 0.3);
    }

    .team-card__name { font-size: 15px; font-weight: 700; color: #fff; }
    .team-card__role { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
    .team-card__link { font-size: 12px; color: var(--accent); text-decoration: none; display: block; margin-top: 4px; }

    /* ============================================
       Responsive
       ============================================ */
    @media (max-width: 1024px) {
      .card-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .review-breadcrumb { padding: 20px; }
      .page-hero { padding: 30px 20px 40px; }
      .page-hero__title { font-size: 36px; }
      .content-wrapper { padding: 0 20px 40px; }
      .card-grid { grid-template-columns: 1fr; }
      .company-card { flex-direction: column; text-align: center; }
      .core-team { padding: 0 20px 60px; }
      .team-grid { grid-template-columns: 1fr; }
    }/* End custom CSS */