

        .tech-stack-icon {
            background: white;
            border-radius: 16px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .tech-stack-icon:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0, 54, 179, 0.1);
            border-color: rgba(0, 54, 179, 0.2);
        }

        .tech-stack-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .process-step-web {
            text-align: center;
            padding: 30px 20px;
            border-radius: 20px;
            background: var(--white);
            transition: 0.3s;
            height: 100%;
        }

        .process-step-web:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .step-number-circle {
            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: 50%;
            margin: 0 auto 25px;
        }

        .service-highlight-card {
            background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
            border-radius: 24px;
            padding: 35px 28px;
            transition: 0.3s;
            height: 100%;
            border: 1px solid #eef2ff;
        }

        .service-highlight-card:hover {
            border-color: var(--theme);
            transform: translateY(-5px);
        }

        .pricing-web-card {
            background: white;
            border-radius: 24px;
            padding: 35px 25px;
            transition: 0.3s;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .pricing-web-card.featured {
            background: linear-gradient(135deg, var(--theme) 0%, #002a8a 100%);
            color: white;
            transform: scale(1.02);
        }

        .pricing-web-card.featured h3,
        .pricing-web-card.featured .price,
        .pricing-web-card.featured p,
        .pricing-web-card.featured li {
            color: white;
        }

        .pricing-web-card.featured .theme-btn {
            background: white;
            color: var(--theme);
        }

        @media (max-width: 768px) {
            .pricing-web-card.featured {
                transform: scale(1);
            }
        }
  

/* Service Highlight Card */
.service-highlight-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.service-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
}

/* Icon Box */
.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 22px;
    background: rgba(0,72,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon-box i {
    font-size: 22px;
    color: var(--theme);
}

.service-highlight-card:hover .service-icon-box {
    background: var(--theme);
    transform: rotate(-6deg);
}

.service-highlight-card:hover .service-icon-box i {
    color: #fff;
}

/* Title */
.service-highlight-card h4 {
    font-size: 23px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #0b1020;
}

/* Text */
.service-highlight-card p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 767px) {

    .service-highlight-card {
        padding: 32px 24px;
    }

    .service-highlight-card h4 {
        font-size: 22px;
    }

}

/* Tech Stack Card */
.tech-stack-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 20px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.tech-stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
}

/* Logo */
.tech-stack-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}

.tech-stack-card:hover img {
    transform: scale(1.12) rotate(-5deg);
}

/* Text */
.tech-stack-card h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: #0b1020;
}

/* Mobile */
@media (max-width: 767px) {

    .tech-stack-card {
        padding: 28px 15px;
    }

    .tech-stack-card img {
        width: 60px;
        height: 60px;
    }

}

/* Process Card */
.process-card-modern {
    position: relative;
    background: #fff;
    padding: 45px 30px;
    border-radius: 26px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.process-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
}

/* Number Circle */
.step-circle {
    width: 48px;
    height: 48px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,72,255,0.25);
    transition: all 0.35s ease;
}

.process-card-modern:hover .step-circle {
    transform: rotate(-8deg) scale(1.08);
}

/* Title */
.process-card-modern h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1020;
}

/* Text */
.process-card-modern p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 767px) {

    .process-card-modern {
        padding: 35px 24px;
    }

    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .process-card-modern h5 {
        font-size: 22px;
    }

}





/* Pricing Card */
.pricing-modern-card {
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    transition: all 0.35s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.pricing-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Active Card */
.pricing-modern-card.active {
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    color: #fff;
    transform: scale(1.03);
}

.pricing-modern-card.active h3,
.pricing-modern-card.active p,
.pricing-modern-card.active li,
.pricing-modern-card.active small,
.pricing-modern-card.active .price {
    color: #fff;
}

/* Badge */
.plan-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0,72,255,0.08);
    color: var(--theme);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-modern-card.active .plan-badge {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

/* Popular Tag */
.popular-tag {
    position: absolute;
    top: 18px;
    right: -35px;
    background: #fff;
    color: var(--theme);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

/* Title */
.pricing-modern-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Price */
.price-box {
    margin-bottom: 22px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: var(--theme);
    line-height: 1;
}

.price-box small {
    display: block;
    margin-top: 8px;
    color: #666;
}

/* Text */
.pricing-modern-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* List */
.pricing-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #222;
}

.pricing-list-modern li i {
    color: var(--theme);
}

.pricing-modern-card.active li i {
    color: #fff;
}

/* Button */
.pricing-modern-card .theme-btn {
    border-radius: 14px;
}

/* Mobile */
@media (max-width: 767px) {

    .pricing-modern-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 28px;
    }

}










/* Portfolio Grid */
.portfolio-image-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}

/* Image Box */
.portfolio-image {
    overflow: hidden;
    border-radius: 26px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Large Image */
.portfolio-image.large {
    grid-row: span 2;
    min-height: 520px;
}

/* Small Images */
.portfolio-image.small {
    min-height: 250px;
}

/* Hover */
.portfolio-image:hover img {
    transform: scale(1.08);
}

/* Points */
.portfolio-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.portfolio-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.portfolio-point i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,72,255,0.08);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
@media (max-width: 991px) {

    .portfolio-image-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image.large,
    .portfolio-image.small {
        min-height: 300px;
    }

}









