.elementor-247 .elementor-element.elementor-element-76fc9d8{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-247 .elementor-element.elementor-element-76fc9d8:not(.elementor-motion-effects-element-type-background), .elementor-247 .elementor-element.elementor-element-76fc9d8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://sealstrust.com/wp-content/uploads/2026/03/bg-title2.jpg");}.elementor-247 .elementor-element.elementor-element-976fb5e{padding:0px 0px 0px 0px;}.elementor-247 .elementor-element.elementor-element-4ecb632{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-976fb5e */.hero-section {
            width: 100%;
            position: relative;
            padding: 100px 0;
            margin: 0 auto;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
        }

        .hero-column {
            width: 100%;
            text-align: center;
        }

        .hero-heading {
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
        }

        .hero-text {
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.6;
            color: #fff;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-description {
                font-size: 16px;
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-description {
                font-size: 15px;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-da10bd5 *//* import font awesome */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
    
    :root {
      --primary: #2F33FF;
      --primary-light: #5B5FFF;
      --primary-soft: #E9EAFF;
      --primary-glow: rgba(47, 51, 255, 0.15);
      --dark: #121826;
      --text: #1E2434;
      --text-light: #4A5268;
      --bg-light: #F8FAFE;
      --bg-offwhite: #FFFFFF;
    }

    .about-modern {
        margin: 80px auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1400px;
      width: 100%;
      background: var(--bg-offwhite);
      border-radius: 2.5rem;
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(47, 51, 255, 0.1);
    }

    .about-modern:hover {
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.09);
    }

    /* panels base */
    .panel {
      position: relative;
      overflow: hidden;
    }

    .left-panel {
      background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FF 100%);
      border-right: 1px solid rgba(47, 51, 255, 0.1);
      padding: 3.5rem 3rem;
    }

    .right-panel {
      background: #FFFFFF;
      padding: 3.5rem 3rem;
    }

    /* floating abstract shapes */
    .shape {
      position: absolute;
      border-radius: 50%;
      background: var(--primary);
      filter: blur(60px);
      opacity: 0.1;
      z-index: 0;
    }

    .shape-1 {
      width: 300px;
      height: 300px;
      top: -100px;
      left: -100px;
      animation: floatShape 20s infinite alternate;
    }

    .shape-2 {
      width: 200px;
      height: 200px;
      bottom: -50px;
      right: -50px;
      background: var(--primary-light);
      animation: floatShape 15s infinite alternate-reverse;
    }

    @keyframes floatShape {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(50px, 30px) scale(1.2); }
    }

    .left-inner, .right-inner {
      position: relative;
      z-index: 2;
    }

    /* brand header */
    .brand-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 2.2rem;
    }

    .brand-dot {
      width: 12px;
      height: 12px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulsePrimary 2s infinite;
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    @keyframes pulsePrimary {
      0% { box-shadow: 0 0 0 0 var(--primary); }
      70% { box-shadow: 0 0 0 10px rgba(47, 51, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(47, 51, 255, 0); }
    }

    .brand-name {
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      color: var(--primary);
      text-transform: uppercase;
    }

    /* headline */
    .headline {
      margin-bottom: 2.5rem;
    }

    .headline-small {
      font-size: 2rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.2;
      display: block;
    }

    .headline-large {
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.02em;
      line-height: 1;
      display: block;
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* belief card */
    .belief-card {
      background: linear-gradient(145deg, #FFFFFF, var(--primary-soft));
      border-radius: 2rem;
      padding: 2rem;
      margin: 2rem 0 2.5rem;
      border: 1px solid rgba(47, 51, 255, 0.2);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
    }

    .belief-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: var(--primary);
      transition: width 0.3s;
    }

    .belief-card:hover::before {
      width: 10px;
    }

    .belief-card:hover {
      transform: translateX(8px);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    .belief-icon-wrapper {
      width: 50px;
      height: 50px;
      background: var(--primary);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
      transition: all 0.4s;
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    .belief-card:hover .belief-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
    }

    .belief-text {
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--text);
      line-height: 1.5;
      margin: 0;
      flex: 1;
    }

    .belief-emphasis {
      font-weight: 700;
      color: var(--primary);
    }

    /* process steps */
    .process-container {
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
      margin: 2.5rem 0;
    }

    .process-step {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      transition: all 0.4s;
      cursor: default;
    }

    .process-step:hover {
      transform: translateX(12px);
    }

    .step-indicator {
      position: relative;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-indicator i {
      font-size: 1.8rem;
      color: var(--primary);
      z-index: 2;
      transition: all 0.4s;
    }

    .process-step:hover i {
      transform: scale(1.2);
      color: var(--primary-light);
    }

    .step-progress {
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px dashed var(--primary);
      animation: spin 8s linear infinite;
      opacity: 0.3;
      transition: all 0.4s;
    }

    .process-step:hover .step-progress {
      opacity: 1;
      animation-duration: 3s;
      border-style: solid;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .step-info {
      display: flex;
      flex-direction: column;
    }

    .step-title {
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      color: var(--dark);
      letter-spacing: 0.5px;
    }

    .step-desc {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    /* company details */
    .company-details {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 2px dashed rgba(47, 51, 255, 0.2);
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .detail-item {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .full-width {
      grid-column: 1 / -1;
      margin-bottom: 1.2rem;
    }

    .detail-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .detail-label i {
      font-size: 0.8rem;
    }

    .detail-value {
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--dark);
    }

    .address {
      font-weight: 400;
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    .phone-wrapper {
      margin-top: 1rem;
    }

    .phone-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      background: var(--primary-soft);
      display: inline-block;
      padding: 0.6rem 1.8rem;
      border-radius: 60px;
      border: 1px solid var(--primary);
      transition: all 0.4s;
      margin-top: 0.5rem;
      cursor: default;
    }

    .phone-number:hover {
      background: var(--primary);
      color: white;
      transform: scale(1.02);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    .phone-number i {
      margin-right: 8px;
      font-size: 1rem;
    }

    /* right panel sections */
    .section-marker {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .marker-line {
      width: 60px;
      height: 4px;
      background: var(--primary);
      border-radius: 4px;
      transition: width 0.4s;
    }

    .section-marker:hover .marker-line {
      width: 80px;
    }

    .marker-text {
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
      color: var(--primary);
      text-transform: uppercase;
    }

    .story-block p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .story-block strong {
      color: var(--primary);
      font-weight: 600;
    }

    .fade-in {
      animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* goal card */
    .goal-card {
      background: linear-gradient(135deg, var(--primary-soft), #FFFFFF);
      border-radius: 2rem;
      padding: 2rem;
      margin: 2rem 0;
      border: 1px solid var(--primary);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
      transition: all 0.5s;
      position: relative;
      overflow: hidden;
    }

    .goal-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(47, 51, 255, 0.1), transparent);
      transition: left 0.8s;
    }

    .goal-card:hover::after {
      left: 100%;
    }

    .goal-card:hover {
      transform: scale(1.02) translateY(-5px);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    .goal-mini {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .goal-main {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .goal-main i {
      color: var(--primary);
      font-size: 2.4rem;
    }

    /* tech grid */
    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin: 2.5rem 0;
    }

    .tech-card {
      background: #FFFFFF;
      border-radius: 1.5rem;
      padding: 2rem 1.5rem;
      border: 1px solid rgba(47, 51, 255, 0.2);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .tech-card:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    .tech-icon {
      width: 60px;
      height: 60px;
      background: var(--primary-soft);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 1.2rem;
      transition: all 0.4s;
    }

    .tech-card:hover .tech-icon {
      background: var(--primary);
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .tech-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .tech-card p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.5;
      margin: 0;
    }

    .card-glow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 0%, var(--primary-glow), transparent 70%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
      z-index: -1;
    }

    .tech-card:hover .card-glow {
      opacity: 1;
    }

    /* industries block */
    .industries-block {
      background: linear-gradient(145deg, #FFFFFF, var(--primary-soft));
      border-radius: 1.8rem;
      padding: 1.8rem 2rem;
      border: 1px solid var(--primary);
      font-size: 1rem;
      font-weight: 450;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin: 2rem 0;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
    }

    .industries-block::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 100%;
      background: var(--primary);
      opacity: 0.05;
      transition: width 0.4s;
    }

    .industries-block:hover::before {
      width: 100%;
      left: 0;
      right: auto;
    }

    .industries-block:hover {
      border-color: var(--primary);
      transform: scale(1.01);
    }

    .industries-block i {
      font-size: 2.2rem;
      color: var(--primary);
      transition: transform 0.6s;
    }

    .industries-block:hover i {
      transform: rotate(360deg) scale(1.1);
    }

    /* commitment block */
    .commitment-block {
      background: linear-gradient(135deg, var(--primary-soft), #FFFFFF);
      border-radius: 2rem 2rem 1.5rem 2rem;
      padding: 2rem 2.2rem;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--dark);
      border: 2px solid transparent;
      border-image: linear-gradient(135deg, var(--primary), var(--primary-light)) 1;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2rem;
      transition: all 0.5s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .commitment-block:hover {
      transform: scale(1.02);
      box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.05);
    }

    .commitment-icon {
      font-size: 2.8rem;
      color: var(--primary);
      transition: all 0.6s;
    }

    .commitment-block:hover .commitment-icon {
      transform: scale(1.2) rotate(5deg);
    }

    /* responsive */
    @media (max-width: 1000px) {
      .about-modern {
        grid-template-columns: 1fr;
      }
      .left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(47, 51, 255, 0.1);
      }
    }

    @media (max-width: 600px) {
      .left-panel, .right-panel {
        padding: 2rem 1.5rem;
      }
      .headline-large {
        font-size: 2.5rem;
      }
      .goal-main {
        font-size: 1.8rem;
      }
      .tech-grid {
        grid-template-columns: 1fr;
      }
    }/* End custom CSS */