.elementor-17607 .elementor-element.elementor-element-1d13bd4d{--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:0%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-17607 .elementor-element.elementor-element-2194b8a1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 10px 0px;text-align:center;}.elementor-17607 .elementor-element.elementor-element-2194b8a1 .elementor-heading-title{font-family:"Apercu", Sans-serif;font-size:36px;font-weight:bold;color:#000000;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-17607 .elementor-element.elementor-element-3d641842{width:var( --container-widget-width, 900px );max-width:900px;padding:0px 0px 0px 0px;--container-widget-width:900px;--container-widget-flex-grow:0;text-align:center;font-family:"Apercu", Sans-serif;font-size:16px;font-weight:normal;line-height:1.6em;color:#0C0C0C;}.elementor-17607 .elementor-element.elementor-element-3d641842.elementor-element{--align-self:center;}@media(max-width:1024px){.elementor-17607 .elementor-element.elementor-element-2194b8a1{padding:0px 20px 10px 20px;}.elementor-17607 .elementor-element.elementor-element-3d641842{padding:0px 20px 0px 20px;}.elementor-17607 .elementor-element.elementor-element-6ebf8bda{padding:0px 30px 0px 30px;}}@media(max-width:767px){.elementor-17607 .elementor-element.elementor-element-1d13bd4d{--justify-content:flex-start;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-17607 .elementor-element.elementor-element-2194b8a1{padding:0px 0px 0px 0px;}.elementor-17607 .elementor-element.elementor-element-3d641842{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 20px 0px 20px;}.elementor-17607 .elementor-element.elementor-element-6ebf8bda{padding:0px 10px 0px 10px;}}/* Start custom CSS for html, class: .elementor-element-6ebf8bda */.main-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 2vw !important;
    padding-bottom: 3vw !important;
    overflow: hidden;
}

.card-grid-container {
    display: flex;
    gap: 30px;
    perspective: 1000px;
}

.feature-card {
    position: relative;
    width: 250px; /* Made width and height equal for square cards */
    height: 250px; /* Made width and height equal for square cards */
    background: rgba(200, 200, 200, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(220, 220, 220, 0.8);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px) !important;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    transform: translateZ(0) rotateX(0deg) rotateY(0deg);

    /* CSS variables for shimmer effect */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Shimmer effect for the cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(
        circle 150px at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.3) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    transform: translateZ(5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
}

.card-content-wrapper {

    color: #333;
    transform: translateZ(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #333;
}

.card-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.card-description {
    font-size: 1em;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 1120px) {
    .card-grid-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3vw;
    }
    .feature-card {
        width: calc(50% - 1.7vw);
        height: auto;
        aspect-ratio: 1.4 / 1;
        padding: 1.6vw;
        min-height: auto;
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    }
    .card-content-wrapper {
        justify-content: flex-start;
        padding-top: 1vw;
        gap: 0.5vw;
    }
    .feature-card img {
        width: 10vw;
        height: 10vw;
        margin-bottom: 1vw;
        flex-shrink: 0;
    }
    .card-title {
        font-size: 4vw;
        min-height: 6vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card-description {
        font-size: 3vw;
    }
    .feature-card:hover {
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    }
    .feature-card::before {
        transform: translateZ(0px);
    }
}

@media (max-width: 756px) {
    .card-grid-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2vw;
    }
    .feature-card {
        width: calc(50% - 1vw);
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 3vw ;
        padding: 1vw;
        min-height: auto;
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    }
    .card-content-wrapper {
        justify-content: flex-start;
        padding-top: 4.5vw;
        gap: 1vw;
    }
    .feature-card img {
        width: 12vw;
        height: 12vw;
        margin-bottom: 1vw;
        flex-shrink: 0;
    }
    .card-title {
        font-size: 4.2vw;
        min-height: 7vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card-description {
        font-size: 3.4vw;
    }
    .feature-card:hover {
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    }
    .feature-card::before {
        transform: translateZ(0px);
    }
}/* End custom CSS */