.elementor-41 .elementor-element.elementor-element-eb2104c{--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;--margin-top:-10px;--margin-bottom:-10px;--margin-left:0px;--margin-right:0px;}.elementor-41 .elementor-element.elementor-element-f78bf45{--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;}.elementor-41 .elementor-element.elementor-element-b31d03a{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-41 .elementor-element.elementor-element-e35b448{--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;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-41 .elementor-element.elementor-element-53341da{--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;}.elementor-41 .elementor-element.elementor-element-080ac82{--display:flex;--margin-top:00px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-41 .elementor-element.elementor-element-4cd99cc{border-radius:0px 0px 0px 0px;}body.elementor-page-41:not(.elementor-motion-effects-element-type-background), body.elementor-page-41 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#020B25;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-41 .elementor-element.elementor-element-eb2104c{--content-width:1600px;}.elementor-41 .elementor-element.elementor-element-f78bf45{--content-width:1600px;}.elementor-41 .elementor-element.elementor-element-e35b448{--content-width:1600px;}.elementor-41 .elementor-element.elementor-element-53341da{--content-width:1600px;}.elementor-41 .elementor-element.elementor-element-080ac82{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-5f58216 */:root {
    --bg-color: #020B25;
    --primary-accent: #A855F7;
    --secondary-glow: #6D5DF6;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(168, 85, 247, 0.2);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --transition-standard: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 120px 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-section * {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Background Effects */
.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.bg-glow-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    transition: opacity 1s ease, transform 2s ease;
}

.bg-glow-2 {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109,93,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
}

.about-container {
    max-width: 1200px; /* Expanded parameter to support wide inline 4x1 grids cleanly */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

/* Top Section: Company Story */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center; 
    text-align: center; 
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.content-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
    align-self: center; 
}

.section-badge span {
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading {
    color: #FFFFFF; /* Forces the main section header text to white */
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 0;
}

.heading-line {
    display: block;
    overflow: hidden;
}

.heading-text {
    display: block;
    color: #FFFFFF; /* Ensures hidden animation layers stay white */
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-wrapper.visible .heading-text {
    transform: translateY(0);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #FF4B91, var(--primary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.company-description {
    max-width: 650px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 1s ease 0.3s;
}

.content-wrapper.visible .company-description {
    opacity: 1;
}

.company-description p {
    margin-bottom: 24px;
    margin-top: 0;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    margin-bottom: 16px;
    max-width: 700px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    padding: 8px 0;
    transition: var(--transition-standard);
    opacity: 0;
    transform: translateY(20px);
}

.content-wrapper.visible .feature-item {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--primary-accent);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
    transition: var(--transition-standard);
}

.feature-item:hover .feature-icon {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    background: rgba(168, 85, 247, 0.2);
}

.feature-icon svg {
    width: 12px;
    height: 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-glow));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.6);
    transition: var(--transition-standard);
    align-self: center; 
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.content-wrapper.visible .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(168, 85, 247, 0.8);
    color: #fff;
}

.cta-arrow {
    transition: transform 0.3s ease;
    display: flex;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* --- ALTERED LAYOUT ENGINE: Clean 4x1 Row Structure --- */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Set to a clean 4-wide inline matrix */
    gap: 24px;
    position: relative;
    width: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 40px 20px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.statistics-grid.visible .stat-card {
    opacity: 1;
    transform: translateY(0);
}

.statistics-grid.visible .stat-card:nth-child(1) { transition-delay: 0.1s; }
.statistics-grid.visible .stat-card:nth-child(2) { transition-delay: 0.2s; }
.statistics-grid.visible .stat-card:nth-child(3) { transition-delay: 0.3s; }
.statistics-grid.visible .stat-card:nth-child(4) { transition-delay: 0.4s; }

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
    z-index: 2;
}

.statistics-grid.visible .stat-card:hover {
    transform: translateY(-6px); 
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(168,85,247,0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-standard);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    transform-origin: center bottom; 
}

.stat-card:hover .stat-number-wrapper {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3.5rem; /* Adjusted parameters to keep inline cards compact */
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-suffix {
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(to right, #FF4B91, var(--primary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.accent-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent); 
    margin-top: 20px;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.stat-card:hover .accent-line {
    width: 60px;
}

/* Responsive Rules Configuration */
@media (max-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 layout fallback cleanly preserved for tablet screens */
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px;
    }

    .section-heading {
        font-size: 2.8rem;
    }
    
    .statistics-grid {
        gap: 16px;
    }
    
    .stat-card {
        padding: 32px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    .feature-list {
        flex-direction: column; 
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 2.3rem;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr; /* 1 column structure for narrow viewports */
    }
}/* End custom CSS */