/* Service Cards Custom Styles */
.box_section {
    width: 100% !important;
    float: left !important;
    border: 1px solid #e8f4f8 !important;
    padding: 40px 25px 35px 25px !important;
    transform: translateY(0px) !important;
    opacity: 1 !important;
    transition: all 0.4s ease !important;
    border-radius: 15px !important;
    box-shadow: 0 3px 20px rgba(137, 203, 235, 0.1) !important;
    background: #ffffff !important;
    margin: 10px !important;
    position: relative !important;
}



.box_section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #89cbeb, #367d99) !important;
    border-radius: 20px 20px 0 0 !important;
}

.box_section:hover {
    background: linear-gradient(145deg, #89cbeb 0%, #367d99 100%) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(137, 203, 235, 0.3) !important;
    border: 1px solid #89cbeb !important;
}

.box_section:hover .tile_text {
    color: #ffffff !important;
}

.box_section:hover .lorem_text {
    color: #ffffff !important;
}

.box_section:hover .service-icon {
    transform: scale(1.1) !important;
}

.box_section:hover .service-icon i {
    color: #ffffff !important;
}

.box_section.active {
    background: #ffffff !important;
    transform: translateY(0px) !important;
    opacity: 1 !important;
    border: 1px solid #e8f4f8 !important;
}

.box_section.animate {
    transform: translateY(0px) !important;
    opacity: 1 !important;
}

.service-icon {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #89cbeb, #367d99) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(137, 203, 235, 0.3) !important;
}

.service-icon i {
    font-size: 45px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.tile_text {
    width: 100% !important;
    float: left !important;
    font-size: 24px !important;
    color: #2d2d2c !important;
    text-align: center !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

.lorem_text {
    width: 100% !important;
    float: left !important;
    font-size: 15px !important;
    color: #666666 !important;
    text-align: center !important;
    margin-left: 0px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

#main_slider .carousel-inner {
    padding: 0 50px !important;
}

.services_section_2 {
    padding: 0 20px !important;
}

.card-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator-block {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #e8f4f8;
    border: 1px solid #d0e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-block.active {
    background: #89cbeb;
    border-color: #89cbeb;
    color: #ffffff;
    transform: scale(1.1);
}

.indicator-arrow-left,
.indicator-arrow-right {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #f0f8ff;
    border: 1px solid #d0e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #89cbeb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.indicator-arrow-left:hover,
.indicator-arrow-right:hover {
    background: #89cbeb;
    color: #ffffff;
    transform: scale(1.1);
}

@media (min-width: 769px) {
    .mobile-services-grid {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #main_slider {
        display: none !important;
    }
    
    .card-indicators {
        display: none !important;
    }
    
    .mobile-services-grid .box_section {
        margin: 20px 15px !important;
        border-radius: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 35px 25px !important;
        min-height: 200px !important;
    }
    
    .mobile-services-grid .service-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
    }
    
    .mobile-services-grid .service-icon i {
        font-size: 35px !important;
    }
    
    .mobile-services-grid .tile_text {
        font-size: 20px !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
    
    .mobile-services-grid .lorem_text {
        font-size: 15px !important;
        line-height: 1.5 !important;
        color: #666666 !important;
    }
}