:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e6b6f29 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

    .horlu-home {
      /* Brand Color Tokens */
      --horlu-navy: #1B2A4A;
      --horlu-navy-dark: #111A2E;
      --horlu-navy-light: #2A3E66;
      --horlu-orange: #E8821C;
      --horlu-orange-hover: #D67210;
      --horlu-orange-soft: #FFF4E8;
      --horlu-orange-glow: rgba(232, 130, 28, 0.25);
      
      --horlu-bg: #FDF6EE;
      --horlu-bg-card: #FFFFFF;
      --horlu-bg-alt: #F7EFE4;
      --horlu-bg-muted: #F2E8DC;
      
      --horlu-text: #2D3748;
      --horlu-heading: #1B2A4A;
      --horlu-muted: #64748B;
      --horlu-light-text: #E2E8F0;
      --horlu-border: #E8DEC8;
      --horlu-border-light: #F0E6D8;
      
      /* Typography */
      --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      
      /* Shadows & Radii */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
      
      --shadow-sm: 0 4px 12px rgba(27, 42, 74, 0.04);
      --shadow-md: 0 12px 32px rgba(27, 42, 74, 0.08);
      --shadow-lg: 0 24px 50px rgba(27, 42, 74, 0.12);
      --shadow-orange: 0 10px 30px -5px rgba(232, 130, 28, 0.35);

      --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      
      font-family: var(--font-body);
      color: var(--horlu-text);
      background-color: var(--horlu-bg);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      width: 100%;
      overflow-x: hidden;
    }

    .horlu-home *,
    .horlu-home *::before,
    .horlu-home *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .horlu-home h1,
    .horlu-home h2,
    .horlu-home h3,
    .horlu-home h4,
    .horlu-home h5,
    .horlu-home h6 {
      font-family: var(--font-head);
      color: var(--horlu-heading);
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .horlu-home a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    .horlu-home img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .horlu-home ul {
      list-style: none;
    }

    /* Container Utility */
    .horlu-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 48px);
    }

    /* Section Header Reusable Utility */
    .horlu-section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto clamp(40px, 6vw, 64px);
    }

    .horlu-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background-color: var(--horlu-orange-soft);
      color: var(--horlu-orange);
      border: 1px solid rgba(232, 130, 28, 0.25);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .horlu-badge-navy {
      background-color: rgba(27, 42, 74, 0.06);
      color: var(--horlu-navy);
      border-color: rgba(27, 42, 74, 0.15);
    }

    .horlu-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--horlu-orange);
    }

    .horlu-section-title {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px;
      color: var(--horlu-navy);
    }

    .horlu-section-subtitle {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--horlu-muted);
      line-height: 1.65;
    }

    /* Buttons */
    .horlu-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }

    .horlu-btn-primary {
      background-color: var(--horlu-orange);
      color: #FFFFFF !important;
      box-shadow: var(--shadow-orange);
    }

    .horlu-btn-primary:hover {
      background-color: var(--horlu-orange-hover);
      transform: translateY(-2px);
      box-shadow: 0 14px 35px -5px rgba(232, 130, 28, 0.45);
    }

    .horlu-btn-secondary {
      background-color: var(--horlu-navy);
      color: #FFFFFF !important;
      box-shadow: var(--shadow-md);
    }

    .horlu-btn-secondary:hover {
      background-color: var(--horlu-navy-light);
      transform: translateY(-2px);
    }

    .horlu-btn-outline {
      background-color: transparent;
      border-color: var(--horlu-navy);
      color: var(--horlu-navy) !important;
    }

    .horlu-btn-outline:hover {
      background-color: var(--horlu-navy);
      color: #FFFFFF !important;
      transform: translateY(-2px);
    }

    .horlu-btn-outline-white {
      background-color: transparent;
      border-color: rgba(255, 255, 255, 0.4);
      color: #FFFFFF !important;
    }

    .horlu-btn-outline-white:hover {
      border-color: #FFFFFF;
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    /* SVG Icon Helpers */
    .horlu-icon {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* =====================================================================
       1. NAVIGATION HEADER
    ===================================================================== */
    .horlu-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(253, 246, 238, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--horlu-border-light);
      padding: 16px 0;
    }

    .horlu-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .horlu-brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .horlu-brand-logo img {
      height: 46px;
      width: auto;
      object-fit: contain;
    }

    .horlu-nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .horlu-nav-item {
      position: relative;
      padding: 6px 0;
    }

    .horlu-nav-link {
      font-size: 16px;
      font-weight: 600;
      color: var(--horlu-navy);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }

    .horlu-nav-link svg {
      width: 14px;
      height: 14px;
      transition: var(--transition);
    }

    .horlu-nav-item:hover > .horlu-nav-link {
      color: var(--horlu-orange);
    }

    .horlu-nav-item:hover > .horlu-nav-link svg {
      transform: rotate(180deg);
      color: var(--horlu-orange);
    }

    /* CSS Dropdown Styling */
    .horlu-dropdown {
      position: absolute;
      top: 100%;
      left: -16px;
      min-width: 280px;
      background: #FFFFFF;
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      padding: 12px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      z-index: 1100;
    }

    .horlu-nav-item:hover .horlu-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .horlu-dropdown-link {
      display: flex;
      flex-direction: column;
      padding: 10px 20px;
      text-decoration: none;
      transition: var(--transition);
    }

    .horlu-dropdown-link:hover {
      background-color: var(--horlu-bg);
    }

    .horlu-dropdown-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--horlu-navy);
      margin-bottom: 2px;
    }

    .horlu-dropdown-link:hover .horlu-dropdown-title {
      color: var(--horlu-orange);
    }

    .horlu-dropdown-desc {
      font-size: 13px;
      color: var(--horlu-muted);
      line-height: 1.4;
    }

    .horlu-header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .horlu-mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--horlu-navy);
      cursor: pointer;
      padding: 6px;
    }

    /* =====================================================================
       2. EXECUTIVE HERO SECTION
    ===================================================================== */
    .horlu-hero {
      padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 7vw, 90px);
      position: relative;
      background: linear-gradient(135deg, rgba(253, 246, 238, 0.82) 0%, rgba(247, 239, 228, 0.72) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .horlu-hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: clamp(40px, 5vw, 64px);
      align-items: center;
    }

    .horlu-hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
    }

    .horlu-hero-title {
      font-size: clamp(34px, 4.5vw, 54px);
      line-height: 1.15;
      margin-bottom: 24px;
      color: var(--horlu-navy);
    }

    .horlu-hero-title span {
      color: var(--horlu-orange);
      position: relative;
      display: inline-block;
    }

    .horlu-hero-subtitle {
      font-size: clamp(17px, 2vw, 20px);
      color: var(--horlu-muted);
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 620px;
    }

    .horlu-hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: flex-start;
      margin-bottom: 44px;
    }

    .horlu-hero-trust {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 28px;
      padding-top: 28px;
      border-top: 1px solid rgba(27, 42, 74, 0.15);
      margin: 0;
    }

    .horlu-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--horlu-navy);
    }

    .horlu-trust-item svg {
      color: var(--horlu-orange);
    }

    /* Glowing Interactive AI Radar Graphic */
    .horlu-radar-container {
      position: relative;
      width: 100%;
      max-width: 440px;
      height: 440px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .horlu-radar-outer {
      position: relative;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(27, 42, 74, 0.95) 0%, rgba(17, 26, 46, 0.98) 100%);
      border: 2px solid rgba(232, 130, 28, 0.45);
      box-shadow: 0 0 50px rgba(27, 42, 74, 0.35), inset 0 0 40px rgba(232, 130, 28, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .horlu-radar-ring-1 {
      position: absolute;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      border: 1px dashed rgba(232, 130, 28, 0.4);
    }

    .horlu-radar-ring-2 {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .horlu-radar-ring-3 {
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 1px dashed rgba(232, 130, 28, 0.3);
    }

    .horlu-radar-axis-h {
      position: absolute;
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
    }

    .horlu-radar-axis-v {
      position: absolute;
      width: 1px;
      height: 100%;
      background: rgba(255, 255, 255, 0.08);
    }

    .horlu-radar-sweep {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, rgba(232, 130, 28, 0.1) 320deg, rgba(232, 130, 28, 0.5) 360deg);
      animation: horluRadarRotate 4.5s linear infinite;
    }

    @keyframes horluRadarRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .horlu-radar-core {
      position: relative;
      z-index: 5;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: var(--horlu-orange);
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 30px rgba(232, 130, 28, 0.7);
      animation: horluCorePulse 2.5s infinite ease-in-out;
    }

    @keyframes horluCorePulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(232, 130, 28, 0.6); }
      50% { transform: scale(1.08); box-shadow: 0 0 45px rgba(232, 130, 28, 0.9); }
    }

    .horlu-radar-node {
      position: absolute;
      z-index: 6;
      background: rgba(17, 26, 46, 0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(232, 130, 28, 0.4);
      color: #FFFFFF;
      padding: 7px 15px;
      border-radius: var(--radius-full);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
      display: flex;
      align-items: center;
      gap: 8px;
      animation: horluNodeFloat 4s ease-in-out infinite;
    }

    .horlu-radar-node-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--horlu-orange);
      box-shadow: 0 0 8px var(--horlu-orange);
    }

    .horlu-node-1 { top: 8%; left: 4%; animation-delay: 0s; }
    .horlu-node-2 { top: 14%; right: 0%; animation-delay: 1s; }
    .horlu-node-3 { bottom: 18%; left: 0%; animation-delay: 2s; }
    .horlu-node-4 { bottom: 8%; right: 4%; animation-delay: 1.5s; }

    @keyframes horluNodeFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @media (max-width: 1024px) {
      .horlu-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .horlu-hero-content {
        margin: 0 auto;
        text-align: center;
      }
      .horlu-hero-ctas,
      .horlu-hero-trust {
        justify-content: center;
      }
    }

    /* Card Image Utility Classes */
    .horlu-card-img-header {
      width: 100%;
      height: 170px;
      object-fit: cover;
      display: block;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      transition: var(--transition);
    }

    .horlu-card-img-wrap {
      overflow: hidden;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      margin: -32px -32px 24px -32px;
      position: relative;
    }

    .horlu-card-img-wrap-sol {
      overflow: hidden;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      margin: -36px -30px 24px -30px;
      position: relative;
    }

    .horlu-card-img-wrap-ind {
      overflow: hidden;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      margin: -30px -30px 20px -30px;
      position: relative;
    }

    .horlu-card-img-wrap-step {
      overflow: hidden;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      margin: -32px -24px 20px -24px;
      position: relative;
    }

    .horlu-problem-card:hover .horlu-card-img-header,
    .horlu-solution-card:hover .horlu-card-img-header,
    .horlu-industry-card:hover .horlu-card-img-header,
    .horlu-step-card:hover .horlu-card-img-header {
      transform: scale(1.06);
    }

    .horlu-card-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
    }

    .horlu-card-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: #CBD5E1;
    }

    .horlu-card-list li svg {
      color: var(--horlu-orange);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .horlu-card-metric {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .horlu-metric-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--horlu-orange);
      font-family: var(--font-head);
    }

    .horlu-metric-label {
      font-size: 13px;
      color: #94A3B8;
      text-align: right;
    }

    /* =====================================================================
       3. FREE TRAINING VIDEOS SECTION (First after Hero!)
    ===================================================================== */
    .horlu-videos-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-bg-card);
      border-bottom: 1px solid var(--horlu-border-light);
    }

    .horlu-video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .horlu-video-card {
      background-color: var(--horlu-bg);
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .horlu-video-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--horlu-orange);
    }

    .horlu-video-thumb {
      position: relative;
      width: 100%;
      height: 210px;
      background-color: var(--horlu-navy);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .horlu-video-thumb-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.45;
      transition: var(--transition);
    }

    .horlu-video-card:hover .horlu-video-thumb-bg {
      transform: scale(1.05);
      opacity: 0.55;
    }

    .horlu-play-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--horlu-orange);
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(232, 130, 28, 0.4);
      transition: var(--transition);
    }

    .horlu-video-card:hover .horlu-play-btn {
      transform: scale(1.1);
      background-color: #FFFFFF;
      color: var(--horlu-orange);
    }

    .horlu-video-duration {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(17, 26, 46, 0.85);
      color: #FFFFFF;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: 600;
      z-index: 2;
    }

    .horlu-video-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .horlu-video-tag {
      font-size: 12px;
      font-weight: 700;
      color: var(--horlu-orange);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }

    .horlu-video-title {
      font-size: 19px;
      margin-bottom: 12px;
      color: var(--horlu-navy);
    }

    .horlu-video-desc {
      font-size: 14px;
      color: var(--horlu-muted);
      margin-bottom: 20px;
      line-height: 1.6;
      flex-grow: 1;
    }

    .horlu-video-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--horlu-navy);
    }

    .horlu-video-card:hover .horlu-video-link {
      color: var(--horlu-orange);
    }

    /* =====================================================================
       4. FREE DOWNLOADS & LEAD CAPTURE
    ===================================================================== */
    .horlu-downloads-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-bg-alt);
      position: relative;
    }

    .horlu-downloads-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-bottom: 56px;
    }

    .horlu-download-card {
      background: var(--horlu-bg-card);
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-md);
      padding: 32px;
      position: relative;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .horlu-download-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--horlu-orange);
    }

    .horlu-download-icon-box {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-sm);
      background-color: var(--horlu-orange-soft);
      color: var(--horlu-orange);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .horlu-download-title {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .horlu-download-text {
      font-size: 14px;
      color: var(--horlu-muted);
      margin-bottom: 24px;
      flex-grow: 1;
    }

    /* Lead Form Inline Box */
    .horlu-lead-box {
      background: var(--horlu-navy);
      color: #FFFFFF;
      border-radius: var(--radius-lg);
      padding: clamp(32px, 5vw, 48px);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: center;
      box-shadow: var(--shadow-lg);
    }

    .horlu-lead-info h3 {
      color: #FFFFFF;
      font-size: 26px;
      margin-bottom: 12px;
    }

    .horlu-lead-info p {
      color: #CBD5E1;
      font-size: 15px;
    }

    .horlu-lead-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .horlu-lead-input {
      flex: 1;
      min-width: 240px;
      padding: 14px 18px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.08);
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: var(--transition);
    }

    .horlu-lead-input::placeholder {
      color: #94A3B8;
    }

    .horlu-lead-input:focus {
      border-color: var(--horlu-orange);
      background: rgba(255, 255, 255, 0.12);
    }

    /* =====================================================================
       5. CORPORATE TRAINING SPOTLIGHT
    ===================================================================== */
    .horlu-training-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-bg-card);
    }

    .horlu-training-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: flex-start;
    }

    .horlu-training-content .horlu-section-title {
      text-align: left;
    }

    .horlu-training-hero-banner {
      position: relative;
      width: 100%;
      height: 240px;
      border-radius: var(--radius-md);
      overflow: hidden;
      margin: 24px 0 28px;
      border: 1px solid var(--horlu-border-light);
      box-shadow: var(--shadow-md);
    }

    .horlu-training-hero-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: var(--transition);
    }

    .horlu-training-hero-banner:hover img {
      transform: scale(1.05);
    }

    .horlu-training-badge-overlay {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(17, 26, 46, 0.88);
      backdrop-filter: blur(8px);
      color: #FFFFFF;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(232, 130, 28, 0.4);
    }

    .horlu-training-badge-overlay span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--horlu-orange);
    }

    .horlu-card-img-wrap-training {
      overflow: hidden;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      margin: -40px -40px 24px -40px;
      height: 210px;
      position: relative;
    }

    .horlu-card-img-wrap-training img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: var(--transition);
    }

    .horlu-training-card:hover .horlu-card-img-wrap-training img {
      transform: scale(1.05);
    }

    .horlu-training-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 28px 0 36px;
    }

    .horlu-training-feature-item {
      display: flex;
      gap: 16px;
    }

    .horlu-feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: var(--horlu-orange-soft);
      color: var(--horlu-orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .horlu-feature-text h4 {
      font-size: 17px;
      margin-bottom: 4px;
    }

    .horlu-feature-text p {
      font-size: 14px;
      color: var(--horlu-muted);
    }

    .horlu-training-card {
      background: var(--horlu-bg);
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-lg);
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .horlu-workshop-pill {
      display: inline-block;
      padding: 6px 14px;
      background: var(--horlu-navy);
      color: #FFFFFF;
      border-radius: var(--radius-full);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }

    .horlu-training-card h3 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .horlu-training-card-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .horlu-training-card-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--horlu-text);
    }

    .horlu-training-card-list li svg {
      color: var(--horlu-orange);
    }

    /* =====================================================================
       6. THE PROBLEM (AI Adoption Friction)
    ===================================================================== */
    .horlu-problem-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-navy);
      color: #FFFFFF;
    }

    .horlu-problem-section .horlu-section-title {
      color: #FFFFFF;
    }

    .horlu-problem-section .horlu-section-subtitle {
      color: #94A3B8;
    }

    .horlu-problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }

    .horlu-problem-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 32px;
      transition: var(--transition);
    }

    .horlu-problem-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--horlu-orange);
      transform: translateY(-4px);
    }

    .horlu-problem-num {
      font-size: 14px;
      font-weight: 800;
      color: var(--horlu-orange);
      margin-bottom: 16px;
      font-family: var(--font-head);
    }

    .horlu-problem-card h3 {
      color: #FFFFFF;
      font-size: 20px;
      margin-bottom: 12px;
    }

    .horlu-problem-card p {
      color: #CBD5E1;
      font-size: 14px;
      line-height: 1.6;
    }

    /* =====================================================================
       7. FOUR CORE SOLUTIONS (Services Overview Slider)
    ===================================================================== */
    .horlu-solutions-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-bg);
      position: relative;
    }

    .horlu-solutions-slider-wrap {
      overflow: hidden;
      position: relative;
      padding: 12px 4px 24px;
      margin: 0 -4px;
    }

    .horlu-solutions-track {
      display: flex;
      gap: 28px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform;
    }

    .horlu-solution-card {
      background: var(--horlu-bg-card);
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-md);
      padding: 36px 30px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      position: relative;
      flex: 0 0 calc(33.333% - 19px);
      min-width: 280px;
    }

    @media (max-width: 1024px) {
      .horlu-solution-card {
        flex: 0 0 calc(50% - 14px);
      }
    }

    @media (max-width: 640px) {
      .horlu-solution-card {
        flex: 0 0 100%;
      }
    }

    .horlu-solution-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--horlu-orange);
    }

    .horlu-solution-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-sm);
      background-color: var(--horlu-navy);
      color: var(--horlu-orange);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: var(--transition);
    }

    .horlu-solution-card:hover .horlu-solution-icon {
      background-color: var(--horlu-orange);
      color: #FFFFFF;
    }

    .horlu-solution-title {
      font-size: 21px;
      margin-bottom: 12px;
    }

    .horlu-solution-desc {
      font-size: 14px;
      color: var(--horlu-muted);
      margin-bottom: 24px;
      line-height: 1.65;
      flex-grow: 1;
    }

    .horlu-solution-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      color: var(--horlu-orange);
    }

    .horlu-solution-card:hover .horlu-solution-link {
      color: var(--horlu-navy);
    }

    .horlu-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 32px;
    }

    .horlu-slider-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: var(--horlu-bg-card);
      border: 1px solid var(--horlu-border);
      color: var(--horlu-navy);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .horlu-slider-arrow:hover {
      background-color: var(--horlu-orange);
      color: #FFFFFF;
      border-color: var(--horlu-orange);
      transform: scale(1.08);
    }

    .horlu-slider-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .horlu-slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--horlu-border);
      cursor: pointer;
      transition: var(--transition);
    }

    .horlu-slider-dot.active {
      background-color: var(--horlu-orange);
      width: 24px;
      border-radius: var(--radius-full);
    }

    /* =====================================================================
       8. AI ADOPTION FRAMEWORK (4-Step Process)
    ===================================================================== */
    .horlu-framework-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-bg-card);
      border-top: 1px solid var(--horlu-border-light);
      border-bottom: 1px solid var(--horlu-border-light);
    }

    .horlu-framework-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
      position: relative;
    }

    .horlu-step-card {
      background: var(--horlu-bg);
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      position: relative;
    }

    .horlu-step-badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--horlu-orange);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-family: var(--font-head);
    }

    .horlu-step-card h3 {
      font-size: 19px;
      margin-bottom: 10px;
    }

    .horlu-step-card p {
      font-size: 14px;
      color: var(--horlu-muted);
      line-height: 1.6;
    }

    /* =====================================================================
       9. INDUSTRY VERTICALS GRID
    ===================================================================== */
    .horlu-industries-section {
      padding: clamp(70px, 8vw, 100px) 0;
      background-color: var(--horlu-bg-alt);
    }

    .horlu-industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }

    .horlu-industry-card {
      background: var(--horlu-bg-card);
      border: 1px solid var(--horlu-border);
      border-radius: var(--radius-md);
      padding: 30px;
      transition: var(--transition);
    }

    .horlu-industry-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--horlu-orange);
    }

    .horlu-industry-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
    }

    .horlu-industry-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background-color: var(--horlu-orange-soft);
      color: var(--horlu-orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .horlu-industry-card h3 {
      font-size: 19px;
    }

    .horlu-industry-card p {
      font-size: 14px;
      color: var(--horlu-muted);
      line-height: 1.6;
    }

    /* =====================================================================
       10. AI READINESS SCORECARD CTA BANNER
    ===================================================================== */
    .horlu-scorecard-section {
      padding: clamp(60px, 7vw, 80px) 0;
      background-color: var(--horlu-bg);
    }

    .horlu-scorecard-banner {
      background: linear-gradient(135deg, var(--horlu-navy) 0%, var(--horlu-navy-dark) 100%);
      color: #FFFFFF;
      border-radius: var(--radius-lg);
      padding: clamp(40px, 6vw, 64px);
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .horlu-scorecard-banner::before {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232, 130, 28, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .horlu-scorecard-content h2 {
      color: #FFFFFF;
      font-size: clamp(26px, 3.5vw, 38px);
      margin-bottom: 16px;
    }

    .horlu-scorecard-content p {
      color: #CBD5E1;
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .horlu-scorecard-action {
      display: flex;
      justify-content: flex-end;
    }

    /* =====================================================================
       11. WHY HORLU (Core Differentiators)
    ===================================================================== */
    .horlu-why-section {
      padding: clamp(80px, 9vw, 110px) 0 clamp(70px, 8vw, 100px);
      background-color: var(--horlu-bg-card);
      position: relative;
      border-top: 1px solid var(--horlu-border);
    }

    .horlu-emblem-divider-wrap {
      position: absolute;
      top: -90px;
      right: clamp(20px, 10vw, 160px);
      z-index: 10;
      width: 180px;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .horlu-emblem-svg {
      width: 100%;
      height: 100%;
      animation: horluRotateEmblem 14s linear infinite;
    }

    @keyframes horluRotateEmblem {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .horlu-emblem-dot {
      position: absolute;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background-color: var(--horlu-orange);
      box-shadow: 0 0 28px rgba(232, 130, 28, 0.65);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .horlu-why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
    }

    .horlu-why-card {
      text-align: center;
      padding: 32px 24px;
    }

    .horlu-why-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background-color: var(--horlu-orange-soft);
      color: var(--horlu-orange);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .horlu-why-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .horlu-why-card p {
      font-size: 14px;
      color: var(--horlu-muted);
      line-height: 1.65;
    }

    /* =====================================================================
       12. FINAL CTA & SITE FOOTER
    ===================================================================== */
    .horlu-footer {
      background-color: var(--horlu-navy-dark);
      color: #FFFFFF;
      padding: 80px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .horlu-footer-cta {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 80px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .horlu-footer-cta h2 {
      color: #FFFFFF;
      font-size: clamp(30px, 4vw, 42px);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .horlu-footer-cta p {
      color: #CBD5E1;
      font-size: 18px;
      line-height: 1.65;
      margin-bottom: 32px;
    }

    .horlu-footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .horlu-footer-brand p {
      color: #CBD5E1;
      font-size: 15px;
      margin-top: 16px;
      line-height: 1.65;
    }

    .horlu-footer-title {
      color: #FFFFFF !important;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.3px;
      margin-bottom: 22px;
      opacity: 1 !important;
    }

    .horlu-footer-links {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .horlu-footer-links a {
      color: #CBD5E1;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .horlu-footer-links a:hover {
      color: var(--horlu-orange);
    }

    .horlu-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #CBD5E1;
      font-size: 15px;
      line-height: 1.5;
    }

    .horlu-contact-icon {
      color: var(--horlu-orange);
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .horlu-contact-item a {
      color: #CBD5E1;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .horlu-contact-item a:hover {
      color: var(--horlu-orange);
    }

    .horlu-footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 14px;
      color: #94A3B8;
    }

    /* Modal Styling */
    .horlu-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 26, 46, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      padding: 20px;
    }

    .horlu-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .horlu-modal-box {
      width: 100%;
      max-width: 800px;
      background: #000000;
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .horlu-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      color: #FFFFFF;
      border: none;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .horlu-modal-video-wrap {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }

    .horlu-modal-video-wrap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Responsive Media Queries */
    @media (max-width: 1024px) {
      .horlu-hero-grid,
      .horlu-training-container,
      .horlu-lead-box,
      .horlu-scorecard-banner {
        grid-template-columns: 1fr;
      }
      .horlu-scorecard-action {
        justify-content: flex-start;
      }
      .horlu-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .horlu-mobile-menu {
      display: none;
    }

    @media (max-width: 768px) {
      .horlu-nav-menu,
      .horlu-header-actions .horlu-btn {
        display: none;
      }
      .horlu-mobile-toggle {
        display: block;
      }
      .horlu-mobile-menu {
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        border-top: 1px solid var(--horlu-border-light);
        margin-top: 16px;
      }
      .horlu-mobile-menu.active {
        display: flex;
      }
      .horlu-footer-grid {
        grid-template-columns: 1fr;
      }
      .horlu-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }/* End custom CSS */