.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-size:20px;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 p{margin-block-end:0px;}.elementor-kit-7 h2{font-size:48px;text-decoration:none;line-height:37px;}.elementor-kit-7 h6{color:#000000;font-size:17px;font-weight:400;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container for all cards */
.product-cards-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 40px 20px;
}

/* Individual card styling */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    min-width: 300px;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Card icon/logo */
.product-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-card .card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Icon backgrounds */
.product-card.transact2 .card-icon {
    background: #F4D03F;
}

.product-card.clockit .card-icon {
    background: #F7DC6F;
}

.product-card.order2b .card-icon {
    background: #000000;
}

/* Card title */
.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Card description */
.product-card p {
    font-size: 16px;
    color: #7F8C8D;
    line-height: 1.6;
    margin: 0 0 30px 0;
    min-height: 50px;
}

/* View More button */
.product-card .view-more-btn {
    background: #F1C40F;
    color: #2C3E50;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
}

.product-card .view-more-btn:hover {
    background: #D4AC0D;
    transform: translateY(-2px);
    color: #2C3E50;
}

/* Responsive design */
@media (max-width: 768px) {
    .product-cards-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .product-card {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .product-cards-container {
        gap: 30px;
    }
    
    .product-card {
        min-width: 280px;
    }
}/* End custom CSS */