/* ===== Service Details Page Styles ===== */


    /* --- Cards (Work & Dropdown) --- */
    .work-card, .dropdown-item-box {
       border: 1px solid #28a745; /* soft green */
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s;
    }
    .work-card:hover, .dropdown-item-box:hover {
border-color: #28a745;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.4); /* green shadow */
    transform: translateY(-3px);
    }

    /* --- Steps Animation --- */
    .work-step { transition: 0.3s; }

    /* --- Dropdown Accordion --- */
    .dropdown-content { display: none; padding-left: 5px; animation: fadeIn 0.4s ease; }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .arrow { transition: transform 0.3s; }

    /* --- Technology Tabs --- */
    .tech-tabs .nav-link {
        font-size: 20px;
        font-weight: 600;
        color: #06283D;
        border: none;
        margin: 0 15px;
        padding-bottom: 12px;
    }
    .tech-tabs .nav-link.active {
        color:#0a1d43 !important;
        border-bottom: 3px solid #11749322;
    }

    /* --- Technology Cards --- */
    .tech-card {
        width: 140px;
    background: #fff;
    border: 1px solid #28a745;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    padding: 15px 10px;
    transition: all 0.3s;
    }
    .tech-card:hover {
       border-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
    transform: translateY(-4px);
    }

    /* --- CTA Button --- */
    .btn-primary {
        background: linear-gradient(45deg, #28a745, #0a1d43); /* gradient like image */
    color: #06283D;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    }
    .btn-primary:hover {
       background: linear-gradient(45deg, #0a1d43, #28a745);
    color: #fff;
    transform: scale(1.05);
    }

    

    