
        .service-detail-card {
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .service-detail-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 45px -15px rgba(0, 54, 179, 0.15);
            border-color: rgba(0, 54, 179, 0.1);
        }

        .service-icon-wrapper {
            width: 85px;
            height: 85px;
      
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            transition: all 0.4s;
        }

        .service-detail-card:hover .service-icon-wrapper {
   
            transform: scale(0.95);
        }


        .service-feature-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #383131;
  font-size: 15px;
        }

        .service-feature-list li i {
            color: var(--theme);
            font-size: 14px;
        }

        .pricing-card-compact {
            background: #f9fafc;
            border-radius: 24px;
            padding: 35px 25px;
            transition: 0.3s;
            height: 100%;
        }

        .pricing-card-compact:hover {
            background: var(--white);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 30px;
            transition: 0.3s;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: var(--theme);
            color: white;
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px;
            margin: 0 auto 25px;
        }

        @media (max-width: 768px) {
            .service-detail-card {
                padding: 30px 20px;
            }
        }
        /* About Image Box */
.about-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
        height: 650px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.about-image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(0,0,0,0.18);
}

/* Image */
.about-image-box img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-box:hover img {
    transform: scale(1.05);
}

/* Optional Overlay */
.about-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.02));
    z-index: 1;
}

/* Mobile */
@media (max-width: 767px) {

    .about-image-box img {
        min-height: 350px;
    }

}
  /* Pricing Card */
.pricing-card-modern {
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    overflow: hidden;
    height: 100%;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Active Card */
.pricing-card-modern.active {
    background: linear-gradient(135deg, #0048ff 0%, #002c9d 100%);
    color: #fff;
    transform: scale(1.03);
}

.pricing-card-modern.active p,
.pricing-card-modern.active li,
.pricing-card-modern.active h3 {
    color: #fff;
}

/* Badge */
.pricing-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(0,72,255,0.1);
    color: var(--theme);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card-modern.active .pricing-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Title */
.pricing-card-modern h3 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* Price */
.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 20px;
    line-height: 1;
}

.pricing-card-modern.active .price {
    color: #fff;
}

/* Text */
.pricing-card-modern p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Features */
.pricing-card-modern ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-card-modern ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #222;
}

.pricing-card-modern ul li i {
    color: var(--theme);
}

.pricing-card-modern.active ul li i {
    color: #fff;
}

/* Button */
.pricing-card-modern .theme-btn {
    border-radius: 14px;
}

/* Mobile */
@media (max-width: 767px) {

    .pricing-card-modern {
        padding: 35px 25px;
    }

    .price {
        font-size: 32px;
    }

}