/* ========================================
   SERVICE PAGES SHARED STYLES
   Common patterns across all service pages
   ======================================== */

/* Service Card Hover Effects */
.software-service-card,
.service-feature-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.software-service-card:hover,
.service-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Service Icon Circle */
.service-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06A3DA 0%, #0582b5 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-icon-circle-sm {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Technology Badge */
.tech-badge {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tech-badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 12px;
}

.tech-badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Service Description Text */
.service-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
}

.service-section-title {
    color: #091E3E;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-section-text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.5;
    max-width: 900px;
}

/* Service Feature Card */
.service-feature-item {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    height: 100%;
}

/* Service Feature Icon Circle */
.service-feature-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* Service Feature Heading */
.service-feature-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* About Section Gradient Background */
.about-gradient-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

/* White Section Background */
.white-section-bg {
    background: #fff;
}

/* Phone Mockup */
.phone-mockup {
    max-width: 280px;
    margin: 0 auto;
}

.phone-mockup-frame {
    border: 6px solid #1a1a1a;
    border-radius: 30px !important;
}

.phone-mockup-screen {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px !important;
}

.phone-mockup-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    border-radius: 0 0 12px 12px;
}

/* Technology Section Background */
.tech-section-bg {
    background: #f0f4f8;
}

/* Leads Form Input Focus */
.leads-input:focus {
    border-color: #06A3DA !important;
    box-shadow: 0 0 0 0.2rem rgba(6,163,218,0.18) !important;
    outline: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-icon-circle {
        width: 65px;
        height: 65px;
    }
    .service-section-title {
        font-size: 1.3rem;
    }
    .tech-badge {
        padding: 10px;
    }
    .tech-badge-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .software-service-card:hover,
    .service-feature-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}
