:root {
  --color-primary: #81D3FF;
  --color-primary-dark: #17bcce;
  --color-dark-bg: #0f172a;
  --color-dark-bg-secondary: #1e293b;
  --color-text-light: #ffffff;
  --color-text-muted: #d1d5db;
  --color-text-dark: #0f172a;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;
  
}

.wrapall{
  background: #0F172A !important;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  font-family: var(--font-montserrat);
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.container {
  padding-left: 90px;
  padding-right: 90px;
  margin: 0 auto;
  max-width: 1260px;
}

.text-highlight {
  color: var(--color-primary);
}

.text-highlight-white {
  color: var(--color-text-light);
}

.text-highlight-ibeam {
  color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* CSS from section:hero */
.hero-section {
    background-color: var(--color-dark-bg);
    /* padding-top: 100px; */
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-line {
    position: absolute;
    top: 183px;
    left: -173px;
    width: 1588px;
    height: 1011px;
    opacity: 0.4;
    z-index: 0;
  }
  .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  .hero-text-content {
    flex: 1;
    max-width: 613px;
    margin-top: 110px;
  }
  .hero-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 2.6rem !important;
    line-height: 1.2;
    color: var(--color-text-light);
    margin: 0 0 32px 0;
  }
  .hero-title .text-highlight {
    color: var(--color-primary);
  }
  .hero-description {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin: 0 0 45px 0;
  }
  .hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .hero-cta-button:hover {
    background-color: #33eaff;
  }
  .hero-cta-button img {
    width: 28px;
    height: 30px;
  }
  .hero-image-container {
    position: relative;
    width: 480px;
    height: 445px;
    flex-shrink: 0;
  }
  .hero-img-ellipse {
    position: absolute;
    top: 0;
    left: 0;
    width: 306px;
    height: 306px;
  }
  .hero-img-secondary {
    position: absolute;
    top: 40px;
    left: 1px;
    width: 615px;
    height: 482px;
  }
  .hero-img-clipped {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 442px;
    overflow: hidden;
  }
  /* .hero-img-main {
    width: 1154px;
    height: 660px;
    position: absolute;
    top: -124px;
    right: 0px;
  } */
  .hero-bottom-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 4px;
    background: url("/wp-content/themes/unicon/assets/image/line_shadow.svg") no-repeat;
    background-position: center;
  }

  @media (max-width: 1200px) {
    .hero-content-wrapper {
      flex-direction: column;
      text-align: center;
    }
    .hero-text-content {
      max-width: 100%;
    }
    .hero-image-container {
      margin-top: 40px;
      transform: scale(0.8);
    }
  }
  @media (max-width: 768px) {
    .hero-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    .hero-title {
      font-size: 36px;
    }
    .hero-description {
      font-size: 18px;
    }
    .hero-image-container {
      transform: scale(0.7);
      margin-top: 0;
      height: 350px;
    }
  }

/* CSS from section:crisis */
.crisis-section {
    padding: 120px 0;
    background: url("/wp-content/themes/unicon/assets/image/crisis_bg.svg");
    background-position: left top;
    background-repeat: no-repeat;
    position: relative;
  }
  .crisis-section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 60px;
    height: 100%;
    width: 100%;
    background: url("/wp-content/themes/unicon/assets/image/crisis_line.svg") no-repeat;
    background-size: contain;
    background-position: left top;
  }
  .crisis-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 42px;
    line-height: 66px;
    text-align: center;
    margin: 0 0 60px 0;
    color: #ffffff;
  }
  .crisis-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
  }
  .crisis-intro-image {
    flex: 1;
    max-width: 360px;
  }
  .crisis-intro-image img {
    width: 100%;
    height: auto;
  }
  .crisis-intro-text {
    flex: 2;
    max-width: 710px;
  }
  .crisis-intro-text h3 {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 20px 0;
    color: #ffffff;
  }
  .crisis-intro-text p {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 20px 0;
    color: #ffffff;
  }
  .crisis-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .crisis-card {
    background: linear-gradient(134deg, #d3ecff 0%, #ffffff 94.16%);
    border: 1px solid #c6e7ff;
    border-radius: 6px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .card-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-icon-wrapper img {
    width: 100%;
    height: 100%;
  }
  .card-text-content h4 {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #000000;
    margin: 0 0 16px 0;
  }
  .card-text-content p {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #52525b;
    margin: 0;
  }

  @media (max-width: 992px) {
    .crisis-intro {
      flex-direction: column;
      text-align: center;
    }
    .crisis-cards-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 768px) {
    .crisis-section {
      padding: 80px 0;
    }
    .crisis-title {
      font-size: 32px;
      line-height: 1.3;
    }
    .crisis-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

/* CSS from section:architecture */
.architecture-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: url("/wp-content/themes/unicon/assets/image/Architecture_bg.svg") no-repeat;
    background-position: top left;
    background-size: cover;
  }
  .arch-bg-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1729px;
    height: 1101px;
    opacity: 0.4;
    z-index: 0;
  }
  .arch-bg-rect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 960px;
    height: 806px;
    transform: rotate(180deg);
    z-index: 0;
  }
  .architecture-section .container {
    position: relative;
    z-index: 1;
  }
  .architecture-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 42px;
    line-height: 60px;
    margin: 0 0 80px 0;
    max-width: 760px;
    color: #fff;
  }
  .architecture-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
  .architecture-left {
    flex: 1;
    max-width: 348px;
  }
  .architecture-left h3 {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #fff;
  }
  .architecture-left p {
    font-family: var(--font-montserrat);
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    color: #fff;;
  }
  .architecture-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .arch-feature-item {
    display: flex;
    gap: 30px;
  }
  .arch-feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-basis: 285px;
    flex-shrink: 0;
  }
  .arch-feature-header img {
    width: 40px;
    height: 40px;
  }
  .arch-feature-header h4 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
  }
  .arch-feature-body {
    flex: 1;
    padding-left: 30px;
    border-left: 1px solid var(--color-primary);
  }
  .arch-feature-body p {
    font-family: var(--font-montserrat);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    color: #fff;
  }

  @media (max-width: 992px) {
    .architecture-content {
      flex-direction: column;
      gap: 60px;
    }
    .architecture-left, .architecture-right {
      max-width: 100%;
    }
  }
  @media (max-width: 768px) {
    .architecture-section {
      padding: 80px 0;
    }
    .architecture-title {
      font-size: 32px;
      line-height: 1.3;
      margin-bottom: 60px;
    }
    .arch-feature-item {
      flex-direction: column;
      gap: 20px;
    }
    .arch-feature-body {
      padding-left: 0;
      border-left: none;
      padding-top: 20px;
      border-top: 1px solid var(--color-primary);
    }
  }

