.elementor-4433 .elementor-element.elementor-element-a59cf65{text-align:center;}/* Start custom CSS for text-editor, class: .elementor-element-a59cf65 */body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    line-height: 1.6;
    font-family: 'Inter', Arial, sans-serif;
}

.ourapp {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ourheader {
    text-align: center;
    margin-bottom: 60px;
}

.ourheader h1, .ourplatform-title-popup {
    font-size: 4rem;
    text-align: center;
    color: #059669;
    font-family: 'Inter', Arial, sans-serif;
}

.ourheader h1 {
    font-weight: 700;
    background: linear-gradient(135deg, #64A70B 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.ourheader p {
    font-size: 2rem;
    color: #6b7280;
    max-width: 1400px;
    margin: 0 auto;
}

.ourplatforms-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 40px;
}

.ourplatform-card {
    background: rgba(255, 255, 255, 0);
    border-radius: 0px;
    padding: 0px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ourplatform-card:hover {
    transform: translateY(-4px);
}

.ourplatform-ourheader {
    display: flex;
    align-items: center;
}

.ourplatform-icon {
    width: 128px;
    height: 128px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.10);
    flex-shrink: 0;
    border: 1.5px solid #e5e7eb;
}
.ourplatform-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 0.5px 2px rgba(0,0,0,0.08);
}

.ourplatform-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.ourplatform-modal-box {
    background: #fff;
    border-radius: 18px;
    width: 90vw;
    max-width: 2000px;
    position: fixed;
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
    bottom: 2%;
    max-height: unset;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    padding: 36px 28px 28px 28px;
    animation: modalIn 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* Responsive YouTube video in modal */
.ourplatform-modal-box .responsive-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 32px auto 0 auto;
}
.ourplatform-modal-box .responsive-video-container iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
    border-radius: 12px;
    background: #eee;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: none; opacity: 1; }
}

@keyframes slideUpSmooth {
    from { 
        transform: translateX(-50%) translateY(100vh) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.ourplatform-modal-close-btn {
    position: sticky;
    top: 0;
    float: right;
    margin-top: 0;
    margin-right: 0;
    background: rgba(255, 255, 255, 0);
    border: rgba(255, 255, 255, 0);
    font-size: 6rem;
    color: #e7210b;
    font-weight: bold;
    cursor: pointer;
    line-height: 0;
    padding: 0;
    z-index: 10;
    box-shadow: rgba(255, 255, 255, 0);
    transition: color 0.2s;
    display: block;
    float: right;
}
.ourplatform-modal-close-btn:hover {
    color: #d11313 !important;
}

.ourplatform-title {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin: 8px 0 0 0;
    font-weight: 600;
    color: #059669;
}

.ourplatform-title-popup {
    font-size: 3rem;
    font-weight: 700;
    color: #059669;
    text-align: center;
    margin-top: 2rem;
    padding-left: 2rem;
}

.ourplatform-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.ourplatform-card.expanded .ourplatform-content {
    max-height: 2000px;
}

.oursection {
    margin-bottom: 20px;
}

.oursection:last-child {
    margin-bottom: 0;
}

.oursection-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oursection-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, #64A70B, #059669);
    border-radius: 2px;
}

.oursection-text {
    font-size: 2rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: left;
}

.oursection-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.oursection-list li {
    font-size: 2rem;
    color: #6b7280;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.oursection-list li::before {
    content: '•';
    color: #64A70B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.expand-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.platform-card.expanded .expand-btn {
    transform: rotate(180deg);
    color: #64A70B;
}

@media (max-width: 1200px) {
    .ourplatforms-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .ourheader h1 {
        font-size: 3rem;
    }
    .ourplatform-icon {
        width: 96px;
        height: 96px;
    }
    .ourplatform-modal-box .responsive-video-container {
        max-width: 98vw;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .ourplatforms-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 1fr);
    }
    .ourheader h1 {
        font-size: 2rem;
    }
    .ourplatform-icon {
        width: 72px;
        height: 72px;
    }
    .ourplatform-card {
        padding: 10px;
    }
    .ourplatform-modal-box .responsive-video-container {
        max-width: 100vw;
        min-width: 0;
        min-height: 180px;
    }
    .ourplatform-modal-box .responsive-video-container iframe {
        min-height: 180px;
    }
}/* End custom CSS */