

.ezpi6y__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ezpi6y__loader-wrapper {
        background: var(--ezpi6y__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--ezpi6y__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .ezpi6y__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--ezpi6y__pastel_dark);
        border-top: 3px solid var(--ezpi6y__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }





.about-shape-section {
    position: relative;
    overflow: hidden;
  }

  .about-shape-section::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1), transparent 70%);
    z-index: 0;
    border-radius: 50%;
  }

.about-triangle-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-triangle-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-bottom: 150px solid rgba(255, 193, 7, 0.2); /* bg-warning */
    z-index: 0;
  }

  .about-triangle-section .row-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .about-triangle-section .row-content h2 {
    flex: 1 1 auto;
    margin-right: 20px;
  }

  .about-triangle-section .row-content p {
    flex: 2 1 auto;
  }
.about-icons-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-icons-section .icon-feature {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0d6efd;
  }

  .about-icons-section .image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 0.75rem;
  }












