/* Services Page Premium Styles */

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.text-xs {
    font-size: 0.75rem;
    vertical-align: middle;
}

.text-lg {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.mt-2 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.section-padding {
    padding: 6rem 0;
}

.pb-padding {
    padding-bottom: 6rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}

.col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}

.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .flex-row-reverse {
        flex-direction: row-reverse;
    }

    .pl-lg-4 {
        padding-left: 3rem;
    }

    .pr-lg-4 {
        padding-right: 3rem;
    }
}

.align-center {
    align-items: center;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 8rem 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1579154204601-01588f351e67?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(2, 132, 199, 0.8));
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #e0f2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    color: #cbd5e1;
    font-family: var(--font-heading);
}

.breadcrumb a {
    color: #fff;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Typography */
.sub-heading {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Service Elements */
.service-row {
    position: relative;
}

.glass-card {
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.service-img-box {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.service-row:hover .service-img-box {
    transform: scale(1.02);
}

.service-img-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-row:hover .service-img-box::before {
    opacity: 1;
}

.service-big-icon {
    font-size: 7rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.service-row:hover .service-big-icon {
    transform: translateY(-10px) scale(1.1);
}

/* Gradients for different services */
.bg-gradient-blue {
    background: linear-gradient(135deg, #0284c7, #2563eb);
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.bg-gradient-red {
    background: linear-gradient(135deg, #e11d48, #f43f5e);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
}

.service-details {
    position: relative;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(2, 132, 199, 0.05);
    position: absolute;
    top: -3rem;
    left: -1rem;
    z-index: -1;
    line-height: 1;
}

.service-details h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-features li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.service-features i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .service-img-box {
        margin-bottom: 2rem;
        height: 250px;
    }

    .service-number {
        top: -1.5rem;
        left: 0;
    }
}