        /* ===== Service Sections ===== */
        .service-section { display: ; }
        .service-section.active {
            display: block;
            animation: fadeInUp 0.35s ease forwards;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }

.services-category-link .active {
    background: #015486 !important;
    color: #fff;
}
        /* ===== Cover Image Block ===== */
        .service-cover-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
            background: #0d1b3e;
        }

        /* ===== Content Styles ===== */
        .service-details-content h1 {
            font-size: 30px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            border-left: 4px solid #0b6bd8;
            padding-left: 14px;
        }
        .service-details-content > p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 18px;
        }
        .service-details-content .sub-heading {
font-size: 23px;
    font-weight: 700;
    color: #0b6bd8;
    margin-top: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
        }
        .service-details-content .sub-heading i {
            width: 34px;
            height: 34px;
            background: #e8f1fc;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #0b6bd8;
            flex-shrink: 0;
        }
        .service-details-content .sub-body {
            font-size: 15px;
            line-height: 1.78;
            color: #555;
            padding-left: 44px;
            margin-bottom: 4px;
        }
		.service-details-content img{margin-bottom:0;}



        /* Benefits */
        .service-benefits {
            background: #f4f8ff;
            border-left: 4px solid #0b6bd8;
            border-radius: 0 8px 8px 0;
            padding: 22px 26px;
            margin: 26px 0 20px;
        }
        .service-benefits h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
        }
        .service-benefits ul {
            list-style: none;
            padding: 0; margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 20px;
        }
        @media (max-width: 576px) { .service-benefits ul { grid-template-columns: 1fr; } }
        .service-benefits ul li {
            font-size: 14px;
            color: #444;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .service-benefits ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Pro";
            font-weight: 400;
            color: #0b6bd8;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Tech tags */
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 20px;
        }
        .tech-tags span {
            background: #e8f1fc;
            color: #0b6bd8;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            border: 1px solid #c4d9f5;
        } 