/* CSS from section:framework */
.framework-section {
    padding-top: 80px !important;
    background: url("/wp-content/themes/unicon/assets/image/technical_implementbg.svg") no-repeat;
    background-position: top center;
    background-size: contain;
    padding-bottom: 150px;
  }
  
  .framework-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 42px;
    line-height: 56px;
    letter-spacing: -0.96px;
    margin: 0 0 60px 0;
    max-width: 832px;
  }
  .framework-grid-wrapper {
    padding-left: 90px;
    padding-right: 90px;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .framework-grid-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .framework-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 1fr);
    gap: 24px;
    padding-bottom: 20px; /* for scrollbar space if visible */
  }
  .framework-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 8px 48px 0px rgba(24, 24, 27, 0.08), 0px 4px 8px 0px rgba(24, 24, 27, 0.04), 0px 0px 2px 0px rgba(24, 24, 27, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .framework-card-img-bg {
    height: 177px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .framework-card-img-bg img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .framework-card-content {
    padding: 24px 32px 30px;
    color: var(--color-text-dark);
    flex-grow: 1;
  }
  .framework-card-content h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.48px;
    margin: 0 0 24px 0;
  }
  .framework-card-content p {
    font-family: var(--font-inter);
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 24px 0;
  }
  .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
  }
  .features-list li img {
    width: 16.25px;
    height: 18.25px;
    margin-top: 1px;
  }
  .technology_section{
        width: 1120px;
    margin: 0px auto;
  }
