.elementor-414 .elementor-element.elementor-element-4b03d0e{--display:flex;overflow:visible;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-icon i{color:var( --e-global-color-secondary );transition:color 0.3s;}.elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-icon svg{fill:var( --e-global-color-secondary );transition:fill 0.3s;}.elementor-414 .elementor-element.elementor-element-d89df3d{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-item > .elementor-icon-list-text, .elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-item > a{font-family:"Urbanist", Sans-serif;font-size:16px;font-weight:700;text-transform:capitalize;}.elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-text{color:var( --e-global-color-primary );transition:color 0.3s;}@media(max-width:767px){.elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-item > .elementor-icon-list-text, .elementor-414 .elementor-element.elementor-element-d89df3d .elementor-icon-list-item > a{font-size:12px;}}/* Start custom CSS for html, class: .elementor-element-aeffc63 *//* Container & Base Styles */
.ip-bento-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #0d3254;
}

.ip-bento-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* =========================================
   ANIMATIONS (Entrance & Hover)
   ========================================= */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.ip-bento-card {
    background: linear-gradient(180deg, #eff6fb 0%, #ffffff 40%);
    border: 1px solid #d1e2ef;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0; 
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ip-card-hero { animation-delay: 0.1s; }
.ip-card-services { animation-delay: 0.2s; }
.ip-card-process { animation-delay: 0.3s; }
.ip-card-docs { animation-delay: 0.4s; }
.ip-card-experts { animation-delay: 0.5s; }

.ip-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #a9c6de;
}

.ip-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #0d3254;
}
.text-center { text-align: center; }

/* =========================================
   ROW 1 SIZING & IMAGE FIX
   ========================================= */
.ip-card-hero {
    flex: 2; 
    padding: 0; 
    background: #0ea1d8; 
    /* INCREASED HEIGHT: Change this number if you want it even taller or shorter */
    min-height: 370px; 
    position: relative; 
    overflow: hidden;
}

.ip-hero-img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This acts like background-size: cover for actual image tags */
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.ip-card-hero:hover .ip-hero-img {
    transform: scale(1.03); 
}

.ip-card-services { flex: 1; } 

/* Services List */
.ip-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ip-service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: default;
}
.ip-service-list li:hover {
    transform: translateX(8px);
    color: #1a73e8;
}
.ip-service-list li:last-child { margin-bottom: 0; }
.ip-service-list svg { width: 24px; height: 24px; flex-shrink: 0; }

/* --- ROW 2 SIZING --- */
.ip-card-process { flex: 2; } 
.ip-card-docs { flex: 1; } 
.ip-card-experts { flex: 1; } 

/* Timeline Process Flow */
.ip-timeline-wrapper {
    position: relative;
    padding: 30px 0 10px 0;
}
.ip-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.ip-timeline-line {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #0d3254;
    z-index: -1;
}
.ip-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    cursor: default;
}
.ip-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #0d3254;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.ip-step:hover .ip-step-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.25);
    border-color: #1a73e8;
}
.ip-step-icon.fill-blue {
    background: #1a73e8;
    border-color: #1a73e8;
}
.ip-step-icon svg { width: 22px; height: 22px; }

/* Timeline Floating Badges */
.ip-time-badge {
    position: absolute;
    background: #0d3254;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    z-index: 3;
    transition: background 0.3s ease;
}
.ip-time-badge:hover { background: #1a73e8; }
.badge-left { top: -10px; left: 0; }
.badge-right { top: -10px; right: 0; }
.badge-bottom { bottom: -20px; left: 50%; transform: translateX(-50%); }

/* Documents Grid */
.ip-docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 10px;
}
.ip-doc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    cursor: default;
}
.ip-doc-item svg {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}
.ip-doc-item:hover svg {
    transform: translateY(-6px) scale(1.05);
}

/* Experts Stats Grid */
.ip-card-experts .ip-card-title {
    text-decoration: underline;
    text-decoration-color: #1a73e8;
    text-underline-offset: 4px;
}
.ip-experts-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.ip-expert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ip-badge-icon svg {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    transition: transform 0.4s ease;
}
.ip-expert-item:hover .ip-badge-icon svg {
    transform: rotateY(180deg);
}
.ex-number {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.ex-label {
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
}

/* --- MOBILE RESPONSIVENESS REFINEMENT --- */

/* Tablet (900px) */
@media (max-width: 900px) {
    .ip-bento-row { flex-wrap: wrap; }
    /* INCREASED HEIGHT FOR MOBILE/TABLET TOO */
    .ip-card-hero { flex: 1 1 100%; min-height: 250px; } 
    .ip-card-services { flex: 1 1 100%; }
    .ip-card-process { flex: 1 1 100%; }
    .ip-card-docs { flex: 1 1 45%; }
    .ip-card-experts { flex: 1 1 45%; }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .ip-card-docs, .ip-card-experts { flex: 1 1 100%; }
    .ip-timeline-line { display: none; }
    .ip-timeline { 
        flex-direction: column; 
        align-items: center; 
        gap: 25px; 
    }
    .ip-step { 
        width: 100%; 
        flex-direction: row; 
        text-align: left; 
        gap: 20px; 
        justify-content: flex-start; 
        padding-left: 10%;
    }
    .ip-time-badge { 
        position: relative; 
        top: 0; left: 0; right: 0; bottom: 0; 
        transform: none; 
        width: max-content; 
        margin: 0 auto 20px auto; 
    }
}

/* Update the Services Card to use Flexbox so the button sits at the bottom */
.ip-card-services { 
    flex: 1; 
    display: flex;
    flex-direction: column;
} 

.ip-service-list { 
    flex-grow: 1; 
}

/* Trigger Popup Button Styling */
.ip-action-btn {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.2);
}

.ip-action-btn:hover {
    background: #0d3254;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(13, 50, 84, 0.2);
}/* End custom CSS */