/* Hero Section Styles */

.os_hero_jhdev {
    padding: 136px 0 260px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0b5170;
}

.os_hero_box_jhdev {
    width: 48.07%;
}

.os_hero_main_jhdev {
    display: flex;
    justify-content: center;
}

.os_hb_inner_jhdev {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.os_subtitle_jhdev {
    background-color: #ffffff1c;
    color: #ffffff;
}

.os_subtitle_jhdev::before {
    background-color: #ffffff;
}

.os_hero_title_jhdev {
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.64px;
}

@media (max-width: 1024px) {
    .os_hero_jhdev {
        padding: 100px 0 175px 0;
    }
    
    .os_hero_box_jhdev {
        width: 54%;
    }
    
    .os_hb_inner_jhdev {
        gap: 18px;
    }
    
    .os_hero_title_jhdev {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .os_hero_jhdev {
        padding: 80px 0 128px 0;
    }
    
    .os_hero_box_jhdev {
        width: 100%;
    }
    
    .os_hb_inner_jhdev {
        gap: 16px;
        align-items: start;
    }
    
    .os_hero_title_jhdev {
        font-size: 36px;
        text-align: left;
    }
}


@media (max-width: 767px) {
    .os_hero_jhdev {
        padding: 60px 0 120px 0;
    }
    
    .os_hb_inner_jhdev {
        gap: 14px;
    }
    
    .os_hero_title_jhdev {
        font-size: 32px;
        text-align: left;
    }

}



/* Service Section Styles */

.os_services_jhdev {
    background-color: #f8fafd;
    padding: 80px 0;
}

.os_service_box_jhdev {
    width: 100%;
}
.os_services_main_jhdev {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch;
}

.os_sin_box_jhdev {
    width: calc(33.33% - 16px);
}

.os_sb_inner_jhdev {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.5s;
    box-sizing: border-box;
    /*height: 100%;*/
    justify-content: space-between;
}

.os_ssb_tb_jhdev {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    padding-bottom: 24px;
    border-bottom: 1px solid #dee2ea;
    min-height: 103px;
    transition: all 0.5s;
}

.os_ssb_title_jhdev {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    color: #0c0c0c;
    width: 85%;
    transition: all 0.5s;
}


.os_sb_inner_jhdev:hover {
    background-color: #0b5170;
    transition: all 0.5s;
}

.os_sb_inner_jhdev > svg {
    transition: all 0.5s;
}

.os_sb_inner_jhdev > svg path {
    transition: all 0.5s;
}

.os_sb_inner_jhdev:hover > svg  {
    transform: scale(1.1);
    transition: all 0.5s;
}

.os_sb_inner_jhdev:hover > svg path {
    /*fill: #ffffff;*/
    stroke: #ffffff;
    transition: all 0.5s;
}

.os_sb_inner_jhdev:hover .os_ssb_title_jhdev  {
    /*text-decoration: underline;*/
    color: #ffffff;
    transition: all 0.5s;
}

.os_sb_inner_jhdev:hover .os_ssb_desc_jhdev  {
    color: #f1e8e8cc;
    transition: all 0.5s;
}


.os_sb_inner_jhdev:hover .os_ssb_tb_jhdev {
    border-bottom: 1px solid #f1e8e838;
    transition: all 0.5s;
}

.os_ssb_tb_jhdev svg {
   visibility: visible;
   opacity: 1;
   transition: all 0.5s;
}

.os_sb_inner_jhdev:hover .os_ssb_tb_jhdev svg {
   visibility: hidden;
   opacity: 0;
   transition: all 0.5s;
}

.os_ssb_desc_jhdev {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #0c0c0c99;
    transition: all 0.5s;
}

.os_ssb_ibox_jhdev {
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.os_ssb_img_jhdev {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: all 0.5s;
}



@media (max-width: 1024px) {
    .os_sin_box_jhdev {
        width: calc(50% - 12px);
    }
}

@media (max-width: 992px) {
    .os_services_jhdev {
        padding: 60px 0;
    }
    .os_services_main_jhdev {
        gap: 20px;
    }
    .os_sin_box_jhdev {
        width: 100%;
    }
    
    .os_sb_inner_jhdev {
        border-radius: 20px;
        padding: 20px;
        gap: 20px;
    }
    
    .os_ssb_tb_jhdev {
        padding-bottom: 20px;
        min-height: unset;
    }
    
    .os_ssb_title_jhdev {
        font-size: 26px;
    }
    
    .os_sb_inner_jhdev > svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .os_services_jhdev {
        padding: 40px 0;
    }
    
    .os_services_main_jhdev {
        gap: 16px;
    }
    
    .os_sb_inner_jhdev {
        border-radius: 16px;
        padding: 16px;
        gap: 16px;
    }
    
    .os_ssb_tb_jhdev {
        padding-bottom: 16px;
    }
    
    .os_ssb_title_jhdev {
        font-size: 22px;
    }
    
    .os_sb_inner_jhdev > svg {
        width: 48px;
        height: 48px;
    }
}