.technology_stock{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.technology_section h3{
    text-align: center;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    padding: 40px 0px;
}
.technology_stock ul{
  display: flex;
  border: 1px solid #435269;
  position: relative;
  padding: 30px 10px 15px 10px;
  border-radius: 4px;
}
.technology_stock ul span{
  position: absolute;
    top: -22px;
    left: 20px;
    padding: 4px 15px;
    background: #38BDF8;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}
.technology_stock ul li{
  list-style: none;
  margin: 0px 10px;
}
  @media (max-width: 1440px) {
    .framework-grid {
      grid-auto-columns: minmax(406px, 1fr);
    }
  }

  @media (max-width: 768px) {
    .framework-grid-wrapper {
      padding-left: 20px;
      padding-right: 20px;
    }
    .framework-title {
      font-size: 32px;
      line-height: 1.3;
    }
    .framework-grid {
      grid-auto-columns: minmax(280px, 1fr);
    }
  }

  
        /* Scroll Container */
        .framework-grid-wrapper {
            /* position: relative;
            padding: 0 90px;
            overflow: hidden; */
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 60px;
        }

        .framework-grid {
            display: flex;
            gap: 24px;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .framework-card {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0px 8px 48px 0px rgba(24, 24, 27, 0.08), 
                        0px 4px 8px 0px rgba(24, 24, 27, 0.04), 
                        0px 0px 2px 0px rgba(24, 24, 27, 0.25);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            flex-shrink: 0;
            width: 360px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .framework-card:hover {
            transform: translateY(-8px);
            box-shadow: 0px 16px 64px 0px rgba(24, 24, 27, 0.15), 
                        0px 8px 16px 0px rgba(24, 24, 27, 0.08), 
                        0px 0px 4px 0px rgba(24, 24, 27, 0.35);
        }

        .framework-card-img-bg {
            height: 177px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .framework-card-img-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .framework-card:hover .framework-card-img-bg::before {
            opacity: 1;
        }

        .framework-card-img-bg img {
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .framework-card:hover .framework-card-img-bg img {
            transform: scale(1.1);
        }

        .framework-card-content {
            padding: 24px 32px 30px;
            color: var(--color-text-dark);
            flex-grow: 1;
        }

        .framework-card-content h3 {
            font-family: var(--font-montserrat);
            font-weight: 700;
            font-size: 22px;
            line-height: 32px;
            letter-spacing: -0.48px;
            margin: 0 0 24px 0;
            color: #2d3748;
        }

        .framework-card-content p {
            font-family: var(--font-inter);
            font-size: 14px;
            line-height: 22px;
            margin: 0 0 24px 0;
            color: #4a5568;
        }

        .framework-card-content p strong {
            color: #2d3748;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--font-inter);
            font-weight: 500;
            font-size: 14px;
            line-height: 1.4;
            color: #4a5568;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .framework-card:hover .features-list li {
            animation: slideInLeft 0.6s ease forwards;
        }

        .features-list li:nth-child(1) { animation-delay: 0.1s; }
        .features-list li:nth-child(2) { animation-delay: 0.2s; }
        .features-list li:nth-child(3) { animation-delay: 0.3s; }
        .features-list li:nth-child(4) { animation-delay: 0.4s; }
        .features-list li:nth-child(5) { animation-delay: 0.5s; }
        .features-list li:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .check-icon {
            width: 16px;
            height: 16px;
            background: var(--color-primary);
            border-radius: 50%;
            position: relative;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .check-icon::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        /* Navigation Arrows */
        .scroll-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
            padding: 0;
        }

        .scroll-nav:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
        }

        .scroll-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .scroll-nav.disabled {
            opacity: 1;
            cursor: not-allowed;
        }

        .scroll-nav.disabled:hover {
            transform: translateY(-50%) scale(1);
        }

        .scroll-nav-left {
            left: 20px;
        }

        .scroll-nav-right {
            right: 20px;
        }

        .scroll-nav svg {
            width: 24px;
            height: 24px;
            fill: #4a5568;
        }

        /* Progress Indicator */
        .scroll-progress {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .progress-dot.active {
            background: var(--color-primary);
            transform: scale(1.2);
        }

        .progress-dot:hover {
            background: rgba(255, 215, 0, 0.7);
        }

        /* Touch/Swipe Indicators */
        .scroll-hint {
            position: absolute;
            bottom: -30px;
            right: 90px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 1440px) {
            .framework-card {
                width: 406px;
            }
        }

        @media (max-width: 768px) {
            .framework-grid-wrapper {
                padding: 0 50px;
            }

            .framework-title {
                font-size: 32px;
                line-height: 1.3;
            }

            .framework-card {
               flex: 0 0 280px;
            }

            .scroll-nav {
                width: 40px;
                height: 40px;
            }

            .scroll-nav svg {
                width: 20px;
                height: 20px;
            }

            .scroll-nav-left {
                left: 10px;
            }

            .scroll-nav-right {
                right: 10px;
            }

            .scroll-hint {
                right: 20px;
                font-size: 12px;
            }
        }

  

/* CSS from section:ibeam */
.ibeam-section {
    background-color: var(--color-dark-bg-secondary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .ibeam-bg-blur {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 94px;
    filter: blur(200px);
    z-index: 0;
  }
  .ibeam-section .container {
    position: relative;
    z-index: 1;
  }
  .ibeam-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
  }
  .ibeam-left-col {
    flex: 1;
    max-width: 545px;
  }
  .ibeam-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: var(--color-text-light);
  }
  .ibeam-description {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #f8fafc;
    margin: 0 0 60px 0;
  }
  .ibeam-stats {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .stat-item {
    text-align: left;
  }
  .stat-number {
    display: block;
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 30px;
    color: var(--color-primary);
    line-height: 1.1;
  }
  .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-top: 10px;
    display: block;
  }
  .stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-primary-dark);
  }
  .ibeam-right-col {
    flex: 1;
    max-width: 554px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ibeam-card {
    background: linear-gradient(134deg, #e1f1fd 0%, #ffffff 57.93%);
    border: 1px solid #c6e7ff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  .ibeam-card img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .ibeam-card h4 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #222222;
    margin: 0 0 10px 0;
  }
  .ibeam-card p {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #222222;
    margin: 0;
  }

  @media (max-width: 992px) {
    .ibeam-content-wrapper {
      flex-direction: column;
      gap: 60px;
    }
    .ibeam-left-col, .ibeam-right-col {
      max-width: 600px;
    }
    .ibeam-left-col {
      text-align: center;
    }
    .ibeam-stats {
      justify-content: center;
    }
  }
  @media (max-width: 768px) {
    .ibeam-section {
      padding: 80px 0;
    }
    .ibeam-title {
      font-size: 32px;
    }
    .ibeam-stats {
      flex-direction: column;
      gap: 30px;
    }
    .stat-divider {
      display: none;
    }
    .stat-item {
      text-align: center;
    }
  }